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:
parent
d7d4d48d9e
commit
2b119ba405
33
pkgs/development/libraries/ming/default.nix
Normal file
33
pkgs/development/libraries/ming/default.nix
Normal 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+";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue