summary refs log tree commit diff
path: root/pkgs/development/libraries/freeimage/default.nix
blob: d4ce41e699c6bdc50926a489636f139839d165ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{stdenv, fetchurl, unzip}:
stdenv.mkDerivation {
  name = "freeimage-3.12.0";
  src = fetchurl {
    url = mirror://sourceforge/freeimage/FreeImage3120.zip;
    sha256 = "1hvcmv8hnv3h24zcl324g3l0ww8aa8fkcfav2lrgs1kwzp5zqcd4";
  };
  buildInputs = [ unzip ];
  patchPhase = ''
      sed -e s@/usr/@$out/@ \
        -e 's@-o root -g root@@' \
        -e 's@ldconfig@echo not running ldconfig@' \
        -i Makefile.gnu
  '';
  preInstall = "mkdir -p $out/include $out/lib";

  meta = {
    description = "Open Source library for accessing popular graphics image file formats";
    homepage = http://freeimage.sourceforge.net/;
    license = "GPL";
  };
}