summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-09 10:49:49 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-10 23:52:37 +0100
commit48e404a9f7e92c654f76c2bee6cb76836c543e68 (patch)
tree7c0c510c3f286a40ffcbcfab8835d77a1ed3c39a
parentd43e54487b02615a817460836f61c6a4b62df3ec (diff)
downloadnixpkgs-48e404a9f7e92c654f76c2bee6cb76836c543e68.tar
nixpkgs-48e404a9f7e92c654f76c2bee6cb76836c543e68.tar.gz
nixpkgs-48e404a9f7e92c654f76c2bee6cb76836c543e68.tar.bz2
nixpkgs-48e404a9f7e92c654f76c2bee6cb76836c543e68.tar.lz
nixpkgs-48e404a9f7e92c654f76c2bee6cb76836c543e68.tar.xz
nixpkgs-48e404a9f7e92c654f76c2bee6cb76836c543e68.tar.zst
nixpkgs-48e404a9f7e92c654f76c2bee6cb76836c543e68.zip
minitube: remove not required enableParallelBuilding, format
-rw-r--r--pkgs/applications/video/minitube/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/applications/video/minitube/default.nix b/pkgs/applications/video/minitube/default.nix
index a1ccc353d56..84b5e2a1d73 100644
--- a/pkgs/applications/video/minitube/default.nix
+++ b/pkgs/applications/video/minitube/default.nix
@@ -16,12 +16,11 @@ mkDerivation rec {
     fetchSubmodules = true;
   };
 
-  buildInputs = [ phonon phonon-backend-vlc qtbase qtdeclarative qtx11extras mpv ];
   nativeBuildInputs = [ qmake qttools ];
 
-  qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ];
+  buildInputs = [ phonon phonon-backend-vlc qtbase qtdeclarative qtx11extras mpv ];
 
-  enableParallelBuilding = true;
+  qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ];
 
   meta = with lib; {
     description = "Stand-alone YouTube video player";