biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / video / swfmill / default.nix
blobe7e28c09a2d8b2dba37fa16975b5da7439086617
1 { lib, stdenv, fetchurl
2 , pkg-config, libxslt, freetype, libpng, libxml2
3 }:
5 stdenv.mkDerivation rec {
6   pname = "swfmill";
7   version = "0.3.6";
9   src = fetchurl {
10     url = "http://swfmill.org/releases/swfmill-${version}.tar.gz";
11     sha256 = "sha256-2yT2OWOVf67AK7FLi2HNr3CWd0+M/eudNXPi4ZIxVI4=";
12   };
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";
20   meta = {
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";
26   };