mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
f8c4a98e8e
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
43 lines
1.3 KiB
Nix
43 lines
1.3 KiB
Nix
{ lib, mkDerivation, fetchFromGitLab, cmake, luajit
|
|
, SDL2, SDL2_image, SDL2_ttf, physfs, fetchpatch
|
|
, openal, libmodplug, libvorbis, solarus
|
|
, qtbase, qttools, glm }:
|
|
|
|
mkDerivation rec {
|
|
pname = "solarus-quest-editor";
|
|
version = "1.6.4";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "solarus-games";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1qbc2j9kalk7xqk9j27s7wnm5zawiyjs47xqkqphw683idmzmjzn";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://gitlab.com/solarus-games/solarus-quest-editor/-/commit/81d5c7f1602cf355684d70a5e3449fefccfc44b8.patch";
|
|
sha256 = "tVUxkkDp2PcOHGy4dGvUcYj9gF7k4LN21VuxohCw9NE=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ luajit SDL2 SDL2_image SDL2_ttf physfs openal
|
|
libmodplug libvorbis solarus qtbase qttools glm ];
|
|
|
|
meta = with lib; {
|
|
description = "Editor for the Zelda-like ARPG game engine, Solarus";
|
|
mainProgram = "solarus-quest-editor";
|
|
longDescription = ''
|
|
Solarus is a game engine for Zelda-like ARPG games written in lua.
|
|
Many full-fledged games have been writen for the engine.
|
|
Games can be created easily using the editor.
|
|
'';
|
|
homepage = "https://www.solarus-games.org";
|
|
license = licenses.gpl3;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
|
|
}
|