summary refs log tree commit diff
path: root/pkgs/applications/misc/avrdudess/default.nix
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/misc/avrdudess/default.nix
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/misc/avrdudess/default.nix')
-rw-r--r--pkgs/applications/misc/avrdudess/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/misc/avrdudess/default.nix b/pkgs/applications/misc/avrdudess/default.nix
index 696d69c701c..29469d9fff9 100644
--- a/pkgs/applications/misc/avrdudess/default.nix
+++ b/pkgs/applications/misc/avrdudess/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, runtimeShell, fetchurl, unzip, mono, avrdude, gtk2, xdg_utils }:
+{ lib, stdenv, runtimeShell, fetchurl, unzip, mono, avrdude, gtk2, xdg-utils }:
 
 stdenv.mkDerivation {
   name = "avrdudess-2.2.20140102";
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
     export LD_LIBRARY_PATH="${lib.makeLibraryPath [gtk2 mono]}"
     # We need PATH from user env for xdg-open to find its tools, which
     # typically depend on the currently running desktop environment.
-    export PATH="${lib.makeBinPath [ avrdude xdg_utils ]}:\$PATH"
+    export PATH="${lib.makeBinPath [ avrdude xdg-utils ]}:\$PATH"
 
     # avrdudess must have its resource files in its current working directory
     cd $out/avrdudess && exec ${mono}/bin/mono "$out/avrdudess/avrdudess.exe" "\$@"