Merge pull request #59835 from marsam/update-sops

sops: 3.2.0 -> 3.3.0
This commit is contained in:
Mario Rodas 2019-04-18 09:08:51 -05:00 committed by GitHub
commit fec4eb966e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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; {