mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
smtube: fix build after qmakeHook
This commit is contained in:
parent
5de3cfe210
commit
ce7181f9a8
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, qtscript, qtwebkit }:
|
||||
{ stdenv, fetchurl, qmakeHook, qtscript, qtwebkit }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "16.1.0";
|
||||
@ -13,7 +13,9 @@ stdenv.mkDerivation rec {
|
||||
"PREFIX=$(out)"
|
||||
];
|
||||
|
||||
buildInputs = [ qtscript qtwebkit ];
|
||||
dontUseQmakeConfigure = true;
|
||||
|
||||
buildInputs = [ qmakeHook qtscript qtwebkit ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Play and download Youtube videos";
|
||||
|
Loading…
Reference in New Issue
Block a user