add swfmill-0.3.2

This commit is contained in:
Song Wenwu 2013-02-05 11:36:18 +08:00
parent 76cc4e760b
commit b839dcbd16
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,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";
};
}

View File

@ -3324,6 +3324,8 @@ let
swigWithJava = swig;
swfmill = callPackage ../tools/video/swfmill { };
swftools = callPackage ../tools/video/swftools { };
texinfo49 = callPackage ../development/tools/misc/texinfo/4.9.nix { };