about summary refs log tree commit diff
path: root/pkgs/tools/graphics/gifscile/default.nix
blob: 31f7a4e45271d1e971f041cc6d7ef7f84c6e7e83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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";
  };
}