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

44 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, cmake, nasm, enableStatic ? false }:
stdenv.mkDerivation rec {
2019-05-17 23:17:48 -07:00
pname = "libjpeg-turbo";
2020-04-04 12:32:30 -07:00
version = "2.0.4";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
2020-04-04 12:32:30 -07:00
sha256 = "01ill8bgjyk582wipx7sh7gj2nidylpbzvwhx0wkcm6mxx3qbp9k";
2018-11-11 14:01:54 -08:00
};
patches =
[
# Fixes race in tests that causes "jpegtran-shared-icc" to fail
# https://github.com/libjpeg-turbo/libjpeg-turbo/pull/425
(fetchpatch {
url = "https://github.com/libjpeg-turbo/libjpeg-turbo/commit/a2291b252de1413a13db61b21863ae7aea0946f3.patch";
sha256 = "0nc5vcch5h52gpi07h08zf8br58q8x81q2hv871hrn0dinb53vym";
})
] ++
stdenv.lib.optional (stdenv.hostPlatform.libc or null == "msvcrt")
2019-05-15 13:39:22 -07:00
./mingw-boolean.patch;
outputs = [ "bin" "dev" "out" "man" "doc" ];
2013-06-26 05:46:53 -07:00
2018-11-11 14:01:54 -08:00
nativeBuildInputs = [ cmake nasm ];
cmakeFlags = [
"-DENABLE_STATIC=${if enableStatic then "1" else "0"}"
];
doInstallCheck = true;
installCheckTarget = "test";
2013-05-30 06:11:43 -07: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
2020-04-04 12:32:30 -07:00
maintainers = with maintainers; [ vcunat colemickens ];
platforms = platforms.all;
};
}