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

38 lines
1 KiB
Nix
Raw Normal View History

2017-06-28 22:16:39 +02:00
{ stdenv, fetchurl, nasm
, hostPlatform
}:
stdenv.mkDerivation rec {
2016-12-03 12:12:48 +01:00
name = "libjpeg-turbo-${version}";
2017-12-16 17:25:39 +01:00
version = "1.5.3";
src = fetchurl {
url = "mirror://sourceforge/libjpeg-turbo/${name}.tar.gz";
2017-12-16 17:25:39 +01:00
sha256 = "08r5b5mywwrxv4axvq80dm31cklz81grczlzlxr2xqa6pgi90j5j";
2016-12-03 12:12:48 +01:00
}; # github releases still need autotools, surprisingly
patches =
2017-06-28 22:16:39 +02:00
stdenv.lib.optional (hostPlatform.libc or null == "msvcrt")
./mingw-boolean.patch;
outputs = [ "bin" "dev" "out" "man" "doc" ];
2013-06-26 14:46:53 +02:00
nativeBuildInputs = [ nasm ];
2013-06-26 14:46:53 +02:00
enableParallelBuilding = true;
doCheck = true; # not cross;
2013-05-30 15:11:43 +02:00
checkTarget = "test";
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 ];
# upstream supports darwin (and others), but it doesn't build currently
platforms = platforms.all;
hydraPlatforms = platforms.linux;
};
}