libjpeg_original: add optional static builds

This commit is contained in:
Jaka Hudoklin 2014-04-01 01:55:32 +02:00
parent c3524a8dd6
commit 65cc76c44a

View File

@ -1,4 +1,6 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, static ? false }:
with stdenv.lib;
stdenv.mkDerivation {
name = "libjpeg-8d";
@ -8,6 +10,8 @@ stdenv.mkDerivation {
sha256 = "1cz0dy05mgxqdgjf52p54yxpyy95rgl30cnazdrfmw7hfca9n0h0";
};
configureFlags = optional static "--enable-static --disable-shared";
meta = {
homepage = http://www.ijg.org/;
description = "A library that implements the JPEG image file format";