lol
1{ stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng, zlib, pkgconfig
2, flex, bison }:
3
4stdenv.mkDerivation rec{
5 name = "dvdauthor-0.7.1";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/dvdauthor/${name}.tar.gz";
9 sha256 = "1s8zqlim0s3hk5sbdsilip3qqh0yv05l1jwx49d9rsy614dv27sh";
10 };
11
12 buildInputs = [ libpng freetype libdvdread libxml2 zlib fribidi imagemagick flex bison];
13 nativeBuildInputs = [ pkgconfig ];
14
15 patches = [
16 ./dvdauthor-0.7.1-automake-1.13.patch
17 ./dvdauthor-0.7.1-mga-strndup.patch
18 ./dvdauthor-imagemagick-0.7.0.patch
19 ];
20
21 meta = with stdenv.lib; {
22 description = "Tools for generating DVD files to be played on standalone DVD players";
23 homepage = http://dvdauthor.sourceforge.net/;
24 license = licenses.gpl2;
25 };
26}