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 }: { stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec { buildGoPackage rec {
name = "sops-${version}"; pname = "sops";
version = "3.2.0"; version = "3.3.0";
goPackagePath = "go.mozilla.org/sops"; goPackagePath = "go.mozilla.org/sops";
src = fetchFromGitHub { src = fetchFromGitHub {
rev = version; rev = version;
owner = "mozilla"; owner = "mozilla";
repo = "sops"; repo = pname;
sha256 = "0lzwql3f4n70gmw1d0vnsg7hd0ma6ys0a4x54g3jk10nrn2f7wxl"; sha256 = "0h02iy1dfn4874gyj3k07gbw8byb7rngvsi9kjglnad2pkf0pq2d";
}; };
meta = with stdenv.lib; { meta = with stdenv.lib; {