adding gitAttr
now containing qgit, stgit, topGit, hg2git updating gitGit (git dev version), adding qgit-git (dev version) svn path=/nixpkgs/trunk/; revision=13816
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
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
|
||||
d="$out/etc/bash_completion.d"
|
||||
ensureDir $d; ln -s "$out/share/stgit/contrib/stgit-completion.bash" "$d"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "quilt for git (stacking patches)";
|
||||
homepage = http://procode.org/stgit/;
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user