nixpkgs/pkgs/development/libraries/libdevil/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

78 lines
1.9 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, libjpeg
, libpng
, libmng
, lcms1
, libtiff
, openexr
, libGL
, libX11
, pkg-config
, OpenGL
, runtimeShell
, withXorg ? true
, testers
2015-09-29 01:49:47 +00:00
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libdevil";
version = "1.7.8";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "mirror://sourceforge/openil/DevIL-${finalAttrs.version}.tar.gz";
sha256 = "1zd850nn7nvkkhasrv7kn17kzgslr5ry933v6db62s4lr0zzlbv8";
};
nativeBuildInputs = [ pkg-config ];
2016-11-05 19:17:42 +00:00
buildInputs = [ libjpeg libpng libmng lcms1 libtiff openexr ]
++ lib.optionals withXorg [ libX11 libGL ]
++ lib.optionals stdenv.isDarwin [ OpenGL ];
configureFlags = [ "--enable-ILU" "--enable-ILUT" ];
2014-08-24 06:15:23 +00:00
preConfigure = ''
sed -i 's, -std=gnu99,,g' configure
sed -i 's,malloc.h,stdlib.h,g' src-ILU/ilur/ilur.c
'' + lib.optionalString stdenv.cc.isClang ''
2015-11-25 18:09:52 +00:00
sed -i 's/libIL_la_CXXFLAGS = $(AM_CFLAGS)/libIL_la_CXXFLAGS =/g' lib/Makefile.in
2014-08-24 06:15:23 +00:00
'';
postConfigure = ''
sed -i '/RESTRICT_KEYWORD/d' include/IL/config.h
'';
patches = [
(fetchurl {
2020-11-06 18:33:18 +00:00
url = "https://sources.debian.org/data/main/d/devil/1.7.8-10/debian/patches/03_CVE-2009-3994.diff";
sha256 = "0qkx2qfv02igbrmsn6z5a3lbrbwjfh3rb0c2sj54wy0j1f775hbc";
})
./ftbfs-libpng15.patch
./il_endian.h.patch
];
2016-11-05 19:17:42 +00:00
enableParallelBuilding = true;
2018-08-08 18:45:08 +00:00
postPatch = ''
for a in test/Makefile.in test/format_test/format_checks.sh.in ; do
substituteInPlace $a \
--replace /bin/bash ${runtimeShell}
2018-08-08 18:45:08 +00:00
done
'';
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
meta = with lib; {
homepage = "https://openil.sourceforge.net/";
description = "An image library which can can load, save, convert, manipulate, filter and display a wide variety of image formats";
license = licenses.lgpl2;
pkgConfigModules = [ "IL" ];
2013-10-07 15:36:47 +00:00
platforms = platforms.mesaPlatforms;
maintainers = with maintainers; [ ];
};
})