step-ca: 0.27.2 -> 0.27.5 (#351065)

authored by

Leona Maroni and committed by
GitHub
973b3809 97b7fe94

+6 -10
+6 -6
pkgs/tools/security/step-ca/default.nix pkgs/by-name/st/step-ca/package.nix
··· 5 buildGoModule, 6 coreutils, 7 pcsclite, 8 - PCSC, 9 pkg-config, 10 hsmSupport ? true, 11 nixosTests, 12 }: 13 14 buildGoModule rec { 15 pname = "step-ca"; 16 - version = "0.27.2"; 17 18 src = fetchFromGitHub { 19 owner = "smallstep"; 20 repo = "certificates"; 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-byVWNab6Q3yryluhMomzLkRNfXQ/68pAq+YGFjbvX1o="; 23 }; 24 25 - vendorHash = "sha256-gQEGCbVgtKIaUgBkfpVwLXoUg1EUhaQFn9JZvV5Rjhc="; 26 27 ldflags = [ 28 "-w" ··· 33 34 buildInputs = 35 lib.optionals (hsmSupport && stdenv.hostPlatform.isLinux) [ pcsclite ] 36 - ++ lib.optionals (hsmSupport && stdenv.hostPlatform.isDarwin) [ PCSC ]; 37 - 38 postPatch = '' 39 substituteInPlace systemd/step-ca.service --replace "/bin/kill" "${coreutils}/bin/kill" 40 ''; 41
··· 5 buildGoModule, 6 coreutils, 7 pcsclite, 8 pkg-config, 9 hsmSupport ? true, 10 nixosTests, 11 + darwin, 12 }: 13 14 buildGoModule rec { 15 pname = "step-ca"; 16 + version = "0.27.5"; 17 18 src = fetchFromGitHub { 19 owner = "smallstep"; 20 repo = "certificates"; 21 rev = "refs/tags/v${version}"; 22 + hash = "sha256-0KIAO9KPP9Lrrw9IIaRdlmmfJ0mwQK0ne//Zofu3TfE="; 23 }; 24 25 + vendorHash = "sha256-yi4mbuCaT6ydnZwhqqhqMI7bF6IwHm0UqfR5JM81/Ik="; 26 27 ldflags = [ 28 "-w" ··· 33 34 buildInputs = 35 lib.optionals (hsmSupport && stdenv.hostPlatform.isLinux) [ pcsclite ] 36 + ++ lib.optionals (hsmSupport && stdenv.hostPlatform.isDarwin) [ darwin.apple_sdk.frameworks.PCSC ]; 37 postPatch = '' 38 + substituteInPlace authority/http_client_test.go --replace-fail 't.Run("SystemCertPool", func(t *testing.T) {' 't.Skip("SystemCertPool", func(t *testing.T) {' 39 substituteInPlace systemd/step-ca.service --replace "/bin/kill" "${coreutils}/bin/kill" 40 ''; 41
-4
pkgs/top-level/all-packages.nix
··· 5877 callPackage ../tools/misc/steampipe-packages { } 5878 ); 5879 5880 - step-ca = callPackage ../tools/security/step-ca { 5881 - inherit (darwin.apple_sdk.frameworks) PCSC; 5882 - }; 5883 - 5884 step-kms-plugin = callPackage ../tools/security/step-kms-plugin { }; 5885 5886 string-machine = callPackage ../applications/audio/string-machine { };
··· 5877 callPackage ../tools/misc/steampipe-packages { } 5878 ); 5879 5880 step-kms-plugin = callPackage ../tools/security/step-kms-plugin { }; 5881 5882 string-machine = callPackage ../applications/audio/string-machine { };