about summary refs log tree commit diff
path: root/pkgs/applications/video/bombono
diff options
context:
space:
mode:
authorGuillaume Girol <symphorien+git@xlumurb.eu>2021-04-30 17:30:27 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-04-30 23:04:29 -0700
commitfcc8230147ae36f183b27e32230e61ac532cc030 (patch)
tree8ddfd2128e8b8701680dd58a9ffde421b7e40f62 /pkgs/applications/video/bombono
parentaf4d1fae3f088eab84b760215e324be1977cd423 (diff)
bombono: update ffmpeg, fix iso generation
Diffstat (limited to 'pkgs/applications/video/bombono')
-rw-r--r--pkgs/applications/video/bombono/default.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/applications/video/bombono/default.nix b/pkgs/applications/video/bombono/default.nix
index 8d6df2c49045f..a6633904c2013 100644
--- a/pkgs/applications/video/bombono/default.nix
+++ b/pkgs/applications/video/bombono/default.nix
@@ -7,7 +7,8 @@
 , dvdauthor
 , dvdplusrwtools
 , enca
-, ffmpeg_3
+, cdrkit
+, ffmpeg
 , gettext
 , gtk2
 , gtkmm2
@@ -59,7 +60,7 @@ stdenv.mkDerivation rec {
     dvdauthor
     dvdplusrwtools
     enca
-    ffmpeg_3
+    ffmpeg
     gtk2
     gtkmm2
     libdvdread
@@ -71,6 +72,13 @@ stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
+  postInstall = ''
+    # fix iso authoring
+    install -Dt  $out/share/bombono/resources/scons_authoring tools/scripts/SConsTwin.py
+
+    wrapProgram $out/bin/bombono-dvd --prefix PATH : ${lib.makeBinPath [ ffmpeg dvdauthor cdrkit ]}
+  '';
+
   meta = with lib; {
     description = "a DVD authoring program for personal computers";
     homepage = "https://www.bombono.org/";