snis: 2024-08-02 -> 1.0.2 (#385640)

This commit is contained in:
Peder Bergebakken Sundt
2025-03-11 22:11:13 +01:00
committed by GitHub
2 changed files with 16 additions and 9 deletions
-1
View File
@@ -702,7 +702,6 @@ TgpAlop/PjMQZ0tdVIyYM2EkFWdvWIgxg2TMsif9wTg= share/snis/sounds/slider-noise.ogg
D7nFmIgGwYBCdTFVxoUUnO26gyZVxO58GLxSpsOlgeA= share/snis/sounds/atlas_rocket_sample.ogg
wrQ8oxfGgi2CU94MxsvjH4XUvnHA2F+FqI7S4ikTTH0= share/snis/sounds/robot-remove-component.ogg
ErOZM6hPxAiQ0quCZ/qsdMx47hI9iaqrMTHWpeuM4Kk= share/snis/sounds/ui18.ogg
AbpHGcgLb+kRsJGnwFEktk7uzpZOCcBY74+YBdrKVGs= share/snis/sounds/.gitignore
HFw3Y9tECsE4EIgO3EpxW0LAQb6IqKmEZmwWsJQqzHw= share/snis/sounds/crewmember-has-joined.ogg
stbsVMZbvmUXpN/UaaGiSv40poGPmIenbP9kW/jHUqk= share/snis/sounds/spacemonster_slap.ogg
AcO73sTqhfaKsDrq4sW+n3j/jaUzmPWyoNtjeAoNmC0= share/snis/sounds/ui5.ogg
+16 -8
View File
@@ -8,7 +8,8 @@
libbsd,
libpng,
libvorbis,
SDL2,
libX11,
sdl2-compat,
makeWrapper,
lua5_2,
glew,
@@ -20,17 +21,19 @@
libopus,
openscad,
libxcrypt-legacy,
curlMinimal,
nix-update-script,
}:
stdenv.mkDerivation {
pname = "snis_launcher";
version = "2024-08-02";
stdenv.mkDerivation (finalAttrs: {
pname = "snis";
version = "1.0.2";
src = fetchFromGitHub {
owner = "smcameron";
repo = "space-nerds-in-space";
rev = "1dadfca31513561cf95f1229af34341bd1a1bb2a";
sha256 = "sha256-Qi4lbq1rsayMdRWMAF44K2DNtlZxNUyjnO6kXCW5QhA=";
tag = "v${finalAttrs.version}";
hash = "sha256-K7sZUBsR+sd7fUzDnK7C/9Q8+A2XPqUg3llyxdOo/RQ=";
};
enableParallelBuilding = true;
@@ -59,7 +62,8 @@ stdenv.mkDerivation {
libbsd
libpng
libvorbis
SDL2
libX11
sdl2-compat
lua5_2
glew
openssl
@@ -68,6 +72,7 @@ stdenv.mkDerivation {
alsa-utils
libopus
libxcrypt-legacy
curlMinimal
];
makeFlags = [ "PREFIX=$(out)" ];
@@ -76,11 +81,14 @@ stdenv.mkDerivation {
"models"
];
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Space Nerds In Space, a multi-player spaceship bridge simulator";
homepage = "https://smcameron.github.io/space-nerds-in-space/";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ alyaeanyx ];
platforms = platforms.linux;
mainProgram = "snis_launcher";
};
}
})