;; This is an operating system configuration template for a "Docker image" ;; setup, so it has barely any services at all. (use-modules (gnu)) (operating-system (host-name "komputilo") (timezone "Europe/Berlin") (locale "en_US.utf8") ;; This is where user accounts are specified. The "root" account is ;; implicit, and is initially created with the empty password. (users (cons (user-account (name "alice") (comment "Bob's sister") (group "users") (supplementary-groups '("wheel" "audio" "video")) (home-directory "/home/alice")) %base-user-accounts)) ;; Globally-installed packages. (packages %base-packages) ;; Because the system will run in a Docker container, we may omit many ;; things that would normally be required in an operating system ;; configuration file. These things include: ;; ;; * bootloader ;; * file-systems ;; * services such as mingetty, udevd, slim, networking, dhcp ;; ;; Either these things are simply not required, or Docker provides ;; similar services for us. ;; This will be ignored. (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "does-not-matter"))) ;; This will be ignored, too. (file-systems (list (file-system (device "does-not-matter") (mount-point "/") (type "does-not-matter")))) ;; Guix is all you need! (services (list (guix-service)))) ass='form'>
path: root/gnu/packages/security-token.scm
AgeCommit message (Expand)Author
2024-05-23gnu: Add pkcs11-helper....* gnu/packages/security-token.scm (pkcs11-helper): New variable. Change-Id: Ib17e0cf209a6fe797d0c797829ba91091b719028 Signed-off-by: Zheng Junjie <zhengjunjie@iscas.ac.cn> Andy Tai
2024-05-06Revert "gnu: pcsc-lite: Update to 2.1.0."...This reverts commit a8f0e8a31dd9b74a4f9950b3e2efe8dfeed5789a. It leads to 3799 dependent packages being rebuilt, so it's not suitable for the master branch. Ricardo Wurmus
2024-05-06gnu: pcsc-lite: Update to 2.1.0....* gnu/packages/security-token.scm (pcsc-lite): Update to 2.1.0. Reviewed-by: Christina O'Donnell <cdo@mutix.org> Change-Id: I133fd056afb84259cf5cb1f3e9c664ac336e50b9 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr> Arjan Adriaanse
2024-04-26gnu: opensc: Update to 0.25.0....* gnu/packages/security-token.scm (opensc): Update to 0.25.0. Change-Id: I811b997de40ae6fbbf2bb8256884be74683dbf4b Signed-off-by: Christopher Baines <mail@cbaines.net> Andy Tai
2024-04-02gnu: ccid: Fix cross-compilation....* gnu/packages/security-token.scm (ccid): Fix cross-compilation. Change-Id: I15c96a57e155742f5a2a8394402ae0fb0563f663 Signed-off-by: Efraim Flashner <efraim@flashner.co.il> dan
2024-03-19gnu: ausweisapp: Update to 2.1.0....* gnu/packages/security-token.scm (ausweisapp2): Deprecate and rename to... (ausweisapp): ... this. Update to 2.1.0. [build-system]: Switch to qt-build-system. [inputs]: Update dependencies to Qt6. [native-inputs]: Replace qttools-5 with qttools. Sergey Trofimov