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