python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / libimagequant / default.nix
blob5f4d500758956646ce72ff37d5da71b60829d116
1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
4   pname = "libimagequant";
5   version = "2.17.0";
7   src = fetchFromGitHub {
8     owner = "ImageOptim";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-ZoBCZsoUO66X4sDbMO89g4IX5+jqGMLGR7aC2UwD2tE=";
12   };
14   preConfigure = ''
15     patchShebangs ./configure
16   '';
18   configureFlags = lib.optionals (!stdenv.hostPlatform.isx86) [ "--disable-sse" ];
20   meta = with lib; {
21     homepage = "https://pngquant.org/lib/";
22     description = "Image quantization library";
23     longDescription = "Small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images.";
24     license = licenses.gpl3Plus;
25     platforms = platforms.unix;
26     maintainers = with maintainers; [ ma9e marsam ];
27   };