# GNU Guix --- Functional package management for GNU # Copyright © 2012, 2015 Ludovic Courtès # # This file is part of GNU Guix. # # GNU Guix is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or (at # your option) any later version. # # GNU Guix is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Guix. If not, see . # # Test the `guix download' command-line utility. # guix download --version # Make sure it fails here. if guix download http://does.not/exist then false; else true; fi if guix download unknown://some/where; then false; else true; fi if guix download not/a/uri; then false; else true; fi # This one should succeed. guix download "file://$abs_top_srcdir/README" # This one should fail. if guix download "file:///does-not-exist" "file://$abs_top_srcdir/README" then false; else true; fi /security-token.scm'>logtreecommitdiff
AgeCommit message (Expand)Author
2017-06-18gnu: pcsc-lite: Update to 1.8.22....* gnu/packages/security-token.scm (pcsc-lite): Update to 1.8.22. Marius Bakke
2017-05-21gnu: ccid: Update to 1.4.27....* gnu/packages/security-token.scm (ccid): Update to 1.4.27. Marius Bakke
2017-05-20gnu: pcsc-lite: Update to 1.8.21....* gnu/packages/security-token.scm (pcsc-lite): Update to 1.8.21. Marius Bakke
2017-01-16gnu: ccid: Update to 1.4.26....* gnu/packages/security-token.scm (ccid): Update to 1.4.26. Marius Bakke
2017-01-03gnu: pcsc-lite: Update to 1.8.20 [fixes CVE-2016-10109]....* gnu/packages/security-token.scm (pcsc-lite): Update to 1.8.20. Marius Bakke
2016-12-19gnu: pcsc-lite: Update to 1.8.19....* gnu/packages/security-token.scm (pcsc-lite): Update to 1.8.19. Marius Bakke
2016-10-31gnu: Add ccid....* gnu/packages/security-token.scm (ccid): New variable. Marius Bakke
2016-10-27gnu: Add pcsc-lite....* gnu/packages/security-token.scm (pcsc-lite): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Mike Gerwitz
2016-10-26gnu: security-token: Use 'license:' prefix....* gnu/packages/security-token.scm (libyubikey)[license]: Add prefix. (ykclient)[license]: Add prefix. Marius Bakke
2016-10-26gnu: yubico.scm: Rename to security-token.scm....* gnu/packages/yubico.scm: Delete file. * gnu/packages/security-token.scm: New file. * gnu/local.mk (GNU_SYSTEM_MODULES): Adjust accordingly. Marius Bakke