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