swfmill: add darwin support
This commit is contained in:
parent
64891e361b
commit
16a11b6be3
2 changed files with 5 additions and 2 deletions
|
@ -14,11 +14,14 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ libxslt freetype libpng libxml2 ];
|
||||
|
||||
# fatal error: 'libxml/xpath.h' file not found
|
||||
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-I${libxml2.dev}/include/libxml2";
|
||||
|
||||
meta = {
|
||||
description = "An xml2swf and swf2xml processor with import functionalities";
|
||||
homepage = "http://swfmill.org";
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
platforms = lib.platforms.unix;
|
||||
mainProgram = "swfmill";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -20202,7 +20202,7 @@ with pkgs;
|
|||
|
||||
c3c = callPackage ../development/compilers/c3c { };
|
||||
|
||||
swfmill = callPackage ../tools/video/swfmill { stdenv = gcc10StdenvCompat; };
|
||||
swfmill = callPackage ../tools/video/swfmill { };
|
||||
|
||||
swftools = callPackage ../tools/video/swftools {
|
||||
stdenv = gccStdenv;
|
||||
|
|
Loading…
Reference in a new issue