add devede DVD creator gui

This commit is contained in:
Brandon Dimcheff 2014-12-21 20:43:33 -05:00
parent 0669f7c97b
commit d76a42494b
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ pkgs, stdenv, fetchurl, pythonPackages, buildPythonPackage, pygtk, ffmpeg, mplayer, vcdimager, cdrkit, dvdauthor }:
let
inherit (pythonPackages) dbus;
in buildPythonPackage rec {
name = "devede-3.23.0";
namePrefix = "";
src = fetchurl {
url = "http://www.rastersoft.com/descargas/${name}.tar.bz2";
sha256 = "9e217ca46f5f275cb0c3cadbe8c830fa1fde774c004bd95a343d1255be6f25e1";
};
buildInputs = [ ffmpeg ];
pythonPath = [ pygtk dbus ffmpeg mplayer dvdauthor vcdimager cdrkit ];
postPatch = ''
substituteInPlace devede --replace "/usr/share/devede" "$out/share/devede"
'';
meta = with stdenv.lib; {
description = "DVD Creator for Linux";
homepage = http://www.rastersoft.com/programas/devede.html;
license = licenses.gpl3;
maintainers = [ maintainers.bdimcheff ];
};
}

View File

@ -9369,6 +9369,8 @@ let
dunst = callPackage ../applications/misc/dunst { };
devede = callPackage ../applications/video/devede { };
dvb_apps = callPackage ../applications/video/dvb-apps { };
dvdauthor = callPackage ../applications/video/dvdauthor { };