From 37ff33196fe245d0c12cb1b84389e88d40bbb717 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Thu, 6 Aug 2015 16:31:23 +0200 Subject: [PATCH] simple-scan: fix build by adding lcms to buildInputs --- 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 954b2e02136..9eac6d0659a 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 }: +, makeWrapper, pkgconfig, saneBackends, systemd, vala, lcms }: 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 ]; + saneBackends systemd vala lcms ]; nativeBuildInputs = [ intltool itstool makeWrapper pkgconfig ]; enableParallelBuilding = true;