2017-11-10 23:12:41 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, makeWrapper, git, gnupg }:
|
|
|
|
|
|
|
|
let
|
2018-03-08 17:27:03 +00:00
|
|
|
version = "0.2.3";
|
2017-11-10 23:12:41 +00:00
|
|
|
repo = "git-secret";
|
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "${repo}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
inherit repo;
|
|
|
|
owner = "sobolevn";
|
|
|
|
rev = "v${version}";
|
2018-03-08 17:27:03 +00:00
|
|
|
sha256 = "1swgw91zzs9n582500a34cppyngrqrqrnl80d1vd7i93xx1lkmv6";
|
2017-11-10 23:12:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D git-secret $out/bin/git-secret
|
|
|
|
|
|
|
|
wrapProgram $out/bin/git-secret \
|
|
|
|
--prefix PATH : "${lib.makeBinPath [ git gnupg ]}"
|
|
|
|
|
|
|
|
mkdir $out/share
|
|
|
|
cp -r man $out/share
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A bash-tool to store your private data inside a git repository";
|
|
|
|
homepage = http://git-secret.io;
|
|
|
|
license = stdenv.lib.licenses.mit;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.lo1tuma ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|