mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18: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/>.
|
||||
|
||||
(define-module (gnu packages libusb)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
|
@ -488,11 +489,9 @@ (define-public libmtp
|
|||
;; libmtp.pc refers to all these.
|
||||
(list libusb))
|
||||
(arguments
|
||||
`(#:configure-flags
|
||||
(list "--disable-static"
|
||||
(string-append "--with-udev="
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/udev"))))
|
||||
(list #:configure-flags
|
||||
#~(list "--disable-static"
|
||||
(string-append "--with-udev=" #$output "/lib/udev"))))
|
||||
(home-page "http://libmtp.sourceforge.net/")
|
||||
(synopsis "Library implementing the Media Transfer Protocol")
|
||||
(description "Libmtp implements an MTP (Media Transfer Protocol)
|
||||
|
|
Loading…
Reference in a new issue