added gifscile (creating and reading gif animations)
svn path=/nixpkgs/trunk/; revision=12176
This commit is contained in:
parent
203f2f8809
commit
ca0a14c0f8
17
pkgs/tools/graphics/gifscile/default.nix
Normal file
17
pkgs/tools/graphics/gifscile/default.nix
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
args:
|
||||||
|
args.stdenv.mkDerivation {
|
||||||
|
name = "gifsicle-1.52";
|
||||||
|
|
||||||
|
src = args.fetchurl {
|
||||||
|
url = http://www.lcdf.org/gifsicle/gifsicle-1.52.tar.gz;
|
||||||
|
sha256 = "1fp47grvk46bkj22zixrhgpgs3qbkmijicf3wkjk4y8fsx0idbgk";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs =(with args; [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";
|
||||||
|
};
|
||||||
|
}
|
@ -612,6 +612,11 @@ let pkgs = rec {
|
|||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
gifsicle = import ../tools/graphics/gifscile {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
inherit (xlibs) xproto libXt libX11;
|
||||||
|
};
|
||||||
|
|
||||||
glxinfo = assert mesaSupported; import ../tools/graphics/glxinfo {
|
glxinfo = assert mesaSupported; import ../tools/graphics/glxinfo {
|
||||||
inherit fetchurl stdenv x11 mesa;
|
inherit fetchurl stdenv x11 mesa;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user