2020-05-02 16:00:09 +09:00
|
|
|
{ stdenv, fetchurl, fetchpatch, cmake, nasm, enableStatic ? false }:
|
2012-08-02 11:58:25 -04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-18 08:17:48 +02:00
|
|
|
|
2019-03-25 14:59:30 -05:00
|
|
|
pname = "libjpeg-turbo";
|
2020-04-04 19:32:30 +00:00
|
|
|
version = "2.0.4";
|
2010-07-10 08:45:44 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-03-25 14:59:30 -05:00
|
|
|
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
|
2020-04-04 19:32:30 +00:00
|
|
|
sha256 = "01ill8bgjyk582wipx7sh7gj2nidylpbzvwhx0wkcm6mxx3qbp9k";
|
2018-11-11 20:01:54 -02:00
|
|
|
};
|
2010-07-10 08:45:44 +00:00
|
|
|
|
2016-02-10 12:40:20 +01:00
|
|
|
patches =
|
2020-05-02 16:00:09 +09:00
|
|
|
[
|
|
|
|
# Fixes race in tests that causes "jpegtran-shared-icc" to fail
|
|
|
|
# https://github.com/libjpeg-turbo/libjpeg-turbo/pull/425
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/libjpeg-turbo/libjpeg-turbo/commit/a2291b252de1413a13db61b21863ae7aea0946f3.patch";
|
|
|
|
sha256 = "0nc5vcch5h52gpi07h08zf8br58q8x81q2hv871hrn0dinb53vym";
|
|
|
|
})
|
|
|
|
] ++
|
2018-08-20 14:43:41 -04:00
|
|
|
stdenv.lib.optional (stdenv.hostPlatform.libc or null == "msvcrt")
|
2019-05-15 22:39:22 +02:00
|
|
|
./mingw-boolean.patch;
|
2016-02-10 12:40:20 +01:00
|
|
|
|
2017-07-11 12:14:14 +03:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2013-06-26 14:46:53 +02:00
|
|
|
|
2018-11-11 20:01:54 -02:00
|
|
|
nativeBuildInputs = [ cmake nasm ];
|
2012-08-02 11:58:25 -04:00
|
|
|
|
2019-07-30 20:18:20 +02:00
|
|
|
cmakeFlags = [
|
2019-11-03 18:35:55 +01:00
|
|
|
"-DENABLE_STATIC=${if enableStatic then "1" else "0"}"
|
2019-07-30 20:18:20 +02:00
|
|
|
];
|
2019-03-25 14:59:30 -05:00
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckTarget = "test";
|
2013-05-30 15:11:43 +02:00
|
|
|
|
2015-01-13 16:55:58 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 21:11:51 -04:00
|
|
|
homepage = "http://libjpeg-turbo.virtualgl.org/";
|
2010-07-10 08:45:44 +00:00
|
|
|
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
|
2020-04-04 19:32:30 +00:00
|
|
|
maintainers = with maintainers; [ vcunat colemickens ];
|
2015-05-18 13:42:49 +02:00
|
|
|
platforms = platforms.all;
|
2010-07-10 08:45:44 +00:00
|
|
|
};
|
|
|
|
}
|