nixpkgs-suyu/pkgs/tools/security/sops/default.nix

23 lines
581 B
Nix
Raw Normal View History

{ stdenv, buildGoModule, fetchFromGitHub }:
2017-03-10 16:41:57 +01:00
buildGoModule rec {
2019-04-18 15:08:36 +02:00
pname = "sops";
version = "3.4.0";
2017-03-10 16:41:57 +01:00
src = fetchFromGitHub {
rev = version;
owner = "mozilla";
2019-04-18 15:08:36 +02:00
repo = pname;
sha256 = "1mrqf9xgv88v919x7gz9l1x70xwvp6cfz3zp9ip1nj2pzn6ixz3d";
2017-03-10 16:41:57 +01:00
};
modSha256 = "13ja8nxycmdjnrnsxdd1qs06x408aqr4im127a6y433pkx2dg7gc";
2017-03-10 16:41:57 +01:00
meta = with stdenv.lib; {
homepage = "https://github.com/mozilla/sops";
2017-03-10 16:41:57 +01:00
description = "Mozilla sops (Secrets OPerationS) is an editor of encrypted files";
2019-06-11 23:20:00 +02:00
maintainers = [ maintainers.marsam ];
2017-03-10 16:41:57 +01:00
license = licenses.mpl20;
};
}