about summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-10-01 23:38:06 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-10-01 23:38:06 +0300
commit5bf5de58ea568b733d7399233f4d661f911c742d (patch)
treeeb0614162926a8e103a59e87284d759139c8aed7 /pkgs/applications/graphics
parentc61cc2d56cb1f790c1921c18deaf6d6c33d5627f (diff)
downloadnixlib-5bf5de58ea568b733d7399233f4d661f911c742d.tar
nixlib-5bf5de58ea568b733d7399233f4d661f911c742d.tar.gz
nixlib-5bf5de58ea568b733d7399233f4d661f911c742d.tar.bz2
nixlib-5bf5de58ea568b733d7399233f4d661f911c742d.tar.lz
nixlib-5bf5de58ea568b733d7399233f4d661f911c742d.tar.xz
nixlib-5bf5de58ea568b733d7399233f4d661f911c742d.tar.zst
nixlib-5bf5de58ea568b733d7399233f4d661f911c742d.zip
treewide: Fix 'lib.optional' misuses
These add a singleton list of a package to buildInputs.
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/feh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix
index 380e5d298864..40fe178d6257 100644
--- a/pkgs/applications/graphics/feh/default.nix
+++ b/pkgs/applications/graphics/feh/default.nix
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   outputs = [ "out" "doc" ];
 
   nativeBuildInputs = [ makeWrapper xorg.libXt ]
-    ++ stdenv.lib.optional doCheck [ perlPackages.TestCommand perlPackages.TestHarness ];
+    ++ stdenv.lib.optionals doCheck [ perlPackages.TestCommand perlPackages.TestHarness ];
 
   buildInputs = [ xorg.libX11 xorg.libXinerama imlib2 libjpeg libpng curl libexif ];