2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, nasm
|
2020-12-20 06:11:26 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
|
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2012-08-02 16:58:25 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-18 07:17:48 +01:00
|
|
|
|
2019-03-25 19:59:30 +00:00
|
|
|
pname = "libjpeg-turbo";
|
2020-11-28 10:48:48 +00:00
|
|
|
version = "2.0.6";
|
2010-07-10 09:45:44 +01:00
|
|
|
|
2020-09-30 13:44:00 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libjpeg-turbo";
|
|
|
|
repo = "libjpeg-turbo";
|
|
|
|
rev = version;
|
2020-11-28 10:48:48 +00:00
|
|
|
sha256 = "0njdxfmyk8smj8bbd6fs3lxjaq3lybivwgg16gpnbiyl984dpi9b";
|
2018-11-11 22:01:54 +00:00
|
|
|
};
|
2010-07-10 09:45:44 +01:00
|
|
|
|
2021-01-04 22:20:49 +00:00
|
|
|
# This is needed by freeimage
|
|
|
|
patches = [ ./0001-Compile-transupp.c-as-part-of-the-library.patch ]
|
2021-01-22 06:56:40 +00:00
|
|
|
++ lib.optional (stdenv.hostPlatform.libc or null == "msvcrt")
|
2019-05-15 21:39:22 +01:00
|
|
|
./mingw-boolean.patch;
|
2016-02-10 11:40:20 +00:00
|
|
|
|
2021-01-04 22:20:49 +00:00
|
|
|
outputs = [ "bin" "dev" "dev_private" "out" "man" "doc" ];
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
moveToOutput include/transupp.h $dev_private
|
|
|
|
'';
|
2013-06-26 13:46:53 +01:00
|
|
|
|
2018-11-11 22:01:54 +00:00
|
|
|
nativeBuildInputs = [ cmake nasm ];
|
2012-08-02 16:58:25 +01:00
|
|
|
|
2019-07-30 19:18:20 +01:00
|
|
|
cmakeFlags = [
|
2019-11-03 17:35:55 +00:00
|
|
|
"-DENABLE_STATIC=${if enableStatic then "1" else "0"}"
|
2020-07-01 22:30:31 +01:00
|
|
|
"-DENABLE_SHARED=${if enableShared then "1" else "0"}"
|
2019-07-30 19:18:20 +01:00
|
|
|
];
|
2019-03-25 19:59:30 +00:00
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckTarget = "test";
|
2013-05-30 14:11:43 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2020-09-30 13:44:00 +01:00
|
|
|
homepage = "https://libjpeg-turbo.org/";
|
2010-07-10 09:45:44 +01:00
|
|
|
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
|
2020-04-04 20:32:30 +01:00
|
|
|
maintainers = with maintainers; [ vcunat colemickens ];
|
2015-05-18 12:42:49 +01:00
|
|
|
platforms = platforms.all;
|
2010-07-10 09:45:44 +01:00
|
|
|
};
|
|
|
|
}
|