Git 1.5.5.
svn path=/nixpkgs/trunk/; revision=11611
This commit is contained in:
parent
7e43554ace
commit
4579a2a530
@ -3,11 +3,11 @@
|
|||||||
, libxslt, tcl, tk, makeWrapper }:
|
, libxslt, tcl, tk, makeWrapper }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "git-1.5.4.4";
|
name = "git-1.5.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://kernel/software/scm/git/${name}.tar.bz2";
|
url = "mirror://kernel/software/scm/git/${name}.tar.bz2";
|
||||||
sha256 = "16dcmkj7dfmr1cy28hi0ipc2qx7dy3knnb77w5bn78hwdfd2dcv9";
|
sha256 = "0pp6hfxkcwzb415wkkn713pqsv7cv06y90s53dyhsicqqn83hj17";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./pwd.patch ./docbook2texi.patch ];
|
patches = [ ./pwd.patch ./docbook2texi.patch ];
|
||||||
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
++ # documentation tools
|
++ # documentation tools
|
||||||
[ asciidoc texinfo xmlto docbook2x
|
[ asciidoc texinfo xmlto docbook2x
|
||||||
docbook_xsl docbook_xml_dtd_42 libxslt ]
|
docbook_xsl docbook_xml_dtd_42 libxslt ]
|
||||||
++ # Tcl/Tk, for `gitk'
|
++ # Tcl/Tk, for `gitk' and `git-gui'
|
||||||
[ tcl tk makeWrapper ];
|
[ tcl tk makeWrapper ];
|
||||||
|
|
||||||
makeFlags="prefix=\${out} PERL_PATH=${perl}/bin/perl SHELL_PATH=${stdenv.shell}";
|
makeFlags="prefix=\${out} PERL_PATH=${perl}/bin/perl SHELL_PATH=${stdenv.shell}";
|
||||||
@ -37,15 +37,13 @@ stdenv.mkDerivation rec {
|
|||||||
make PERL_PATH="${perl}/bin/perl" cmd-list.made install install-info \
|
make PERL_PATH="${perl}/bin/perl" cmd-list.made install install-info \
|
||||||
-C Documentation ''
|
-C Documentation ''
|
||||||
|
|
||||||
+ ''# Wrap `gitk'
|
+ ''# Wrap `gitk' and `git-gui'
|
||||||
wrapProgram $out/bin/gitk \
|
for prog in gitk git-gui
|
||||||
--set TK_LIBRARY "${tk}/lib/tk8.4" \
|
do
|
||||||
--prefix PATH : "${tk}/bin" ''
|
wrapProgram "$out/bin/$prog" \
|
||||||
|
--set TK_LIBRARY "${tk}/lib/tk8.4" \
|
||||||
+ ''# Wrap `git-gui'
|
--prefix PATH : "${tk}/bin"
|
||||||
wrapProgram $out/bin/git-gui \
|
done ''
|
||||||
--set TK_LIBRARY "${tk}/lib/tk8.4" \
|
|
||||||
--prefix PATH : "${tk}/bin" ''
|
|
||||||
|
|
||||||
+ ''# Wrap `git-clone'
|
+ ''# Wrap `git-clone'
|
||||||
wrapProgram $out/bin/git-clone \
|
wrapProgram $out/bin/git-clone \
|
||||||
|
Loading…
Reference in New Issue
Block a user