2016-04-19 13:45:46 +01:00
|
|
|
{ stdenv, fetchurl, nasm }:
|
2012-08-02 16:58:25 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-07-03 16:05:20 +01:00
|
|
|
name = "libjpeg-turbo-1.5.0";
|
2010-07-10 09:45:44 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-08-02 16:58:25 +01:00
|
|
|
url = "mirror://sourceforge/libjpeg-turbo/${name}.tar.gz";
|
2016-07-03 16:05:20 +01:00
|
|
|
sha256 = "0pq3lav976d6a1d16yyqrj1b4gmhk1ca4zar6zp00avxlqqpqfcz";
|
2010-07-10 09:45:44 +01:00
|
|
|
};
|
|
|
|
|
2016-02-10 11:40:20 +00:00
|
|
|
patches =
|
|
|
|
stdenv.lib.optional (stdenv.cross.libc or null == "msvcrt")
|
|
|
|
./mingw-boolean.patch;
|
|
|
|
|
2013-06-26 13:46:53 +01:00
|
|
|
outputs = [ "dev" "out" "doc" "bin" ];
|
|
|
|
|
2016-04-19 13:45:46 +01:00
|
|
|
nativeBuildInputs = [ nasm ];
|
2012-08-02 16:58:25 +01:00
|
|
|
|
2013-06-26 13:46:53 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-05-30 14:11:43 +01:00
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
|
2015-01-13 15:55:58 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-10 09:45:44 +01:00
|
|
|
homepage = http://libjpeg-turbo.virtualgl.org/;
|
|
|
|
description = "A faster (using SIMD) libjpeg implementation";
|
2015-01-13 15:55:58 +00:00
|
|
|
license = licenses.ijg; # and some parts under other BSD-style licenses
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2015-05-18 12:42:49 +01:00
|
|
|
# upstream supports darwin (and others), but it doesn't build currently
|
|
|
|
platforms = platforms.all;
|
|
|
|
hydraPlatforms = platforms.linux;
|
2010-07-10 09:45:44 +01:00
|
|
|
};
|
|
|
|
}
|
2015-01-13 15:55:58 +00:00
|
|
|
|