about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/video/dvdauthor/default.nix
blob: daf785b7139faf8fb617cb788d177a32f3ab3f63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib
, stdenv
, fetchurl
, imagemagick
, libdvdread
, libxml2
, freetype
, fribidi
, libpng
, zlib
, pkg-config
, flex
, bison
}:

stdenv.mkDerivation rec {
  pname = "dvdauthor";
  version = "0.7.1";

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

  buildInputs = [ libpng freetype libdvdread libxml2 zlib fribidi imagemagick flex bison ];
  nativeBuildInputs = [ pkg-config ];

  patches = [
    ./dvdauthor-0.7.1-automake-1.13.patch
    ./dvdauthor-0.7.1-mga-strndup.patch
    ./dvdauthor-imagemagick-0.7.0.patch
  ];

  meta = with lib; {
    description = "Tools for generating DVD files to be played on standalone DVD players";
    homepage = "https://dvdauthor.sourceforge.net/";
    license = licenses.gpl2;
    platforms = platforms.linux ++ platforms.darwin;
  };
}