summary refs log tree commit diff
path: root/pkgs/applications/graphics/rawtherapee
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-02-11 18:34:40 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-02-11 18:34:40 +0100
commit684f215b4f4bb1a9850f9b0682ad4aa1069e4f2d (patch)
treef4cdcda61c577b2c8975c9aeafb72c651def107e /pkgs/applications/graphics/rawtherapee
parentb2a07ce1894ac8180cfe214ff65ac5ead328c065 (diff)
downloadnixpkgs-684f215b4f4bb1a9850f9b0682ad4aa1069e4f2d.tar
nixpkgs-684f215b4f4bb1a9850f9b0682ad4aa1069e4f2d.tar.gz
nixpkgs-684f215b4f4bb1a9850f9b0682ad4aa1069e4f2d.tar.bz2
nixpkgs-684f215b4f4bb1a9850f9b0682ad4aa1069e4f2d.tar.lz
nixpkgs-684f215b4f4bb1a9850f9b0682ad4aa1069e4f2d.tar.xz
nixpkgs-684f215b4f4bb1a9850f9b0682ad4aa1069e4f2d.tar.zst
nixpkgs-684f215b4f4bb1a9850f9b0682ad4aa1069e4f2d.zip
fix the problem of missing expat in a few packages
Diffstat (limited to 'pkgs/applications/graphics/rawtherapee')
-rw-r--r--pkgs/applications/graphics/rawtherapee/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/rawtherapee/default.nix b/pkgs/applications/graphics/rawtherapee/default.nix
index 328181790ac..67723dd5818 100644
--- a/pkgs/applications/graphics/rawtherapee/default.nix
+++ b/pkgs/applications/graphics/rawtherapee/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, gtk, cmake, pixman, libpthreadstubs, gtkmm, libXau
-, libXdmcp, lcms2, libiptcdata
+, libXdmcp, lcms2, libiptcdata, expat
 , mercurial  # Not really needed for anything, but it fails if it does not find 'hg'
 }:
 
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   };
   
   buildInputs = [ pkgconfig gtk cmake pixman libpthreadstubs gtkmm libXau libXdmcp
-    lcms2 libiptcdata mercurial ];
+    lcms2 libiptcdata expat mercurial ];
 
   # Disable the use of the RAWZOR propietary libraries
   cmakeFlags = [ "-DWITH_RAWZOR=OFF" ];