nixpkgs/pkgs/tools/video/swfmill/default.nix

26 lines
644 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl
2021-01-17 03:51:22 +00:00
, pkg-config, libxslt, freetype, libpng, libxml2
2013-02-05 03:36:18 +00:00
}:
stdenv.mkDerivation rec {
2013-12-20 16:05:44 +00:00
name = "swfmill-0.3.3";
2013-02-05 03:36:18 +00:00
src = fetchurl {
url = "http://swfmill.org/releases/${name}.tar.gz";
2013-12-20 16:05:44 +00:00
sha256 = "15mcpql448vvgsbxs7wd0vdk1ln6rdcpnif6i2zjm5l4xng55s7r";
2013-02-05 03:36:18 +00:00
};
# Fixes build with GCC 6
NIX_CFLAGS_COMPILE = "-std=c++03";
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libxslt freetype libpng libxml2 ];
2013-02-05 03:36:18 +00:00
meta = {
description = "An xml2swf and swf2xml processor with import functionalities";
homepage = "http://swfmill.org";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
platforms = lib.platforms.linux;
2013-02-05 03:36:18 +00:00
};
}