tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
smtube: fix build after qmakeHook
Vincent Laporte
9 years ago
ce7181f9
5de3cfe2
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
video
smtube
default.nix
+4
-2
pkgs/applications/video/smtube/default.nix
···
1
1
-
{ stdenv, fetchurl, qtscript, qtwebkit }:
1
1
+
{ stdenv, fetchurl, qmakeHook, qtscript, qtwebkit }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
version = "16.1.0";
···
13
13
"PREFIX=$(out)"
14
14
];
15
15
16
16
-
buildInputs = [ qtscript qtwebkit ];
16
16
+
dontUseQmakeConfigure = true;
17
17
+
18
18
+
buildInputs = [ qmakeHook qtscript qtwebkit ];
17
19
18
20
meta = with stdenv.lib; {
19
21
description = "Play and download Youtube videos";