1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

sops: 3.2.0 -> 3.3.0

This commit is contained in:
Mario Rodas 2019-04-18 08:08:36 -05:00
parent 93d1127734
commit f6b2c345e3
No known key found for this signature in database
GPG key ID: 4C4BEFD7B18DC5E8

View file

@ -1,16 +1,16 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "sops-${version}";
version = "3.2.0";
pname = "sops";
version = "3.3.0";
goPackagePath = "go.mozilla.org/sops";
src = fetchFromGitHub {
rev = version;
owner = "mozilla";
repo = "sops";
sha256 = "0lzwql3f4n70gmw1d0vnsg7hd0ma6ys0a4x54g3jk10nrn2f7wxl";
repo = pname;
sha256 = "0h02iy1dfn4874gyj3k07gbw8byb7rngvsi9kjglnad2pkf0pq2d";
};
meta = with stdenv.lib; {