2020-09-30 14:44:00 +02:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, nasm, enableStatic ? false, enableShared ? true }:
|
2012-08-02 17:58:25 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-05-18 08:17:48 +02:00
|
|
|
|
2019-03-25 20:59:30 +01:00
|
|
|
pname = "libjpeg-turbo";
|
2020-09-30 14:44:00 +02:00
|
|
|
version = "2.0.5";
|
2010-07-10 10:45:44 +02:00
|
|
|
|
2020-09-30 14:44:00 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libjpeg-turbo";
|
|
|
|
repo = "libjpeg-turbo";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0p32yivybxdicm01qa9h1vj91apygzxpvnklrjmbx8z9z2l3qxc9";
|
2018-11-11 23:01:54 +01:00
|
|
|
};
|
2010-07-10 10:45:44 +02:00
|
|
|
|
2016-02-10 12:40:20 +01:00
|
|
|
patches =
|
2018-08-20 20:43:41 +02: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 11:14:14 +02:00
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
2013-06-26 14:46:53 +02:00
|
|
|
|
2018-11-11 23:01:54 +01:00
|
|
|
nativeBuildInputs = [ cmake nasm ];
|
2012-08-02 17:58:25 +02: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"}"
|
2020-07-01 23:30:31 +02:00
|
|
|
"-DENABLE_SHARED=${if enableShared then "1" else "0"}"
|
2019-07-30 20:18:20 +02:00
|
|
|
];
|
2019-03-25 20:59:30 +01: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-09-30 14:44:00 +02:00
|
|
|
homepage = "https://libjpeg-turbo.org/";
|
2010-07-10 10:45:44 +02: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 21:32:30 +02:00
|
|
|
maintainers = with maintainers; [ vcunat colemickens ];
|
2015-05-18 13:42:49 +02:00
|
|
|
platforms = platforms.all;
|
2010-07-10 10:45:44 +02:00
|
|
|
};
|
|
|
|
}
|