summary refs log tree commit diff
path: root/pkgs/applications/misc/robomongo/default.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-12-19 20:40:12 -0600
committerThomas Tuegel <ttuegel@gmail.com>2015-12-20 07:56:48 -0600
commit88514fdf581374d42083b8f8fb0303814fffbe3b (patch)
tree53868203e89731a242f09848f380d55147030153 /pkgs/applications/misc/robomongo/default.nix
parent06f9ac71dc73d1f296c31a1156162f7a6a9d3cae (diff)
downloadnixpkgs-88514fdf581374d42083b8f8fb0303814fffbe3b.tar
nixpkgs-88514fdf581374d42083b8f8fb0303814fffbe3b.tar.gz
nixpkgs-88514fdf581374d42083b8f8fb0303814fffbe3b.tar.bz2
nixpkgs-88514fdf581374d42083b8f8fb0303814fffbe3b.tar.lz
nixpkgs-88514fdf581374d42083b8f8fb0303814fffbe3b.tar.xz
nixpkgs-88514fdf581374d42083b8f8fb0303814fffbe3b.tar.zst
nixpkgs-88514fdf581374d42083b8f8fb0303814fffbe3b.zip
robomongo: Qt 5 infrastructure update
Diffstat (limited to 'pkgs/applications/misc/robomongo/default.nix')
-rw-r--r--pkgs/applications/misc/robomongo/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/robomongo/default.nix b/pkgs/applications/misc/robomongo/default.nix
index 80424a308d7..ebd97f6621d 100644
--- a/pkgs/applications/misc/robomongo/default.nix
+++ b/pkgs/applications/misc/robomongo/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, qt5, openssl, boost, cmake, scons, python, pcre, bzip2 }:
+{ stdenv, fetchurl, qtbase, openssl, boost, cmake, scons, python, pcre, bzip2 }:
 
 stdenv.mkDerivation {
   name = "robomongo-0.8.4";
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
 
   NIX_CFLAGS_COMPILE = "-fno-stack-protector";
 
-  buildInputs = [ cmake boost scons qt5.base openssl python pcre bzip2 ];
+  buildInputs = [ cmake boost scons qtbase openssl python pcre bzip2 ];
 
   meta = {
     homepage = "http://robomongo.org/";