tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
enigma: xdg_utils -> xdg-utils
helbling.dev
5 years ago
27d72106
716b898c
+3
-3
1 changed file
expand all
collapse all
unified
split
pkgs
games
enigma
default.nix
+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 }:
2
stdenv.mkDerivation rec {
3
pname = "enigma";
4
version = "1.30-alpha";
···
9
};
10
11
nativeBuildInputs = [ pkg-config gettext makeWrapper imagemagick ];
12
-
buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf libpng xercesc curl xdg_utils ];
13
14
# For some reason (might be related to the alpha status), some includes
15
# which are required by lib-src/enigma-core are not picked up by the
···
18
19
postInstall = ''
20
rm -r $out/include
21
-
wrapProgram $out/bin/enigma --prefix PATH : "${lib.makeBinPath [ xdg_utils ]}"
22
'';
23
24
meta = with lib; {
···
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
stdenv.mkDerivation rec {
3
pname = "enigma";
4
version = "1.30-alpha";
···
9
};
10
11
nativeBuildInputs = [ pkg-config gettext makeWrapper imagemagick ];
12
+
buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf libpng xercesc curl xdg-utils ];
13
14
# For some reason (might be related to the alpha status), some includes
15
# which are required by lib-src/enigma-core are not picked up by the
···
18
19
postInstall = ''
20
rm -r $out/include
21
+
wrapProgram $out/bin/enigma --prefix PATH : "${lib.makeBinPath [ xdg-utils ]}"
22
'';
23
24
meta = with lib; {