tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
smplayer: 14.9.0.6690 -> 15.9.0
Vincent Laporte
10 years ago
a4db37c4
1e6f0cc1
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
video
smplayer
default.nix
+4
-4
pkgs/applications/video/smplayer/default.nix
···
1
1
-
{ stdenv, fetchurl, qt4 }:
1
1
+
{ stdenv, fetchurl, qt5 }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
name = "smplayer-14.9.0.6690";
4
4
+
name = "smplayer-15.9.0";
5
5
6
6
src = fetchurl {
7
7
url = "mirror://sourceforge/smplayer/${name}.tar.bz2";
8
8
-
sha256 = "0nmw69kg8rqvl9icyx1r1v1pyxg6560363l0kyqyja18j79a3j2y";
8
8
+
sha256 = "1yx6kikaj9v5aj8aavvrcklx283wl6wrnpl905hjc7v03kgp1ac5";
9
9
};
10
10
11
11
patches = [ ./basegui.cpp.patch ];
12
12
13
13
-
buildInputs = [ qt4 ];
13
13
+
buildInputs = [ qt5.script ];
14
14
15
15
preConfigure = ''
16
16
makeFlags="PREFIX=$out"