mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: ccid: Move pcsc-lite from inputs to native-inputs.
pcsc-lite only provides the headers to build ccid. So, it is sufficient that it be a native-input. * gnu/packages/security-token.scm (ccid)[inputs]: Move pcsc-lite to ... [native-inputs]: ... here.
This commit is contained in:
parent
7e72f5471b
commit
fab8a9f9c3
1 changed files with 4 additions and 3 deletions
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2017 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
;;; Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
|
||||||
|
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -75,11 +76,11 @@ (define-public ccid
|
||||||
(("/bin/echo") (which "echo")))
|
(("/bin/echo") (which "echo")))
|
||||||
#t)))))
|
#t)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("perl" ,perl)
|
`(("pcsc-lite" ,pcsc-lite) ; only required for headers
|
||||||
|
("perl" ,perl)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("libusb" ,libusb)
|
`(("libusb" ,libusb)))
|
||||||
("pcsc-lite" ,pcsc-lite)))
|
|
||||||
(home-page "https://ccid.apdu.fr/")
|
(home-page "https://ccid.apdu.fr/")
|
||||||
(synopsis "PC/SC driver for USB smart card devices")
|
(synopsis "PC/SC driver for USB smart card devices")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue