python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / graphics / epeg / default.nix
blob942a6d63bd519608f4df2a4d57c06638d767af38
1 { lib, stdenv, fetchFromGitHub, pkg-config, libtool, autoconf, automake
2 , libjpeg, libexif
3 }:
5 stdenv.mkDerivation rec {
6   pname = "epeg";
7   version = "0.9.2";
9   src = fetchFromGitHub {
10     owner = "mattes";
11     repo = "epeg";
12     rev = "v${version}";
13     sha256 = "14bjl9v6zzac4df25gm3bkw3n0mza5iazazsi65gg3m6661x6c5g";
14   };
16   enableParallelBuilding = true;
18   nativeBuildInputs = [ pkg-config libtool autoconf automake ];
20   propagatedBuildInputs = [ libjpeg libexif ];
22   preConfigure = ''
23     ./autogen.sh
24   '';
26   meta = with lib; {
27     homepage = "https://github.com/mattes/epeg";
28     description = "Insanely fast JPEG/ JPG thumbnail scaling";
29     platforms = platforms.linux ++ platforms.darwin;
30     license = {
31       url = "https://github.com/mattes/epeg#license";
32     };
33     maintainers = with maintainers; [ nh2 ];
34   };