summary refs log tree commit diff
path: root/pkgs/tools/video/swfmill/default.nix
blob: b48cc7cddcca1c7e1e4a0d591c6f6568e7706b8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl
, pkgconfig, libxslt, freetype, libpng, libxml2
}:

stdenv.mkDerivation rec {
  name = "swfmill-0.3.2";

  src = fetchurl {
    url = "http://swfmill.org/releases/${name}.tar.gz";
    sha256 = "077agf62q0xz95dxj4cq9avcqwin94vldrpb80iqwjskvkwpz9gy";
  };

  buildInputs = [ pkgconfig libxslt freetype libpng libxml2 ];

  meta = {
    description = "An xml2swf and swf2xml processor with import functionalities";
    homepage = "http://swfmill.org";
    license = "GPLv2";
  };
}