about summary refs log tree commit diff
path: root/pkgs/tools/video/swfmill/default.nix
blob: 83e57b2a128c84ba3a9b0d45f4ed32696b5e4e76 (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.3";

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

  buildInputs = [ pkgconfig libxslt freetype libpng libxml2 ];

  meta = {
    description = "An xml2swf and swf2xml processor with import functionalities";
    homepage = "http://swfmill.org";
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
  };
}