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

29 lines
725 B
Nix
Raw Normal View History

2014-08-27 00:14:09 +01:00
{ stdenv, fetchurl, nasm, autoreconfHook }:
stdenv.mkDerivation rec {
name = "libjpeg-turbo-1.4.0";
src = fetchurl {
url = "mirror://sourceforge/libjpeg-turbo/${name}.tar.gz";
sha256 = "1vmv5ciqq98gi2ishqbvlx9hsk7sl06lr6xkcgw480jiddadhfnr";
};
2013-06-26 13:46:53 +01:00
outputs = [ "dev" "out" "doc" "bin" ];
2014-08-30 07:27:43 +01:00
buildInputs = [ autoreconfHook nasm ];
2013-06-26 13:46:53 +01:00
enableParallelBuilding = true;
2013-05-30 14:11:43 +01:00
doCheck = true;
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
platforms = platforms.all;
maintainers = [ maintainers.vcunat ];
};
}