mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: libfprint: Update to 1.94.2.
* gnu/packages/freedesktop.scm (libfprint): Update to 1.94.2. [arguments]: Add "-Dudev_rules_dir=" to #:configure-flags. [native-inputs]: Remove eudev. Remove input labels. [inputs]: Remove glib. Add libgudev.
This commit is contained in:
parent
058766ec7a
commit
9fd80ba79f
1 changed files with 12 additions and 11 deletions
|
@ -1643,7 +1643,7 @@ (define-public colord-gtk
|
|||
(define-public libfprint
|
||||
(package
|
||||
(name "libfprint")
|
||||
(version "1.90.7")
|
||||
(version "1.94.2")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -1652,22 +1652,23 @@ (define-public libfprint
|
|||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "00pmdpxxjj4sh8qjq9ch3pylgg9w019rg1bbaw53a4wr637rrz43"))))
|
||||
(base32 "0y3wz5hlxpnvqj67bihvzfi4dwx2m2nx9byppf4jjd80x0j2630m"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags
|
||||
(list (string-append "-Dudev_rules_dir=" (assoc-ref %outputs "out")
|
||||
(list (string-append "-Dudev_hwdb_dir=" (assoc-ref %outputs "out")
|
||||
"/lib/udev/hwdb.d")
|
||||
(string-append "-Dudev_rules_dir=" (assoc-ref %outputs "out")
|
||||
"/lib/udev/rules.d"))))
|
||||
(native-inputs
|
||||
`(("eudev" ,eudev)
|
||||
("glib:bin" ,glib "bin") ; for {glib-,}mkenums
|
||||
("gobject-introspection" ,gobject-introspection)
|
||||
("gtk-doc" ,gtk-doc/stable) ; for 88 KiB of API documentation
|
||||
("pkg-config" ,pkg-config)))
|
||||
(list `(,glib "bin") ; for {glib-,}mkenums
|
||||
gobject-introspection
|
||||
gtk-doc/stable ; for 88 KiB of API documentation
|
||||
pkg-config))
|
||||
(inputs
|
||||
(list glib
|
||||
gusb
|
||||
nss ; for the URU4x00 driver
|
||||
(list gusb
|
||||
libgudev
|
||||
nss ; for the URU4x00 driver
|
||||
;; Replacing this with cairo works but just results in a reference
|
||||
;; (only) to pixman in the end.
|
||||
pixman))
|
||||
|
|
Loading…
Reference in a new issue