summary refs log tree commit diff
path: root/pkgs/applications/graphics/qcomicbook/default.nix
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-09-12 22:22:39 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-09-13 06:47:22 -0700
commitf91a79ecc86c574134f3a13ba3d0750720964230 (patch)
tree14e31a65ca8c4c38779ff07f517329dc6caa8d05 /pkgs/applications/graphics/qcomicbook/default.nix
parent0f2b10d1ac41c2f573fddbdf110a1ae435ffdd8a (diff)
downloadnixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.gz
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.bz2
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.lz
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.xz
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.tar.zst
nixpkgs-f91a79ecc86c574134f3a13ba3d0750720964230.zip
treewide: fix `config.allowAliases = false` evaluation
Diffstat (limited to 'pkgs/applications/graphics/qcomicbook/default.nix')
-rw-r--r--pkgs/applications/graphics/qcomicbook/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/qcomicbook/default.nix b/pkgs/applications/graphics/qcomicbook/default.nix
index d67c8ef9b02..c37e21ec898 100644
--- a/pkgs/applications/graphics/qcomicbook/default.nix
+++ b/pkgs/applications/graphics/qcomicbook/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools, qtx11extras, poppler_qt5 }:
+{ stdenv, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools, qtx11extras, poppler }:
 
 stdenv.mkDerivation rec {
   name = "qcomicbook-${version}";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
   ];
 
   buildInputs = [
-    qtbase qttools qtx11extras poppler_qt5
+    qtbase qttools qtx11extras poppler
   ];
 
   postInstall = ''