f52263ced0
We can use use `stdenv.hostPlatform.isStatic` instead, and move the logic per package. The least opionated benefit of this is that it makes it much easier to replace packages with modified ones, as there is no longer any issue of overlay order. CC @FRidh @matthewbauer
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, cmake, nasm
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libjpeg-turbo";
|
|
version = "2.0.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "libjpeg-turbo";
|
|
repo = "libjpeg-turbo";
|
|
rev = version;
|
|
sha256 = "0njdxfmyk8smj8bbd6fs3lxjaq3lybivwgg16gpnbiyl984dpi9b";
|
|
};
|
|
|
|
patches =
|
|
stdenv.lib.optional (stdenv.hostPlatform.libc or null == "msvcrt")
|
|
./mingw-boolean.patch;
|
|
|
|
outputs = [ "bin" "dev" "out" "man" "doc" ];
|
|
|
|
nativeBuildInputs = [ cmake nasm ];
|
|
|
|
cmakeFlags = [
|
|
"-DENABLE_STATIC=${if enableStatic then "1" else "0"}"
|
|
"-DENABLE_SHARED=${if enableShared then "1" else "0"}"
|
|
];
|
|
|
|
doInstallCheck = true;
|
|
installCheckTarget = "test";
|
|
|
|
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
|
|
maintainers = with maintainers; [ vcunat colemickens ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|