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

47 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, nasm
, enableStatic ? stdenv.hostPlatform.isStatic
, enableShared ? !stdenv.hostPlatform.isStatic
}:
stdenv.mkDerivation rec {
2019-05-18 07:17:48 +01:00
pname = "libjpeg-turbo";
2020-11-28 10:48:48 +00:00
version = "2.0.6";
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
};
# 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;
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 ];
cmakeFlags = [
"-DENABLE_STATIC=${if enableStatic then "1" else "0"}"
2020-07-01 22:30:31 +01:00
"-DENABLE_SHARED=${if enableShared then "1" else "0"}"
];
doInstallCheck = true;
installCheckTarget = "test";
2013-05-30 14:11:43 +01: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 20:32:30 +01:00
maintainers = with maintainers; [ vcunat colemickens ];
platforms = platforms.all;
};
}