GNU Gnash 0.8.2, Agg 2.5.

svn path=/nixpkgs/trunk/; revision=11030
This commit is contained in:
Ludovic Courtès
2008-03-10 09:48:17 +00:00
parent d2c93e47a7
commit 7c7639a888
4 changed files with 40 additions and 17 deletions

View File

@@ -1,11 +1,12 @@
{stdenv, fetchurl, autoconf, automake, libtool, pkgconfig}:
{ stdenv, fetchurl, autoconf, automake, libtool, pkgconfig
, freetype, SDL }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
name = "agg-2.5";
src = fetchurl {
url = http://www.antigrain.com/agg-2.5.tar.gz;
url = "http://www.antigrain.com/${name}.tar.gz";
sha256 = "07wii4i824vy9qsvjsgqxppgqmfdxq0xa87i5yk53fijriadq7mb";
};
buildInputs = [autoconf automake libtool pkgconfig];
buildInputs = [autoconf automake libtool pkgconfig freetype SDL];
preConfigure = "sh autogen.sh";
}