python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / graphics / apngasm / 2.nix
blob0313115ddfa8fbb8efd7c742d3986d1a64f20c93
1 { lib, stdenv, fetchzip, libpng, zlib, zopfli }:
3 stdenv.mkDerivation rec {
4   pname = "apngasm";
5   version = "2.91";
7   src = fetchzip {
8     url = "mirror://sourceforge/${pname}/${pname}-${version}-src.zip";
9     stripRoot = false;
10     sha256 = "0qhljqql159xkn1l83vz0q8wvzr7rjz4jnhiy0zn36pgvacg0zn1";
11   };
13   buildInputs = [ libpng zlib zopfli ];
15   postPatch = ''
16     rm -rf libpng zlib zopfli
17   '';
19   NIX_CFLAGS_LINK = "-lzopfli";
21   installPhase = ''
22     install -Dt $out/bin apngasm
23   '';
25   enableParallelBuilding = true;
27   meta = with lib; {
28     description = "Create highly optimized Animated PNG files from PNG/TGA images";
29     homepage = "http://apngasm.sourceforge.net/";
30     license = licenses.zlib;
31     maintainers = with maintainers; [ orivej ];
32     platforms = platforms.linux;
33   };