libjpeg-turbo: Add flag to build static libraries as well

This commit is contained in:
Niklas Hambüchen 2019-11-03 18:35:55 +01:00
parent dcd89d2c80
commit 83dbd38821

@ -1,4 +1,4 @@
{ stdenv, fetchurl, cmake, nasm }:
{ stdenv, fetchurl, cmake, nasm, enableStatic ? false }:
stdenv.mkDerivation rec {
@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake nasm ];
cmakeFlags = [
"-DENABLE_STATIC=0"
"-DENABLE_STATIC=${if enableStatic then "1" else "0"}"
];
doInstallCheck = true;