diff options
author | Marius Bakke <marius@gnu.org> | 2022-11-27 16:23:11 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2022-11-27 21:19:51 +0100 |
commit | 42c59c784952458e257212c6bc5a5a82645eb9a4 (patch) | |
tree | 5922f6729da36c11b33ae63a31769e59f6765c71 /gnu/packages | |
parent | 9d6b475c7874f84780b83da9df1111acff1d6298 (diff) | |
download | guix-42c59c784952458e257212c6bc5a5a82645eb9a4.tar.gz guix-42c59c784952458e257212c6bc5a5a82645eb9a4.zip |
gnu: megaglest: Remove input labels.
* gnu/packages/games.scm (megaglest)[inputs]: Remove labels.
[arguments]: Use SEARCH-INPUT-DIRECTORY.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/games.scm | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index d7af172d53..9d79efbe94 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -6137,21 +6137,21 @@ starting a decryption sequence to reveal the original plaintext characters.") "1ffck3ii1wp5k3nn5p0ga06jgp7pzk4zw0xln3xim2w7qrxzdzh9")))) (build-system cmake-build-system) (inputs - `(("curl" ,curl) - ("fontconfig" ,fontconfig) - ("ftgl" ,ftgl) - ("glew" ,glew) - ("libjpeg-turbo" ,libjpeg-turbo) - ("megaglest-data" ,megaglest-data) - ("mesa" ,mesa) - ("miniupnpc" ,miniupnpc) - ("openal" ,openal) - ("libircclient" ,libircclient) - ("libpng" ,libpng) - ("libvorbis" ,libvorbis) - ("lua" ,lua) - ("sdl2" ,sdl2) - ("wxwidgets" ,wxwidgets))) + (list curl + fontconfig + ftgl + glew + libjpeg-turbo + megaglest-data + mesa + miniupnpc + openal + libircclient + libpng + libvorbis + lua + sdl2 + wxwidgets)) (native-inputs (list cppunit pkg-config)) (arguments @@ -6159,8 +6159,8 @@ starting a decryption sequence to reveal the original plaintext characters.") (list "-DCMAKE_CXX_FLAGS=-fcommon" "-DCMAKE_C_FLAGS=-fcommon" (string-append "-DCUSTOM_DATA_INSTALL_PATH=" - (assoc-ref %build-inputs "megaglest-data") - "/share/megaglest") + (search-input-directory %build-inputs + "share/megaglest")) "-DBUILD_MEGAGLEST_TESTS=ON") #:phases (modify-phases %standard-phases |