2014-12-13 18:12:10 +00:00
|
|
|
{ stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng, zlib, pkgconfig
|
|
|
|
, flex, bison }:
|
2010-07-28 12:55:54 +01:00
|
|
|
|
2012-11-06 08:21:34 +00:00
|
|
|
stdenv.mkDerivation rec{
|
|
|
|
name = "dvdauthor-0.7.1";
|
2009-01-14 16:23:06 +00:00
|
|
|
|
2010-07-28 12:55:54 +01:00
|
|
|
src = fetchurl {
|
2012-11-06 08:21:34 +00:00
|
|
|
url = "mirror://sourceforge/dvdauthor/${name}.tar.gz";
|
|
|
|
sha256 = "1s8zqlim0s3hk5sbdsilip3qqh0yv05l1jwx49d9rsy614dv27sh";
|
2009-01-14 16:23:06 +00:00
|
|
|
};
|
|
|
|
|
2014-12-13 18:12:10 +00:00
|
|
|
buildInputs = [ libpng freetype libdvdread libxml2 zlib fribidi imagemagick flex bison];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2012-04-22 01:25:20 +01:00
|
|
|
|
2014-12-13 18:12:10 +00: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 20:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "Tools for generating DVD files to be played on standalone DVD players";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://dvdauthor.sourceforge.net/";
|
2015-05-28 18:20:29 +01:00
|
|
|
license = licenses.gpl2;
|
2017-04-20 22:40:17 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2009-01-14 16:23:06 +00:00
|
|
|
};
|
|
|
|
}
|