Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
72 lines
1.8 KiB
Nix
72 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
fetchFromGitHub,
|
|
unzip,
|
|
python3,
|
|
enableDefaultMusicPack ? true,
|
|
}:
|
|
|
|
let
|
|
pname = "endgame-singularity";
|
|
version = "1.1";
|
|
|
|
main_src = fetchFromGitHub {
|
|
owner = "singularity";
|
|
repo = "singularity";
|
|
tag = "v${version}";
|
|
hash = "sha256-wYXuhlGp7gisgN2iRXKTpe0Om2AA8u0eBwKHHIYuqbk=";
|
|
};
|
|
|
|
music_src = fetchurl {
|
|
url = "http://www.emhsoft.com/singularity/endgame-singularity-music-007.zip";
|
|
sha256 = "0vf2qaf66jh56728pq1zbnw50yckjz6pf6c6qw6dl7vk60kkqnpb";
|
|
};
|
|
in
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
format = "pyproject";
|
|
inherit pname version;
|
|
|
|
srcs = [ main_src ] ++ lib.optional enableDefaultMusicPack music_src;
|
|
sourceRoot = main_src.name;
|
|
|
|
nativeBuildInputs = [ unzip ]; # The music is zipped
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
pygame
|
|
numpy
|
|
polib
|
|
];
|
|
|
|
# Add the music
|
|
postInstall = lib.optionalString enableDefaultMusicPack ''
|
|
cp -R "../endgame-singularity-music-007" \
|
|
"$(echo $out/lib/python*/site-packages/singularity)/music"
|
|
# ↑ we cannot glob on [...]/music, it doesn't exist yet
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "http://www.emhsoft.com/singularity/";
|
|
description = "Simulation game about strong AI";
|
|
longDescription = ''
|
|
A simulation of a true AI. Go from computer to computer, pursued by the
|
|
entire world. Keep hidden, and you might have a chance
|
|
'';
|
|
# License details are in LICENSE.txt
|
|
license = with lib.licenses; [
|
|
gpl2Plus # most of the code, some translations
|
|
mit # recursive_fix_pickle, polib
|
|
cc-by-sa-30 # data and artwork, some translations
|
|
free # earth images from NASA, some fonts
|
|
cc0 # cick0.wav
|
|
];
|
|
mainProgram = "singularity";
|
|
maintainers = with lib.maintainers; [ fgaz ];
|
|
};
|
|
}
|