2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng, zlib, pkg-config
|
2020-04-24 23:36:52 +00:00
|
|
|
, flex, bison }:
|
|
|
|
|
2020-06-18 07:06:33 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
name = "dvdauthor-0.7.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/dvdauthor/${name}.tar.gz";
|
|
|
|
sha256 = "1s8zqlim0s3hk5sbdsilip3qqh0yv05l1jwx49d9rsy614dv27sh";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libpng freetype libdvdread libxml2 zlib fribidi imagemagick flex bison];
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-04-24 23:36:52 +00: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-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Tools for generating DVD files to be played on standalone DVD players";
|
|
|
|
homepage = "http://dvdauthor.sourceforge.net/";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
|
|
};
|
|
|
|
}
|