Revert "simple-scan: fix build by adding lcms to buildInputs"

This reverts commit 37ff33196f.

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.
This commit is contained in:
Tobias Geerinckx-Rice 2015-08-07 01:45:18 +02:00
parent 22b2330a4d
commit fa7a0f24a4

View File

@ -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;