tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
winetricks: 20150316 -> 20150416
Herwig Hochleitner
10 years ago
2f53355f
b4c23518
+8
-4
2 changed files
expand all
collapse all
unified
split
pkgs
misc
emulators
wine
versions.nix
winetricks.nix
+4
pkgs/misc/emulators/wine/versions.nix
···
26
26
version = "1.7.43";
27
27
sha256 = "01b7npa8hc2nrv4hm16r9ikic4wd34nbz1lvfhy0ali2jbcsaqqb";
28
28
};
29
29
+
winetricks = {
30
30
+
version = "20150416";
31
31
+
sha256 = "0467cn5hqry6fscjskpvxw0y00lr059jmldv1csicbav4l0dxx8k";
32
32
+
};
29
33
}
+4
-4
pkgs/misc/emulators/wine/winetricks.nix
···
1
1
{ stdenv, fetchFromGitHub, wine, perl, which, coreutils, zenity, curl
2
2
, cabextract, unzip, p7zip, gnused, gnugrep, bash } :
3
3
4
4
-
let version = "20150316";
4
4
+
let v = (import ./versions.nix).winetricks;
5
5
in stdenv.mkDerivation rec {
6
6
-
name = "winetricks-${version}";
6
6
+
name = "winetricks-${v.version}";
7
7
8
8
src = fetchFromGitHub {
9
9
owner = "Winetricks";
10
10
repo = "winetricks";
11
11
-
rev = version;
12
12
-
sha256 = "00c55jpca6l3v3p02xc0gy5l4xb17gf90282hq5h85nh72kqsbrh";
11
11
+
rev = v.version;
12
12
+
sha256 = v.sha256;
13
13
};
14
14
15
15
buildInputs = [ perl which ];