summary refs log tree commit diff
path: root/pkgs/tools/graphics/pngout/default.nix
blob: 33a62478a4b6bd35c3df16512ddde10fdab20db7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{stdenv, fetchurl}:

let
  folder = if stdenv.hostPlatform.system == "i686-linux" then "i686"
  else if stdenv.hostPlatform.system == "x86_64-linux" then "x86_64"
  else throw "Unsupported system: ${stdenv.hostPlatform.system}";
in
stdenv.mkDerivation {
  name = "pngout-20150319";

  src = fetchurl {
    url = "http://static.jonof.id.au/dl/kenutils/pngout-20150319-linux.tar.gz";
    sha256 = "0iwv941hgs2g7ljpx48fxs24a70m2whrwarkrb77jkfcd309x2h7";
  };

  installPhase = ''
    mkdir -p $out/bin
    cp ${folder}/pngout $out/bin
    
    ${if stdenv.hostPlatform.system == "i686-linux" then ''
        patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux.so.2 $out/bin/pngout
      '' else if stdenv.hostPlatform.system == "x86_64-linux" then ''
        patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux-x86-64.so.2 $out/bin/pngout
      '' else ""}
  '';

  meta = {
    description = "A tool that aggressively optimizes the sizes of PNG images";
    license = stdenv.lib.licenses.unfree;
    homepage = "http://advsys.net/ken/utils.htm";
    maintainers = [ stdenv.lib.maintainers.sander ];
  };
}