winetricks: Update to rev 1078
And add some missing dependencies to the PATH of the script.
This commit is contained in:
parent
5c59c84bcb
commit
2d6c240913
@ -1,19 +1,20 @@
|
|||||||
{ stdenv, fetchsvn, wine, perl, which, coreutils, zenity, curl, cabextract, unzip, p7zip } :
|
{ stdenv, fetchsvn, wine, perl, which, coreutils, zenity, curl
|
||||||
|
, cabextract, unzip, p7zip, gnused, gnugrep, bash } :
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
rev = "939";
|
rev = "1078";
|
||||||
name = "winetricks-${rev}";
|
name = "winetricks-${rev}";
|
||||||
|
|
||||||
src = fetchsvn {
|
src = fetchsvn {
|
||||||
url = "http://winetricks.googlecode.com/svn/trunk";
|
url = "http://winetricks.googlecode.com/svn/trunk";
|
||||||
inherit rev;
|
inherit rev;
|
||||||
sha256 = "01v13qw4sxmfm09g9amqycnzy743gdrhvv23rjr9255dzlrj1s8f";
|
sha256 = "0ipvld0r5h6x2pgqkqa82q0w9flx6fn9aha8fd7axf5ji2gzmidm";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ perl which ];
|
buildInputs = [ perl which ];
|
||||||
|
|
||||||
pathAdd = stdenv.lib.concatStringsSep "/bin:" # coreutils is for sha1sum
|
pathAdd = stdenv.lib.concatStringsSep "/bin:" # coreutils is for sha1sum
|
||||||
[ wine perl which coreutils zenity curl cabextract unzip p7zip ]
|
[ wine perl which coreutils zenity curl cabextract unzip p7zip gnused gnugrep bash ]
|
||||||
+ "/bin";
|
+ "/bin";
|
||||||
|
|
||||||
patch = ./winetricks.patch;
|
patch = ./winetricks.patch;
|
||||||
@ -24,6 +25,7 @@ stdenv.mkDerivation rec {
|
|||||||
description = "A script to install DLLs needed to work around problems in Wine";
|
description = "A script to install DLLs needed to work around problems in Wine";
|
||||||
license = "LGPLv2.1";
|
license = "LGPLv2.1";
|
||||||
homepage = http://code.google.com/p/winetricks/;
|
homepage = http://code.google.com/p/winetricks/;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user