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