summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-02-01 15:05:09 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-02-01 15:05:09 +0700
commita6ac3eedbd197746dae3be74d3a605741ab44cb9 (patch)
tree6059fc005bcde08ac52232d351c06258369f053b /pkgs/applications/audio
parent9fdcac4b9baa1fb96a775ed3ca9dc7f2ce76c96e (diff)
downloadnixpkgs-a6ac3eedbd197746dae3be74d3a605741ab44cb9.tar
nixpkgs-a6ac3eedbd197746dae3be74d3a605741ab44cb9.tar.gz
nixpkgs-a6ac3eedbd197746dae3be74d3a605741ab44cb9.tar.bz2
nixpkgs-a6ac3eedbd197746dae3be74d3a605741ab44cb9.tar.lz
nixpkgs-a6ac3eedbd197746dae3be74d3a605741ab44cb9.tar.xz
nixpkgs-a6ac3eedbd197746dae3be74d3a605741ab44cb9.tar.zst
nixpkgs-a6ac3eedbd197746dae3be74d3a605741ab44cb9.zip
treewide: xdg_utils -> xdg-utils
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/bitwig-studio/bitwig-studio1.nix4
-rw-r--r--pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix4
-rw-r--r--pkgs/applications/audio/faust/faust2firefox.nix4
3 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio1.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio1.nix
index 97c27d4ad9a..fca3eaf223e 100644
--- a/pkgs/applications/audio/bitwig-studio/bitwig-studio1.nix
+++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio1.nix
@@ -3,7 +3,7 @@
 , libbsd, libjack2, libpng, ffmpeg_3
 , libxkbcommon
 , makeWrapper, pixman, autoPatchelfHook
-, xdg_utils, zenity, zlib }:
+, xdg-utils, zenity, zlib }:
 
 stdenv.mkDerivation rec {
   pname = "bitwig-studio";
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
   ];
 
   binPath = lib.makeBinPath [
-    xdg_utils zenity ffmpeg_3
+    xdg-utils zenity ffmpeg_3
   ];
 
   installPhase = ''
diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix
index 31086b3674d..2a12632494b 100644
--- a/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix
+++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix
@@ -1,7 +1,7 @@
 { stdenv, fetchurl, alsaLib, cairo, dpkg, freetype
 , gdk-pixbuf, glib, gtk3, lib, xorg
 , libglvnd, libjack2, ffmpeg_3
-, libxkbcommon, xdg_utils, zlib, pulseaudio
+, libxkbcommon, xdg-utils, zlib, pulseaudio
 , wrapGAppsHook, makeWrapper }:
 
 stdenv.mkDerivation rec {
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
   ];
 
   binPath = lib.makeBinPath [
-    xdg_utils ffmpeg_3
+    xdg-utils ffmpeg_3
   ];
 
   ldLibraryPath = lib.strings.makeLibraryPath buildInputs;
diff --git a/pkgs/applications/audio/faust/faust2firefox.nix b/pkgs/applications/audio/faust/faust2firefox.nix
index b2cc6f46457..c718aa06806 100644
--- a/pkgs/applications/audio/faust/faust2firefox.nix
+++ b/pkgs/applications/audio/faust/faust2firefox.nix
@@ -1,5 +1,5 @@
 { faust
-, xdg_utils
+, xdg-utils
 }:
 
 # This just runs faust2svg, then attempts to open a browser using
@@ -9,6 +9,6 @@ faust.wrap {
 
   baseName = "faust2firefox";
 
-  runtimeInputs = [ xdg_utils ];
+  runtimeInputs = [ xdg-utils ];
 
 }