about summary refs log tree commit diff
path: root/pkgs/development/libraries/herqq
diff options
context:
space:
mode:
authorThomas Tuegel <thomas.tuegel@runtimeverification.com>2020-09-07 11:43:40 -0500
committerThomas Tuegel <thomas.tuegel@runtimeverification.com>2020-09-07 11:43:40 -0500
commit60a13a2240b4cafd851a592fcdcc5f4cb90c5e5f (patch)
tree67f3719aca2a84c39e7f7082f662c976812d5a56 /pkgs/development/libraries/herqq
parent63cf375edc0c05de5ab9bb5fb4e99a8438020727 (diff)
herqq: pin to qt514
Diffstat (limited to 'pkgs/development/libraries/herqq')
-rw-r--r--pkgs/development/libraries/herqq/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/herqq/default.nix b/pkgs/development/libraries/herqq/default.nix
index d3433246b7806..8dc0df3a9f2fe 100644
--- a/pkgs/development/libraries/herqq/default.nix
+++ b/pkgs/development/libraries/herqq/default.nix
@@ -1,11 +1,11 @@
-{ stdenv, qt5, unzip, fetchFromGitHub, qtmultimedia }:
+{ stdenv, unzip, fetchFromGitHub, qmake, qtmultimedia, qtbase }:
 
 stdenv.mkDerivation rec {
   version = "2.1.0";
   pname = "herqq";
 
-  nativeBuildInputs = [ qt5.qmake ];
-  buildInputs = [ qt5.qtbase unzip qtmultimedia ];
+  nativeBuildInputs = [ qmake ];
+  buildInputs = [ qtbase unzip qtmultimedia ];
   preConfigure = "cd herqq";
 
   src = fetchFromGitHub {