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

36 lines
939 B
Nix
Raw Normal View History

{ stdenv, fetchurl, cmake, nasm, enableStatic ? false }:
stdenv.mkDerivation rec {
2019-05-18 07:17:48 +01:00
pname = "libjpeg-turbo";
2019-09-05 01:16:52 +01:00
version = "2.0.3";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
2019-09-05 01:16:52 +01:00
sha256 = "1ds16bnj17v6hzd43w8pzijz3imd9am4hw75ir0fxm240m8dwij2";
2018-11-11 22:01:54 +00:00
};
patches =
stdenv.lib.optional (stdenv.hostPlatform.libc or null == "msvcrt")
2019-05-15 21:39:22 +01:00
./mingw-boolean.patch;
outputs = [ "bin" "dev" "out" "man" "doc" ];
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"}"
];
doInstallCheck = true;
installCheckTarget = "test";
2013-05-30 14:11:43 +01:00
meta = with stdenv.lib; {
homepage = http://libjpeg-turbo.virtualgl.org/;
description = "A faster (using SIMD) libjpeg implementation";
license = licenses.ijg; # and some parts under other BSD-style licenses
maintainers = [ maintainers.vcunat ];
platforms = platforms.all;
};
}