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

42 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, nasm
, enableStatic ? stdenv.hostPlatform.isStatic
, enableShared ? !stdenv.hostPlatform.isStatic
}:
stdenv.mkDerivation rec {
2019-05-18 06:17:48 +00: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
};
patches =
stdenv.lib.optional (stdenv.hostPlatform.libc or null == "msvcrt")
2019-05-15 20:39:22 +00:00
./mingw-boolean.patch;
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 ];
cmakeFlags = [
"-DENABLE_STATIC=${if enableStatic then "1" else "0"}"
2020-07-01 21:30:31 +00:00
"-DENABLE_SHARED=${if enableShared then "1" else "0"}"
];
doInstallCheck = true;
installCheckTarget = "test";
2013-05-30 13:11:43 +00:00
meta = with stdenv.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 19:32:30 +00:00
maintainers = with maintainers; [ vcunat colemickens ];
platforms = platforms.all;
};
}