nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #68645 from marsam/update-sops

sops: 3.3.1 -> 3.4.0

authored by

Mario Rodas and committed by
GitHub
18eeec91 b46c3c55

+7 -7
+7 -7
pkgs/tools/security/sops/default.nix
··· 1 - { stdenv, buildGoPackage, fetchFromGitHub }: 1 + { stdenv, buildGoModule, fetchFromGitHub }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "sops"; 5 - version = "3.3.1"; 6 - 7 - goPackagePath = "go.mozilla.org/sops"; 5 + version = "3.4.0"; 8 6 9 7 src = fetchFromGitHub { 10 8 rev = version; 11 9 owner = "mozilla"; 12 10 repo = pname; 13 - sha256 = "0jbrz3yz6cj08h8cx6y98m8r0lpclh9367cw5apy6w3v71i3svfi"; 11 + sha256 = "1mrqf9xgv88v919x7gz9l1x70xwvp6cfz3zp9ip1nj2pzn6ixz3d"; 14 12 }; 15 13 14 + modSha256 = "13ja8nxycmdjnrnsxdd1qs06x408aqr4im127a6y433pkx2dg7gc"; 15 + 16 16 meta = with stdenv.lib; { 17 - inherit (src.meta) homepage; 17 + homepage = "https://github.com/mozilla/sops"; 18 18 description = "Mozilla sops (Secrets OPerationS) is an editor of encrypted files"; 19 19 maintainers = [ maintainers.marsam ]; 20 20 license = licenses.mpl20;