aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-09-13 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-09-13 04:20:00 -0500
commit304aa6f6b6da266fd0ad54cca3e7ba776a7070ec (patch)
tree1fab912ec36738a713def1f7e951e1303d9a7437 /pkgs/tools/security
parent67590338ef8802a4524d122eea06b02856f263cd (diff)
sops: 3.3.1 -> 3.4.0
Changelog: https://github.com/mozilla/sops/releases/tag/3.4.0
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/sops/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/tools/security/sops/default.nix b/pkgs/tools/security/sops/default.nix
index fcc45542214..b132066fee5 100644
--- a/pkgs/tools/security/sops/default.nix
+++ b/pkgs/tools/security/sops/default.nix
@@ -1,20 +1,20 @@
-{ stdenv, buildGoPackage, fetchFromGitHub }:
+{ stdenv, buildGoModule, fetchFromGitHub }:
-buildGoPackage rec {
+buildGoModule rec {
pname = "sops";
- version = "3.3.1";
-
- goPackagePath = "go.mozilla.org/sops";
+ version = "3.4.0";
src = fetchFromGitHub {
rev = version;
owner = "mozilla";
repo = pname;
- sha256 = "0jbrz3yz6cj08h8cx6y98m8r0lpclh9367cw5apy6w3v71i3svfi";
+ sha256 = "1mrqf9xgv88v919x7gz9l1x70xwvp6cfz3zp9ip1nj2pzn6ixz3d";
};
+ modSha256 = "13ja8nxycmdjnrnsxdd1qs06x408aqr4im127a6y433pkx2dg7gc";
+
meta = with stdenv.lib; {
- inherit (src.meta) homepage;
+ homepage = "https://github.com/mozilla/sops";
description = "Mozilla sops (Secrets OPerationS) is an editor of encrypted files";
maintainers = [ maintainers.marsam ];
license = licenses.mpl20;