summary refs log tree commit diff
path: root/pkgs/tools/security/sops/default.nix
blob: 79753305c5927ab748f018670359c0955abe94d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "sops-${version}";
  version = "2.0.8";

  goPackagePath = "go.mozilla.org/sops";

  src = fetchFromGitHub {
    rev = version;
    owner = "mozilla";
    repo = "sops";
    sha256 = "0kawnp24i3r981hz6apfwhgp71002vjq7ir54arq0zkssmykms1c";
  };

  meta = with stdenv.lib; {
    description = "Mozilla sops (Secrets OPerationS) is an editor of encrypted files";
    homepage = https://github.com/mozilla/sops;
    license = licenses.mpl20;
  };
}