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

Merge pull request #23715 from risicle/moz-sops

Add Mozilla sops package
This commit is contained in:
Michael Raskin 2017-03-18 19:18:06 +01:00 committed by GitHub
commit 89f62be345
2 changed files with 23 additions and 0 deletions

View file

@ -0,0 +1,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;
};
}

View file

@ -15316,6 +15316,8 @@ with pkgs;
sooperlooper = callPackage ../applications/audio/sooperlooper { };
sops = callPackage ../tools/security/sops { };
sorcer = callPackage ../applications/audio/sorcer { };
sound-juicer = callPackage ../applications/audio/sound-juicer { };