biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / video / dvdauthor / default.nix
blob721368ae390ae6148b0433f3724edc84e71da216
1 { lib
2 , stdenv
3 , fetchurl
4 , autoreconfHook
5 , libdvdread
6 , libxml2
7 , freetype
8 , fribidi
9 , libpng
10 , zlib
11 , pkg-config
12 , flex
13 , bison
16 stdenv.mkDerivation rec {
17   pname = "dvdauthor";
18   version = "0.7.2";
20   src = fetchurl {
21     url = "mirror://sourceforge/dvdauthor/dvdauthor-${version}.tar.gz";
22     hash = "sha256-MCCpLen3jrNvSLbyLVoAHEcQeCZjSnhaYt/NCA9hLrc=";
23   };
25   buildInputs = [ libpng freetype libdvdread libxml2 zlib fribidi flex bison ];
27   nativeBuildInputs = [
28     pkg-config
29     autoreconfHook
30   ];
32   meta = with lib; {
33     description = "Tools for generating DVD files to be played on standalone DVD players";
34     homepage = "https://dvdauthor.sourceforge.net/";
35     license = licenses.gpl2;
36     platforms = platforms.linux ++ platforms.darwin;
37   };