mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 14:03:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
85 lines
1.3 KiB
Nix
85 lines
1.3 KiB
Nix
{ 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
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "naev";
|
|
version = "0.11.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "naev";
|
|
repo = "naev";
|
|
rev = "v${version}";
|
|
hash = "sha256-vdPkACgLGSTb9E/HZR5KoXn/fro0iHV7hX9kJim1j/M=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
buildInputs = [
|
|
SDL2
|
|
SDL2_image
|
|
enet
|
|
freetype
|
|
glpk
|
|
libpng
|
|
libunibreak
|
|
libvorbis
|
|
libwebp
|
|
libxml2
|
|
luajit
|
|
openal
|
|
openblas
|
|
pcre2
|
|
physfs
|
|
suitesparse
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
(python3.withPackages (ps: with ps; [ pyyaml mutagen ]))
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
intltool
|
|
];
|
|
|
|
mesonFlags = [
|
|
"-Ddocs_c=disabled"
|
|
"-Ddocs_lua=disabled"
|
|
"-Dluajit=enabled"
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs --build dat/outfits/bioship/generate.py utils/build/*.py utils/*.py
|
|
'';
|
|
|
|
meta = {
|
|
description = "2D action/rpg space game";
|
|
mainProgram = "naev";
|
|
homepage = "http://www.naev.org";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ ralismark ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|