tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
add devede DVD creator gui
Brandon Dimcheff
11 years ago
d76a4249
0669f7c9
+32
2 changed files
expand all
collapse all
unified
split
pkgs
applications
video
devede
default.nix
top-level
all-packages.nix
+30
pkgs/applications/video/devede/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ pkgs, stdenv, fetchurl, pythonPackages, buildPythonPackage, pygtk, ffmpeg, mplayer, vcdimager, cdrkit, dvdauthor }:
2
+
3
+
let
4
+
inherit (pythonPackages) dbus;
5
+
6
+
in buildPythonPackage rec {
7
+
name = "devede-3.23.0";
8
+
namePrefix = "";
9
+
10
+
src = fetchurl {
11
+
url = "http://www.rastersoft.com/descargas/${name}.tar.bz2";
12
+
sha256 = "9e217ca46f5f275cb0c3cadbe8c830fa1fde774c004bd95a343d1255be6f25e1";
13
+
};
14
+
15
+
buildInputs = [ ffmpeg ];
16
+
17
+
pythonPath = [ pygtk dbus ffmpeg mplayer dvdauthor vcdimager cdrkit ];
18
+
19
+
postPatch = ''
20
+
substituteInPlace devede --replace "/usr/share/devede" "$out/share/devede"
21
+
22
+
'';
23
+
24
+
meta = with stdenv.lib; {
25
+
description = "DVD Creator for Linux";
26
+
homepage = http://www.rastersoft.com/programas/devede.html;
27
+
license = licenses.gpl3;
28
+
maintainers = [ maintainers.bdimcheff ];
29
+
};
30
+
}
+2
pkgs/top-level/all-packages.nix
···
9369
9370
dunst = callPackage ../applications/misc/dunst { };
9371
0
0
9372
dvb_apps = callPackage ../applications/video/dvb-apps { };
9373
9374
dvdauthor = callPackage ../applications/video/dvdauthor { };
···
9369
9370
dunst = callPackage ../applications/misc/dunst { };
9371
9372
+
devede = callPackage ../applications/video/devede { };
9373
+
9374
dvb_apps = callPackage ../applications/video/dvb-apps { };
9375
9376
dvdauthor = callPackage ../applications/video/dvdauthor { };