tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
smplayer: fix build after qmakeHook
Vincent Laporte
9 years ago
5de3cfe2
b539f8e4
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
video
smplayer
default.nix
+4
-2
pkgs/applications/video/smplayer/default.nix
···
1
1
-
{ stdenv, fetchurl, qtscript }:
1
1
+
{ stdenv, fetchurl, qmakeHook, qtscript }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "smplayer-16.1.0";
···
10
10
11
11
patches = [ ./basegui.cpp.patch ];
12
12
13
13
-
buildInputs = [ qtscript ];
13
13
+
buildInputs = [ qmakeHook qtscript ];
14
14
+
15
15
+
dontUseQmakeConfigure = true;
14
16
15
17
preConfigure = ''
16
18
makeFlags="PREFIX=$out"