nixpkgs/pkgs/development/libraries/libjpeg-turbo/default.nix

56 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, nasm
, openjdk
, enableJava ? false # whether to build the java wrapper
, enableStatic ? stdenv.hostPlatform.isStatic
, enableShared ? !stdenv.hostPlatform.isStatic
}:
stdenv.mkDerivation rec {
2019-05-17 23:17:48 -07:00
pname = "libjpeg-turbo";
2020-11-28 02:48:48 -08:00
version = "2.0.6";
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
};
# This is needed by freeimage
patches = [ ./0001-Compile-transupp.c-as-part-of-the-library.patch ]
2021-01-21 22:56:40 -08:00
++ lib.optional (stdenv.hostPlatform.libc or null == "msvcrt")
2019-05-15 13:39:22 -07:00
./mingw-boolean.patch;
outputs = [ "bin" "dev" "dev_private" "out" "man" "doc" ];
postFixup = ''
moveToOutput include/transupp.h $dev_private
'';
2013-06-26 05:46:53 -07:00
nativeBuildInputs = [
cmake
nasm
] ++ lib.optionals enableJava [
openjdk
];
cmakeFlags = [
"-DENABLE_STATIC=${if enableStatic then "1" else "0"}"
2020-07-01 14:30:31 -07:00
"-DENABLE_SHARED=${if enableShared then "1" else "0"}"
] ++ lib.optionals enableJava [
"-DWITH_JAVA=1"
];
doInstallCheck = true;
installCheckTarget = "test";
2013-05-30 06:11:43 -07:00
meta = with lib; {
homepage = "https://libjpeg-turbo.org/";
description = "A faster (using SIMD) libjpeg implementation";
license = licenses.ijg; # and some parts under other BSD-style licenses
2020-04-04 12:32:30 -07:00
maintainers = with maintainers; [ vcunat colemickens ];
platforms = platforms.all;
};
}