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