nixpkgs/pkgs/tools/graphics/gifsicle/default.nix
Eelco Dolstra 749b8607ca * More cleanup.
svn path=/nixpkgs/trunk/; revision=22795
2010-07-28 15:35:01 +00:00

19 lines
497 B
Nix

{ stdenv, fetchurl, xproto, libXt, libX11 }:
stdenv.mkDerivation {
name = "gifsicle-1.52";
src = fetchurl {
url = http://www.lcdf.org/gifsicle/gifsicle-1.52.tar.gz;
sha256 = "1fp47grvk46bkj22zixrhgpgs3qbkmijicf3wkjk4y8fsx0idbgk";
};
buildInputs = [ xproto libXt libX11 ];
meta = {
description = "Command-line tool for creating, editing, and getting information about GIF images and animations";
homepage = http://www.lcdf.org/gifsicle/;
license = "GPL2";
};
}