Skip to content

Commit

Permalink
[Backport release-24.11] sops: 3.9.1 -> 3.9.2 (#363011)
Browse files Browse the repository at this point in the history
sops: 3.9.1 -> 3.9.2 (#361229)

Signed-off-by: Sefa Eyeoglu <[email protected]>
(cherry picked from commit ff40568)

Co-authored-by: Sefa Eyeoglu <[email protected]>
  • Loading branch information
nixpkgs-ci[bot] and Scrumplex authored Dec 8, 2024
1 parent 8ef1582 commit 1a9db9d
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions pkgs/by-name/so/sops/package.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,28 @@
{
lib,
buildGoModule,
buildGo122Module,
fetchFromGitHub,
installShellFiles,
nix-update-script,
}:

buildGoModule rec {
buildGo122Module rec {
pname = "sops";
version = "3.9.1";
version = "3.9.2";

src = fetchFromGitHub {
owner = "getsops";
repo = pname;
rev = "v${version}";
hash = "sha256-j16hSTi7fwlMu8hwHqCR0lW22VSf0swIVTF81iUYl2k=";
rev = "refs/tags/v${version}";
hash = "sha256-v35LRFYdnWigWYlDhrOgSOcCI7SUqJbJHaZvlQ6PC4I=";
};

vendorHash = "sha256-40YESkLSKL/zFBI7ccz0ilrl9ATr74YpvRNrOpzJDew=";
vendorHash = "sha256-dnhrZPXZWeU98+dEaFLIdtcLWgIrh47l+WAxe+F+0/I=";

postPatch = ''
substituteInPlace go.mod \
--replace-fail "go 1.22" "go 1.22.7"
'';

subPackages = [ "cmd/sops" ];

Expand Down

0 comments on commit 1a9db9d

Please sign in to comment.