added dvdauthor

svn path=/nixpkgs/trunk/; revision=13766
This commit is contained in:
Marc Weber 2009-01-14 16:23:06 +00:00
parent 3a1e0aa114
commit 91f9300897
2 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,17 @@
args:
args.stdenv.mkDerivation {
name = "dvdauthor-0.6.14";
src = args.fetchurl {
url = mirror://sourceforge/dvdauthor/dvdauthor-0.6.14.tar.gz;
sha256 = "1x4flj3ja7m8rbc956a6ha3qk0k6zxd1y6sl826r6r7dyc91a6yx";
};
buildInputs =(with args; [imagemagick libdvdread libxml2 freetype fribidi libpng]);
meta = {
description = "Tools for generating DVD files to be played on standalone DVD players";
homepage = http://dvdauthor.sourceforge.net/;
license = ["GPLv2"];
};
}

View File

@ -7269,6 +7269,10 @@ let
inherit libpng libtiff;
};
dvdauthor = import ../applications/video/dvdauthor {
inherit fetchurl stdenv freetype libpng fribidi libxml2 libdvdread imagemagick;
};
dwm = import ../applications/window-managers/dwm {
inherit fetchurl stdenv;
inherit (xlibs) libX11 libXinerama;