2014-08-26 16:14:09 -07:00
|
|
|
{ stdenv, fetchurl, nasm, autoreconfHook }:
|
2012-08-02 08:58:25 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-23 03:20:33 -07:00
|
|
|
name = "libjpeg-turbo-1.4.2";
|
2010-07-10 01:45:44 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-08-02 08:58:25 -07:00
|
|
|
url = "mirror://sourceforge/libjpeg-turbo/${name}.tar.gz";
|
2015-09-23 03:20:33 -07:00
|
|
|
sha256 = "0gi349hp1x7mb98s4mf66sb2xay2kjjxj9ihrriw0yiy0k9va6sj";
|
2010-07-10 01:45:44 -07:00
|
|
|
};
|
|
|
|
|
2013-06-26 05:46:53 -07:00
|
|
|
outputs = [ "dev" "out" "doc" "bin" ];
|
|
|
|
|
2014-08-29 23:27:43 -07:00
|
|
|
buildInputs = [ autoreconfHook nasm ];
|
2012-08-02 08:58:25 -07:00
|
|
|
|
2013-06-26 05:46:53 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2013-05-30 06:11:43 -07:00
|
|
|
doCheck = true;
|
|
|
|
checkTarget = "test";
|
|
|
|
|
2015-01-13 07:55:58 -08:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-10 01:45:44 -07:00
|
|
|
homepage = http://libjpeg-turbo.virtualgl.org/;
|
|
|
|
description = "A faster (using SIMD) libjpeg implementation";
|
2015-01-13 07:55:58 -08:00
|
|
|
license = licenses.ijg; # and some parts under other BSD-style licenses
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2015-05-18 04:42:49 -07:00
|
|
|
# upstream supports darwin (and others), but it doesn't build currently
|
|
|
|
platforms = platforms.all;
|
|
|
|
hydraPlatforms = platforms.linux;
|
2010-07-10 01:45:44 -07:00
|
|
|
};
|
|
|
|
}
|
2015-01-13 07:55:58 -08:00
|
|
|
|