summary refs log tree commit diff
path: root/pkgs/tools/video/swftools/default.nix
blob: b185d8590930ed804764d7eec660fdf548ac563b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, freetype, libjpeg, libungif, zlib }:

with stdenv.lib;
stdenv.mkDerivation rec {
  name = "swftools-${version}";
  version = "0.9.2";

  src = fetchurl {
    url = "http://www.swftools.org/${name}.tar.gz";
    sha256 = "1w81dyi81019a6jmnm5z7fzarswng27lg1d4k4d5llxzqszr2s5z";
  };

  patches = [ ./swftools.patch ];

  buildInputs = [ freetype libjpeg libungif zlib ];

  meta = {
    description = "Collection of SWF manipulation and creation utilities";
    homepage = http://www.swftools.org/about.html;
    license = licenses.gpl2;
    maintainers = [ maintainers.koral ];
  };
}