1 { lib, stdenv, fetchurl
2 , pkg-config, libxslt, freetype, libpng, libxml2
5 stdenv.mkDerivation rec {
10 url = "http://swfmill.org/releases/swfmill-${version}.tar.gz";
11 sha256 = "sha256-2yT2OWOVf67AK7FLi2HNr3CWd0+M/eudNXPi4ZIxVI4=";
14 nativeBuildInputs = [ pkg-config ];
15 buildInputs = [ libxslt freetype libpng libxml2 ];
17 # fatal error: 'libxml/xpath.h' file not found
18 env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.hostPlatform.isDarwin "-I${libxml2.dev}/include/libxml2";
21 description = "Xml2swf and swf2xml processor with import functionalities";
22 homepage = "http://swfmill.org";
23 license = lib.licenses.gpl2Only;
24 platforms = lib.platforms.unix;
25 mainProgram = "swfmill";