Merge pull request #172690 from marsam/update-age-plugin-yubikey

age-plugin-yubikey: 0.2.0 -> 0.3.0

authored by Mario Rodas and committed by GitHub d002de0a 0b08abd3

+9 -6
+8 -5
pkgs/tools/security/age-plugin-yubikey/default.nix
··· 5 , pkg-config 6 , pcsclite 7 , PCSC 8 }: 9 10 rustPlatform.buildRustPackage rec { 11 pname = "age-plugin-yubikey"; 12 - version = "0.2.0"; 13 14 src = fetchFromGitHub { 15 owner = "str4d"; 16 repo = pname; 17 - rev = "51910edfab4006a068864602469ff7db3766bfbe"; # no tag for this release 18 - sha256 = "sha256-mMqvBlGFdwe5BaC0bXZg/27BGNmFTTYbLUHWUciqxQ0="; 19 }; 20 21 - cargoSha256 = "sha256-OCbVLSmGx51pJ/EPgPfOyVrYWdloNEbexDV1zMsmEJc="; 22 23 - nativeBuildInputs = [ pkg-config ]; 24 buildInputs = 25 if stdenv.isDarwin then [ 26 PCSC 27 ] else [ 28 pcsclite
··· 5 , pkg-config 6 , pcsclite 7 , PCSC 8 + , Foundation 9 }: 10 11 rustPlatform.buildRustPackage rec { 12 pname = "age-plugin-yubikey"; 13 + version = "0.3.0"; 14 15 src = fetchFromGitHub { 16 owner = "str4d"; 17 repo = pname; 18 + rev = "v${version}"; 19 + sha256 = "sha256-KXqicTZ9GZlNj1AH3tMmOrC8zjXoEnqo4JJJTBdiI4E="; 20 }; 21 22 + cargoSha256 = "sha256-m/v4E7KHyLIWZHX0TKpqwBVDDwLjhYpOjYMrKEtx6/4="; 23 24 + nativeBuildInputs = lib.optionals stdenv.isLinux [ pkg-config ]; 25 + 26 buildInputs = 27 if stdenv.isDarwin then [ 28 + Foundation 29 PCSC 30 ] else [ 31 pcsclite
+1 -1
pkgs/top-level/all-packages.nix
··· 4827 agebox = callPackage ../tools/security/agebox { }; 4828 4829 age-plugin-yubikey = callPackage ../tools/security/age-plugin-yubikey { 4830 - inherit (pkgs.darwin.apple_sdk.frameworks) PCSC; 4831 }; 4832 4833 artim-dark = callPackage ../data/themes/artim-dark {};
··· 4827 agebox = callPackage ../tools/security/agebox { }; 4828 4829 age-plugin-yubikey = callPackage ../tools/security/age-plugin-yubikey { 4830 + inherit (pkgs.darwin.apple_sdk.frameworks) Foundation PCSC; 4831 }; 4832 4833 artim-dark = callPackage ../data/themes/artim-dark {};