nixpkgs/pkgs/misc/emulators/wine/winetricks.nix

36 lines
981 B
Nix
Raw Normal View History

2015-03-29 02:04:07 +00:00
{ stdenv, fetchFromGitHub, wine, perl, which, coreutils, zenity, curl
, cabextract, unzip, p7zip, gnused, gnugrep, bash } :
2015-05-18 18:29:46 +00:00
let v = (import ./versions.nix).winetricks;
2015-03-29 02:04:07 +00:00
in stdenv.mkDerivation rec {
2015-05-18 18:29:46 +00:00
name = "winetricks-${v.version}";
2015-03-29 02:04:07 +00:00
src = fetchFromGitHub {
owner = "Winetricks";
repo = "winetricks";
2015-05-18 18:29:46 +00:00
rev = v.version;
sha256 = v.sha256;
};
buildInputs = [ perl which ];
2015-02-18 23:12:09 +00:00
# coreutils is for sha1sum
pathAdd = stdenv.lib.concatMapStringsSep ":" (x: x + "/bin")
[ wine perl which coreutils zenity curl cabextract unzip p7zip gnused gnugrep bash ];
2015-02-18 23:12:09 +00:00
makeFlags = [ "PREFIX=$(out)" ];
2015-02-18 23:12:09 +00:00
postInstall = ''
sed -i \
-e '2i PATH="${pathAdd}:$PATH"' \
"$out/bin/winetricks"
'';
meta = {
description = "A script to install DLLs needed to work around problems in Wine";
license = stdenv.lib.licenses.lgpl21;
homepage = http://code.google.com/p/winetricks/;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
};
}