summaryrefslogtreecommitdiffstats
path: root/pkgs/games/enigma
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2021-02-20 20:32:48 -0800
committerCole Helbling <cole.e.helbling@outlook.com>2021-02-20 21:01:18 -0800
commit27d72106cc73d20bb5c6261f528c46d72ff49d9f (patch)
tree32b1b2f18077df3f92381061e26cab8072cf6403 /pkgs/games/enigma
parent716b898cf5d3e1c99984e85a7fa653fc8338a0d5 (diff)
enigma: xdg_utils -> xdg-utils
Diffstat (limited to 'pkgs/games/enigma')
-rw-r--r--pkgs/games/enigma/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/enigma/default.nix b/pkgs/games/enigma/default.nix
index 1c623e36ad89..131bd00e1857 100644
--- a/pkgs/games/enigma/default.nix
+++ b/pkgs/games/enigma/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, makeWrapper, pkg-config, gettext, imagemagick, curl, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, xercesc, xdg_utils, hicolor-icon-theme }:
+{ lib, stdenv, fetchurl, makeWrapper, pkg-config, gettext, imagemagick, curl, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, xercesc, xdg-utils, hicolor-icon-theme }:
stdenv.mkDerivation rec {
pname = "enigma";
version = "1.30-alpha";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config gettext makeWrapper imagemagick ];
- buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf libpng xercesc curl xdg_utils ];
+ buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf libpng xercesc curl xdg-utils ];
# For some reason (might be related to the alpha status), some includes
# which are required by lib-src/enigma-core are not picked up by the
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
postInstall = ''
rm -r $out/include
- wrapProgram $out/bin/enigma --prefix PATH : "${lib.makeBinPath [ xdg_utils ]}"
+ wrapProgram $out/bin/enigma --prefix PATH : "${lib.makeBinPath [ xdg-utils ]}"
'';
meta = with lib; {