about summary refs log tree commit diff
path: root/pkgs/applications/graphics/simple-scan
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-08-07 01:45:18 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-08-07 01:45:18 +0200
commitfa7a0f24a4c8e02789be6b5c9c83c4c3ee6948a5 (patch)
tree86f60dbbd905dff08f83b0a6d736100742d2f4b2 /pkgs/applications/graphics/simple-scan
parent22b2330a4df67734c9b18c52a095e21ce75cb8b5 (diff)
downloadnixlib-fa7a0f24a4c8e02789be6b5c9c83c4c3ee6948a5.tar
nixlib-fa7a0f24a4c8e02789be6b5c9c83c4c3ee6948a5.tar.gz
nixlib-fa7a0f24a4c8e02789be6b5c9c83c4c3ee6948a5.tar.bz2
nixlib-fa7a0f24a4c8e02789be6b5c9c83c4c3ee6948a5.tar.lz
nixlib-fa7a0f24a4c8e02789be6b5c9c83c4c3ee6948a5.tar.xz
nixlib-fa7a0f24a4c8e02789be6b5c9c83c4c3ee6948a5.tar.zst
nixlib-fa7a0f24a4c8e02789be6b5c9c83c4c3ee6948a5.zip
Revert "simple-scan: fix build by adding lcms to buildInputs"
This reverts commit 37ff33196fe245d0c12cb1b84389e88d40bbb717.

This can't be it. `lcms` and `lcms2` are two entirely different packages.

Furthermore, the dependency is propagated through colord and should be
fixed there, if needed.
Diffstat (limited to 'pkgs/applications/graphics/simple-scan')
-rw-r--r--pkgs/applications/graphics/simple-scan/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/simple-scan/default.nix b/pkgs/applications/graphics/simple-scan/default.nix
index 9eac6d0659af..954b2e02136d 100644
--- a/pkgs/applications/graphics/simple-scan/default.nix
+++ b/pkgs/applications/graphics/simple-scan/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, cairo, colord, glib, gtk3, intltool, itstool, libxml2
-, makeWrapper, pkgconfig, saneBackends, systemd, vala, lcms }:
+, makeWrapper, pkgconfig, saneBackends, systemd, vala }:
 
 let version = "3.17.4"; in
 stdenv.mkDerivation rec {
@@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [ cairo colord glib gtk3 libxml2
-    saneBackends systemd vala lcms ];
+    saneBackends systemd vala ];
   nativeBuildInputs = [ intltool itstool makeWrapper pkgconfig ];
 
   enableParallelBuilding = true;