2018-10-03 12:54:02 +01:00
|
|
|
{ stdenv, fetchFromGitHub, python2, git }:
|
2008-07-09 17:21:03 +01:00
|
|
|
|
2011-09-15 12:04:00 +01:00
|
|
|
let
|
2018-03-29 16:53:42 +01:00
|
|
|
name = "stgit-${version}";
|
2019-11-03 04:27:34 +00:00
|
|
|
version = "0.21";
|
2011-09-15 12:04:00 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit name;
|
|
|
|
|
2018-10-03 12:54:02 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ctmarinas";
|
|
|
|
repo = "stgit";
|
|
|
|
rev = "v${version}";
|
2019-11-03 04:27:34 +00:00
|
|
|
sha256 = "16gwdad18rc9bivyzrjccp83iccmqr45fp2zawycmrfp2ancffc7";
|
2008-07-09 17:21:03 +01:00
|
|
|
};
|
|
|
|
|
2016-11-09 10:38:21 +00:00
|
|
|
buildInputs = [ python2 git ];
|
2011-09-15 12:04:00 +01:00
|
|
|
|
|
|
|
makeFlags = "prefix=$$out";
|
2008-07-09 17:21:03 +01:00
|
|
|
|
2011-09-15 12:04:00 +01:00
|
|
|
postInstall = ''
|
2012-01-18 20:16:00 +00:00
|
|
|
mkdir -p "$out/etc/bash_completion.d/"
|
2011-09-15 12:04:00 +01:00
|
|
|
ln -s ../../share/stgit/completion/stgit-completion.bash "$out/etc/bash_completion.d/"
|
2008-08-07 18:30:35 +01:00
|
|
|
'';
|
2008-07-09 17:21:03 +01:00
|
|
|
|
2011-09-15 13:47:49 +01:00
|
|
|
doCheck = false;
|
2011-09-15 12:04:00 +01:00
|
|
|
checkTarget = "test";
|
|
|
|
|
2018-10-03 12:54:02 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-04-30 16:05:14 +01:00
|
|
|
description = "A patch manager implemented on top of Git";
|
2018-10-03 12:54:02 +01:00
|
|
|
homepage = http://procode.org/stgit/;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
|
|
|
platforms = platforms.unix;
|
2008-07-09 17:21:03 +01:00
|
|
|
};
|
|
|
|
}
|