66604c92c1
GitOrigin-RevId: 32b8ed738096bafb4cdb7f70347a0f63f9f40151
35 lines
786 B
Nix
35 lines
786 B
Nix
{ stdenv, fetchFromGitHub, python2, git }:
|
|
|
|
let
|
|
name = "stgit-${version}";
|
|
version = "0.22";
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit name;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ctmarinas";
|
|
repo = "stgit";
|
|
rev = "v${version}";
|
|
sha256 = "0xpvs5fa50rrvl2c8naha1nblk5ip2mgg63a9srqqxfx6z8qmrfz";
|
|
};
|
|
|
|
buildInputs = [ python2 git ];
|
|
|
|
makeFlags = [ "prefix=$$out" ];
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/etc/bash_completion.d/"
|
|
ln -s ../../share/stgit/completion/stgit-completion.bash "$out/etc/bash_completion.d/"
|
|
'';
|
|
|
|
doCheck = false;
|
|
checkTarget = "test";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A patch manager implemented on top of Git";
|
|
homepage = "http://procode.org/stgit/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|