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