2c2f1e37d4
It is deprecated and will be removed after 18.09.
34 lines
1.1 KiB
Nix
34 lines
1.1 KiB
Nix
{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-20130221";
|
|
|
|
src = fetchurl {
|
|
url = http://static.jonof.id.au/dl/kenutils/pngout-20130221-linux.tar.gz;
|
|
sha256 = "1qdzmgx7si9zr7wjdj8fgf5dqmmqw4zg19ypg0pdz7521ns5xbvi";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|