mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
git-subtree: added the version 0.3.
svn path=/nixpkgs/trunk/; revision=21645
This commit is contained in:
parent
57c049f4a0
commit
67cf56d2a5
1 changed files with 21 additions and 0 deletions
|
@ -107,4 +107,25 @@ rec {
|
|||
git2cl = import ./git2cl {
|
||||
inherit fetchgit stdenv perl;
|
||||
};
|
||||
|
||||
gitSubtree = stdenv.mkDerivation {
|
||||
name = "git-subtree-0.3";
|
||||
src = fetchurl {
|
||||
url = "http://github.com/apenwarr/git-subtree/tarball/v0.3";
|
||||
# sha256 = "0y57lpbcc2142jgrr4lflyb9xgzs9x33r7g4b919ncn3alb95vdr";
|
||||
sha256 = "f2ccac1e9cff4c35d989dc2a5581133c96b72d96c6a5ed89e51b6446dadac03f";
|
||||
};
|
||||
unpackCmd = "gzip -d < $curSrc | tar xvf -";
|
||||
buildInputs = [ git asciidoc xmlto docbook_xsl docbook_xml_dtd_45 libxslt ];
|
||||
configurePhase = "export prefix=$out";
|
||||
buildPhase = "true";
|
||||
installPhase = ''
|
||||
make install prefix=$out gitdir=$out/bin #work around to deal with a wrong makefile
|
||||
'';
|
||||
meta= {
|
||||
description = "An experimental alternative to the git-submodule command";
|
||||
homepage = http://github.com/apenwarr/git-subtree;
|
||||
license = "GPLv2";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue