added stgit

svn path=/nixpkgs/trunk/; revision=12330
This commit is contained in:
Marc Weber 2008-07-09 16:21:03 +00:00
parent 9cb86e27bb
commit 1683256259
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,23 @@
args:
args.stdenv.mkDerivation {
name = "stgit-0.14.3";
src = args.fetchurl {
url = http://homepage.ntlworld.com/cmarinas/stgit/stgit-0.14.3.tar.gz;
sha256 = "13gcvz6x91m2860n26xp12j0xsshzvwij03sfzm5g3ckm18ffkw7";
};
buildInputs =(with args; [python git]);
buildPhase = "true";
installPhase = "
python ./setup.py install --prefix=$out
";
meta = {
description = "quilt for git (stacking patches)";
homepage = http://procode.org/stgit/;
license = "GPL";
};
}

View file

@ -6428,6 +6428,11 @@ let pkgs = rec {
inherit fetchurl stdenv;
};
stgit = import ../applications/version-management/stgit {
inherit fetchurl stdenv python git;
};
subversion = subversion14;
subversion14 = import ../applications/version-management/subversion-1.4.x {