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