summary refs log tree commit diff
path: root/pkgs/tools/graphics/gifsicle/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/graphics/gifsicle/default.nix')
-rw-r--r--pkgs/tools/graphics/gifsicle/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/graphics/gifsicle/default.nix b/pkgs/tools/graphics/gifsicle/default.nix
new file mode 100644
index 000000000000..515858bd4390
--- /dev/null
+++ b/pkgs/tools/graphics/gifsicle/default.nix
@@ -0,0 +1,18 @@
+{ 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";
+  };
+}