From fa7a0f24a4c8e02789be6b5c9c83c4c3ee6948a5 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Fri, 7 Aug 2015 01:45:18 +0200 Subject: [PATCH] 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. --- pkgs/applications/graphics/simple-scan/default.nix | 4 ++-- 1 file 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;