mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Adding pngcrush
svn path=/nixpkgs/trunk/; revision=29411
This commit is contained in:
parent
77c5f8754c
commit
ed9d78b75f
23
pkgs/tools/graphics/pngcrush/default.nix
Normal file
23
pkgs/tools/graphics/pngcrush/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchurl, libpng, xz }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "pngcrush-1.7.17";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/pmt/${name}-nolib.tar.xz";
|
||||
sha256 = "0lh6wl0ci2y9b690n2zggc1mk21xj6iv378gvxk6gksgjkdw2rj2";
|
||||
};
|
||||
|
||||
configurePhase = ''
|
||||
sed -i s,/usr,$out, Makefile
|
||||
'';
|
||||
|
||||
buildInputs = [ xz libpng ];
|
||||
|
||||
meta = {
|
||||
homepage = http://pmt.sourceforge.net/pngcrush;
|
||||
description = "A PNG optimizer";
|
||||
license = "free";
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -1165,6 +1165,8 @@ let
|
||||
|
||||
plotutils = callPackage ../tools/graphics/plotutils { };
|
||||
|
||||
pngcrush = callPackage ../tools/graphics/pngcrush { };
|
||||
|
||||
pngnq = callPackage ../tools/graphics/pngnq { };
|
||||
|
||||
polipo = callPackage ../servers/polipo { };
|
||||
|
Loading…
Reference in New Issue
Block a user