1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/graphics/pngcrush/default.nix

25 lines
571 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libpng }:
stdenv.mkDerivation rec {
2014-02-16 14:48:06 +00:00
name = "pngcrush-1.7.71";
src = fetchurl {
url = "mirror://sourceforge/pmt/${name}-nolib.tar.xz";
2014-02-16 14:48:06 +00:00
sha256 = "095al1l86h55aiig3y1aqlwkxcwwf215lq3f29z1hdgz4a0sbcyd";
};
configurePhase = ''
sed -i s,/usr,$out, Makefile
'';
buildInputs = [ libpng ];
meta = {
homepage = http://pmt.sourceforge.net/pngcrush;
description = "A PNG optimizer";
license = "free";
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
};
}