added dvdauthor
svn path=/nixpkgs/trunk/; revision=13766
This commit is contained in:
parent
3a1e0aa114
commit
91f9300897
17
pkgs/applications/video/dvdauthor/default.nix
Normal file
17
pkgs/applications/video/dvdauthor/default.nix
Normal 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"];
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user