3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/misc/emulators/wine/winetricks.nix

33 lines
839 B
Nix
Raw Normal View History

{ lib, stdenv, callPackage, perl, which, coreutils, zenity, curl
, cabextract, unzip, p7zip, gnused, gnugrep, bash } :
stdenv.mkDerivation rec {
name = "winetricks-${src.version}";
src = (callPackage ./sources.nix {}).winetricks;
buildInputs = [ perl which ];
2015-02-18 23:12:09 +00:00
# coreutils is for sha1sum
pathAdd = lib.makeBinPath [
perl which coreutils zenity curl cabextract unzip p7zip gnused gnugrep bash
];
2015-02-18 23:12:09 +00:00
makeFlags = [ "PREFIX=$(out)" ];
doCheck = false; # requires "bashate"
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";
2021-01-15 13:21:58 +00:00
license = lib.licenses.lgpl21;
homepage = "https://github.com/Winetricks/winetricks";
2021-01-15 13:21:58 +00:00
platforms = with lib.platforms; linux;
};
}