2014-12-13 19:12:10 +01:00
|
|
|
{ stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng, zlib, pkgconfig
|
|
|
|
, flex, bison }:
|
2010-07-28 13:55:54 +02:00
|
|
|
|
2012-11-06 09:21:34 +01:00
|
|
|
stdenv.mkDerivation rec{
|
|
|
|
name = "dvdauthor-0.7.1";
|
2009-01-14 17:23:06 +01:00
|
|
|
|
2010-07-28 13:55:54 +02:00
|
|
|
src = fetchurl {
|
2012-11-06 09:21:34 +01:00
|
|
|
url = "mirror://sourceforge/dvdauthor/${name}.tar.gz";
|
|
|
|
sha256 = "1s8zqlim0s3hk5sbdsilip3qqh0yv05l1jwx49d9rsy614dv27sh";
|
2009-01-14 17:23:06 +01:00
|
|
|
};
|
|
|
|
|
2014-12-13 19:12:10 +01:00
|
|
|
buildInputs = [ libpng freetype libdvdread libxml2 zlib fribidi imagemagick flex bison];
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-04-22 02:25:20 +02:00
|
|
|
|
2014-12-13 19:12:10 +01:00
|
|
|
patches = [
|
|
|
|
./dvdauthor-0.7.1-automake-1.13.patch
|
|
|
|
./dvdauthor-0.7.1-mga-strndup.patch
|
|
|
|
./dvdauthor-imagemagick-0.7.0.patch
|
|
|
|
];
|
|
|
|
|
2015-05-27 21:56:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
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/;
|
2015-05-28 19:20:29 +02:00
|
|
|
license = licenses.gpl2;
|
2017-04-20 23:40:17 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2009-01-14 17:23:06 +01:00
|
|
|
};
|
|
|
|
}
|