Adding GraphicsMagick
svn path=/nixpkgs/trunk/; revision=20383
This commit is contained in:
parent
c2cbd65668
commit
aa38df2611
25
pkgs/applications/graphics/graphicsmagick/default.nix
Normal file
25
pkgs/applications/graphics/graphicsmagick/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{stdenv, fetchurl, bzip2, freetype, graphviz, ghostscript
|
||||
, libjpeg, libpng, libtiff, libxml2, zlib, libtool
|
||||
, libX11}:
|
||||
|
||||
let version = "1.3.11"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "graphicsmagick-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/graphicsmagick/GraphicsMagick-${version}.tar.bz2";
|
||||
sha256 = "184grcvxa5w0ghiv8zf2vdva0kgp3njf20k3h6lbylspjgd3zhxg";
|
||||
};
|
||||
|
||||
buildInputs =
|
||||
[ bzip2 freetype ghostscript graphviz libjpeg libpng libtiff libX11 libxml2
|
||||
zlib libtool
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.graphicsmagick.org;
|
||||
description = "Swiss army knife of image processing";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
}
|
@ -7362,6 +7362,12 @@ let
|
||||
inherit libgphoto2 fuse pkgconfig glib;
|
||||
};
|
||||
|
||||
graphicsmagick = import ../applications/graphics/graphicsmagick {
|
||||
inherit stdenv fetchurl bzip2 freetype graphviz ghostscript
|
||||
libjpeg libpng libtiff libxml2 zlib libtool;
|
||||
inherit (xlibs) libX11;
|
||||
};
|
||||
|
||||
gtkpod = import ../applications/audio/gtkpod {
|
||||
inherit stdenv fetchurl pkgconfig libgpod gettext perl perlXMLParser flex libid3tag libvorbis;
|
||||
inherit (gtkLibs) gtk glib;
|
||||
|
Loading…
Reference in New Issue
Block a user