enigma: xdg_utils -> xdg-utils

+3 -3
+3 -3
pkgs/games/enigma/default.nix
··· 1 - { lib, stdenv, fetchurl, makeWrapper, pkg-config, gettext, imagemagick, curl, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, xercesc, xdg_utils, hicolor-icon-theme }: 1 + { lib, stdenv, fetchurl, makeWrapper, pkg-config, gettext, imagemagick, curl, libpng, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, xercesc, xdg-utils, hicolor-icon-theme }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "enigma"; 4 4 version = "1.30-alpha"; ··· 9 9 }; 10 10 11 11 nativeBuildInputs = [ pkg-config gettext makeWrapper imagemagick ]; 12 - buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf libpng xercesc curl xdg_utils ]; 12 + buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf libpng xercesc curl xdg-utils ]; 13 13 14 14 # For some reason (might be related to the alpha status), some includes 15 15 # which are required by lib-src/enigma-core are not picked up by the ··· 18 18 19 19 postInstall = '' 20 20 rm -r $out/include 21 - wrapProgram $out/bin/enigma --prefix PATH : "${lib.makeBinPath [ xdg_utils ]}" 21 + wrapProgram $out/bin/enigma --prefix PATH : "${lib.makeBinPath [ xdg-utils ]}" 22 22 ''; 23 23 24 24 meta = with lib; {