summary refs log tree commit diff
path: root/pkgs/tools/security/openpgp-card-tools/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-10-17 18:01:44 +0000
committerGitHub <noreply@github.com>2023-10-17 18:01:44 +0000
commitc99731d9ac7f60c5448fc9a94489856f28971daa (patch)
tree1bdd506b840c8deb832857a6121abb966e15c78d /pkgs/tools/security/openpgp-card-tools/default.nix
parent0b1d0df88f08d6fed706bcd099009426db98c9a2 (diff)
parent14b83b5e055518177178d9f496cc95b764712d71 (diff)
downloadnixpkgs-c99731d9ac7f60c5448fc9a94489856f28971daa.tar
nixpkgs-c99731d9ac7f60c5448fc9a94489856f28971daa.tar.gz
nixpkgs-c99731d9ac7f60c5448fc9a94489856f28971daa.tar.bz2
nixpkgs-c99731d9ac7f60c5448fc9a94489856f28971daa.tar.lz
nixpkgs-c99731d9ac7f60c5448fc9a94489856f28971daa.tar.xz
nixpkgs-c99731d9ac7f60c5448fc9a94489856f28971daa.tar.zst
nixpkgs-c99731d9ac7f60c5448fc9a94489856f28971daa.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/tools/security/openpgp-card-tools/default.nix')
-rw-r--r--pkgs/tools/security/openpgp-card-tools/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/security/openpgp-card-tools/default.nix b/pkgs/tools/security/openpgp-card-tools/default.nix
index 6a630883580..38f814bbd2e 100644
--- a/pkgs/tools/security/openpgp-card-tools/default.nix
+++ b/pkgs/tools/security/openpgp-card-tools/default.nix
@@ -12,17 +12,17 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "openpgp-card-tools";
-  version = "0.9.4";
+  version = "0.9.5";
 
   src = fetchFromGitea {
     domain = "codeberg.org";
     owner = "openpgp-card";
     repo = "openpgp-card-tools";
     rev = "v${version}";
-    hash = "sha256-ISIABjuh0BC6OUFa5I9Wou+av7Dp4bZH8Aazi6x7cqY=";
+    hash = "sha256-VD0eDq+lfeAu2gY9VZfz2ola3+CJCWerTEaGivpILyo=";
   };
 
-  cargoHash = "sha256-+EEpoI9OQvnJR6bVbEuLn3O7w6BchjBzr+oMGsWdP/k=";
+  cargoHash = "sha256-tfawWfwsdWUOimd97b059HXt83ew6KBouI2MdGN8Knc=";
 
   nativeBuildInputs = [ pkg-config rustPlatform.bindgenHook ];
   buildInputs = [ pcsclite nettle ] ++ lib.optionals stdenv.isDarwin [ PCSC ];
@@ -36,7 +36,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "CLI tools for OpenPGP cards";
     homepage = "https://gitlab.com/openpgp-card/openpgp-card";
-    license = licenses.asl20;
+    license = with licenses ;[ asl20 /* OR */ mit ];
     maintainers = with maintainers; [ nickcao ];
     mainProgram = "opgpcard";
   };