2012-11-06 09:21:34 +01:00
|
|
|
{ stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng, zlib, pkgconfig }:
|
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
|
|
|
};
|
|
|
|
|
2012-11-06 09:21:34 +01:00
|
|
|
buildInputs = [ libpng freetype libdvdread libxml2 zlib fribidi imagemagick ];
|
|
|
|
buildNativeInputs = [ pkgconfig ];
|
2012-04-22 02:25:20 +02:00
|
|
|
|
2012-11-06 09:21:34 +01:00
|
|
|
meta = {
|
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/;
|
|
|
|
license = ["GPLv2"];
|
2009-01-14 17:23:06 +01:00
|
|
|
};
|
|
|
|
}
|