Merge pull request #9162 from dochang/git-crypt

Add new package git-crypt
This commit is contained in:
lethalman 2015-08-08 15:33:02 +02:00
commit 494a1eace8
2 changed files with 43 additions and 0 deletions

View file

@ -105,4 +105,6 @@ rec {
git-cola = callPackage ./git-cola { };
git-imerge = callPackage ./git-imerge { };
git-crypt = callPackage ./git-crypt { };
}

View file

@ -0,0 +1,41 @@
{ stdenv, fetchFromGitHub, openssl }:
stdenv.mkDerivation rec {
name = "git-crypt-${meta.version}";
src = fetchFromGitHub {
owner = "AGWA";
repo = "git-crypt";
rev = meta.version;
sha256 = "4fe45f903a4b3cc06a5fe11334b914c225009fe8440d9e91a54fdf21cf4dcc4d";
inherit name;
};
buildInputs = [ openssl ];
installPhase = ''
make install PREFIX=$out
'';
meta = {
homepage = "https://www.agwa.name/projects/git-crypt";
description = "transparent file encryption in git";
longDescription = ''
git-crypt enables transparent encryption and decryption of files in a git
repository. Files which you choose to protect are encrypted when
committed, and decrypted when checked out. git-crypt lets you freely
share a repository containing a mix of public and private
content. git-crypt gracefully degrades, so developers without the secret
key can still clone and commit to a repository with encrypted files. This
lets you store your secret material (such as keys or passwords) in the
same repository as your code, without requiring you to lock down your
entire repository.
'';
downloadPage = "https://github.com/AGWA/git-crypt/releases";
license = stdenv.lib.licenses.gpl3;
version = "0.5.0";
maintainers = [ "Desmond O. Chang <dochang@gmail.com>" ];
};
}