git-crypt: pname

This commit is contained in:
Nick Novitski 2019-07-16 18:57:45 -07:00
parent de99f28611
commit 1e9373cb59

View File

@ -3,15 +3,14 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "git-crypt-${version}"; pname = "git-crypt";
version = "0.6.0"; version = "0.6.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "AGWA"; owner = "AGWA";
repo = "git-crypt"; repo = pname;
rev = "${version}"; rev = version;
sha256 = "13m9y0m6gc3mlw3pqv9x4i0him2ycbysizigdvdanhh514kga602"; sha256 = "13m9y0m6gc3mlw3pqv9x4i0him2ycbysizigdvdanhh514kga602";
inherit name;
}; };
nativeBuildInputs = [ libxslt ]; nativeBuildInputs = [ libxslt ];