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