2012-04-22 02:25:20 +02:00
|
|
|
{ stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng, zlib }:
|
2010-07-28 13:55:54 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2012-04-22 02:25:20 +02:00
|
|
|
name = "dvdauthor-0.7.0";
|
2009-01-14 17:23:06 +01:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
src = fetchurl {
|
2012-04-22 02:25:20 +02:00
|
|
|
url = mirror://sourceforge/dvdauthor/dvdauthor-0.7.0.tar.gz;
|
|
|
|
sha256 = "1l1l5zya7lirwa1783pa7h22wrfcq8hibbf5kpx8z8zbk5xsz9mf";
|
2009-01-14 17:23:06 +01:00
|
|
|
};
|
|
|
|
|
2012-04-22 02:25:20 +02:00
|
|
|
buildInputs = [ imagemagick libdvdread libxml2 freetype fribidi libpng zlib ];
|
|
|
|
|
|
|
|
# Does not build against recent versions of libpng without patch.
|
|
|
|
patches = [ ./build-against-libpng15.patch ];
|
2009-01-14 17:23:06 +01:00
|
|
|
|
|
|
|
meta = {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Tools for generating DVD files to be played on standalone DVD players";
|
|
|
|
homepage = http://dvdauthor.sourceforge.net/;
|
|
|
|
license = ["GPLv2"];
|
2009-01-14 17:23:06 +01:00
|
|
|
};
|
|
|
|
}
|