summary refs log tree commit diff
path: root/pkgs/applications/video/dvdauthor/default.nix
blob: 2e115806315c1e80afedc688c287455969ed43a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, imagemagick, libdvdread, libxml2, freetype, fribidi, libpng, zlib, pkgconfig }:

stdenv.mkDerivation rec{
  name = "dvdauthor-0.7.1";

  src = fetchurl {
    url = "mirror://sourceforge/dvdauthor/${name}.tar.gz";
    sha256 = "1s8zqlim0s3hk5sbdsilip3qqh0yv05l1jwx49d9rsy614dv27sh";
  };

  buildInputs = [ libpng freetype libdvdread libxml2 zlib fribidi imagemagick ];
  buildNativeInputs = [ pkgconfig ];

  meta = {
    description = "Tools for generating DVD files to be played on standalone DVD players";
    homepage = http://dvdauthor.sourceforge.net/;
    license = ["GPLv2"];
  };
}