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:
Arun Isaac 2018-08-09 19:19:03 +05:30
parent 7e72f5471b
commit fab8a9f9c3
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -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