nixpkgs/pkgs/games/naev/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

84 lines
1.3 KiB
Nix
Raw Normal View History

2023-02-23 14:23:28 +00:00
{ lib
, SDL2
, SDL2_image
, enet
, fetchFromGitHub
, freetype
, glpk
, intltool
, libpng
, libunibreak
, libvorbis
, libwebp
, libxml2
, luajit
, meson
, ninja
, openal
, openblas
, pcre2
, physfs
, pkg-config
, python3
, stdenv
, suitesparse
}:
2023-02-23 14:23:28 +00:00
stdenv.mkDerivation rec {
pname = "naev";
2023-07-13 10:17:33 +00:00
version = "0.10.6";
2023-02-23 14:23:28 +00:00
src = fetchFromGitHub {
owner = "naev";
repo = "naev";
rev = "v${version}";
2023-07-13 10:17:33 +00:00
sha256 = "sha256-nUQhpKl1aIsoJZtQGyHuwPhRBeb7nSs6+MfmTtX17mY=";
2023-02-23 14:23:28 +00:00
fetchSubmodules = true;
};
2023-02-23 14:23:28 +00:00
buildInputs = [
SDL2
SDL2_image
enet
freetype
glpk
libpng
libunibreak
libvorbis
libwebp
libxml2
luajit
openal
openblas
pcre2
physfs
suitesparse
];
2023-02-23 14:23:28 +00:00
nativeBuildInputs = [
(python3.withPackages (ps: with ps; [ pyyaml mutagen ]))
meson
ninja
pkg-config
intltool
2023-02-23 14:23:28 +00:00
];
2023-02-23 14:23:28 +00:00
mesonFlags = [
"-Ddocs_c=disabled"
"-Ddocs_lua=disabled"
"-Dluajit=enabled"
];
2023-02-23 14:23:28 +00:00
postPatch = ''
patchShebangs --build dat/outfits/bioship/generate.py utils/build/*.py utils/*.py
'';
meta = {
description = "2D action/rpg space game";
homepage = "http://www.naev.org";
2021-01-15 04:31:39 +00:00
license = lib.licenses.gpl3Plus;
2023-03-05 07:50:16 +00:00
maintainers = with lib.maintainers; [ ralismark ];
2021-01-15 04:31:39 +00:00
platforms = lib.platforms.linux;
};
}