1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

Add Ming, a C library to generate Flash files.

svn path=/nixpkgs/trunk/; revision=12786
This commit is contained in:
Ludovic Courtès 2008-09-02 13:43:53 +00:00
parent d7d4d48d9e
commit 2b119ba405
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ fetchurl, stdenv, flex, bison, freetype, zlib, libpng
, perl }:
stdenv.mkDerivation rec {
name = "ming-0.4.0.rc1";
src = fetchurl {
url = "mirror://sourceforge/ming/${name}.tar.bz2";
sha256 = "19brcqh4mqav5gsnmnb6j4gv9s0rmkg71657ck17xj8fdklq38y7";
};
# We don't currently build the Python, Perl, PHP, etc. bindings.
# Perl is needed for the test suite, though.
buildInputs = [ flex bison freetype zlib libpng perl ];
doCheck = true;
meta = {
description = "Ming, a library for generating Flash `.swf' files";
longDescription = ''
Ming is a library for generating Macromedia Flash files (.swf),
written in C, and includes useful utilities for working with
.swf files. It has wrappers that allow it to be used in C++,
PHP, Python, Ruby, and Perl.
'';
homepage = http://www.libming.org/;
license = "LGPLv2+";
};
}

View file

@ -3354,6 +3354,10 @@ let
mesaSrc = mesa.src;
};
ming = import ../development/libraries/ming {
inherit fetchurl stdenv flex bison freetype zlib libpng perl;
};
mpeg2dec = import ../development/libraries/mpeg2dec {
inherit fetchurl stdenv;
};