summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-04-23 04:13:43 +0300
committerNikolay Amiantov <ab@fmap.me>2016-04-23 04:13:43 +0300
commit2a51c3c12acc9b7199d2b38c880c5072f7928505 (patch)
tree7a24cdb74fa301264c474e6c859c0189945b9822 /pkgs/tools
parent666cba9ad96caaf79833474034eac4a18614c23e (diff)
downloadnixpkgs-2a51c3c12acc9b7199d2b38c880c5072f7928505.tar
nixpkgs-2a51c3c12acc9b7199d2b38c880c5072f7928505.tar.gz
nixpkgs-2a51c3c12acc9b7199d2b38c880c5072f7928505.tar.bz2
nixpkgs-2a51c3c12acc9b7199d2b38c880c5072f7928505.tar.lz
nixpkgs-2a51c3c12acc9b7199d2b38c880c5072f7928505.tar.xz
nixpkgs-2a51c3c12acc9b7199d2b38c880c5072f7928505.tar.zst
nixpkgs-2a51c3c12acc9b7199d2b38c880c5072f7928505.zip
brasero: use libburn and libisofs instead of some packages
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/cd-dvd/brasero/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/cd-dvd/brasero/default.nix b/pkgs/tools/cd-dvd/brasero/default.nix
index ff910ad2e49..e903601c81d 100644
--- a/pkgs/tools/cd-dvd/brasero/default.nix
+++ b/pkgs/tools/cd-dvd/brasero/default.nix
@@ -1,13 +1,13 @@
 { stdenv, lib, fetchurl, pkgconfig, gtk3, itstool, gst_all_1, libxml2, libnotify
-, libcanberra_gtk3, intltool, makeWrapper, dvdauthor, cdrdao
-, dvdplusrwtools, cdrtools, vcdimager, wrapGAppsHook }:
+, libcanberra_gtk3, intltool, makeWrapper, dvdauthor, libburn, libisofs
+, vcdimager, wrapGAppsHook }:
 
 # libdvdcss is "too old" (in fast "too new"), see https://bugs.launchpad.net/ubuntu/+source/brasero/+bug/611590
 
 let
   major = "3.12";
   minor = "1";
-  binpath = lib.makeBinPath [ dvdauthor cdrdao dvdplusrwtools vcdimager cdrtools ];
+  binpath = lib.makeBinPath [ dvdauthor vcdimager ];
 
 in stdenv.mkDerivation rec {
   version = "${major}.${minor}";
@@ -20,7 +20,7 @@ in stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig itstool intltool wrapGAppsHook ];
 
-  buildInputs = [ gtk3 libxml2 libnotify libcanberra_gtk3
+  buildInputs = [ gtk3 libxml2 libnotify libcanberra_gtk3 libburn libisofs
                   gst_all_1.gstreamer gst_all_1.gst-plugins-base
                   gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad
                   gst_all_1.gst-plugins-ugly gst_all_1.gst-libav ];