mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: libmtp: Use G-expressions.
* gnu/packages/libusb.scm (libmtp)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
237a7f6bbc
commit
555d53d486
1 changed files with 4 additions and 5 deletions
|
@ -28,6 +28,7 @@
|
||||||
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(define-module (gnu packages libusb)
|
(define-module (gnu packages libusb)
|
||||||
|
#:use-module (guix gexp)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
#:use-module (guix packages)
|
#:use-module (guix packages)
|
||||||
|
@ -488,11 +489,9 @@ (define-public libmtp
|
||||||
;; libmtp.pc refers to all these.
|
;; libmtp.pc refers to all these.
|
||||||
(list libusb))
|
(list libusb))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
(list #:configure-flags
|
||||||
(list "--disable-static"
|
#~(list "--disable-static"
|
||||||
(string-append "--with-udev="
|
(string-append "--with-udev=" #$output "/lib/udev"))))
|
||||||
(assoc-ref %outputs "out")
|
|
||||||
"/lib/udev"))))
|
|
||||||
(home-page "http://libmtp.sourceforge.net/")
|
(home-page "http://libmtp.sourceforge.net/")
|
||||||
(synopsis "Library implementing the Media Transfer Protocol")
|
(synopsis "Library implementing the Media Transfer Protocol")
|
||||||
(description "Libmtp implements an MTP (Media Transfer Protocol)
|
(description "Libmtp implements an MTP (Media Transfer Protocol)
|
||||||
|
|
Loading…
Reference in a new issue