nixpkgs/pkgs/development/libraries/freeimage/default.nix
Lluís Batlle i Rossell 031af8f0cf Making freeimage build and install freeimageplus too.
I need it for the pgf command line tool (next commit)

(cherry picked from commit f6856be9eefc5785b7c38e7398106d9a220f2a37)
2015-01-23 16:09:31 +01:00

28 lines
858 B
Nix

{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
name = "freeimage-3.15.3";
src = fetchurl {
url = mirror://sourceforge/freeimage/FreeImage3153.zip;
sha256 = "0i60fn1n9rw55dci0yw92zrw7k1jz3f9kv2z1wxmh84s5ngxa626";
};
buildInputs = [ unzip ];
prePatch = ''
sed -e s@/usr/@$out/@ \
-e 's@-o root -g root@@' \
-e 's@ldconfig@echo not running ldconfig@' \
-i Makefile.gnu Makefile.fip
'';
postBuild = "make -f Makefile.fip";
preInstall = "mkdir -p $out/include $out/lib";
postInstall = "make -f Makefile.fip install";
meta = {
description = "Open Source library for accessing popular graphics image file formats";
homepage = http://freeimage.sourceforge.net/;
license = "GPL";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
};
}