forked from mirrors/nixpkgs
add swfmill-0.3.2
This commit is contained in:
parent
76cc4e760b
commit
b839dcbd16
21
pkgs/tools/video/swfmill/default.nix
Normal file
21
pkgs/tools/video/swfmill/default.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue