Files
nixpkgs/pkgs/by-name/sn/snis-assets/package.nix
Dark Steveneq 646b892680
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
push sheeet
2025-10-09 14:15:47 +02:00

52 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "snis_assets";
version = "2025-07-26";
src = fetchFromGitHub {
owner = "marcin-serwin";
repo = "snis-assets-snapshotter";
tag = finalAttrs.version;
hash = "sha256-K/X66txXKpGtWPRtWXvKiVMYb6vGJtrv2CdHVuXbT8M=";
};
dontConfigure = true;
dontBuild = true;
dontFixup = true;
installPhase = ''
runHook preInstall
mkdir -p $out
cp -r share $out
runHook postInstall
'';
passthru.updateScript = nix-update-script { };
meta = {
description = "Assets for Space Nerds In Space, a multi-player spaceship bridge simulator";
homepage = "https://smcameron.github.io/space-nerds-in-space/";
downloadPage = "https://github.com/marcin-serwin/snis-assets-snapshotter";
license = with lib.licenses; [
gpl2Plus
cc-by-sa-30
cc-by-40
cc-by-30
cc0
publicDomain
free
];
maintainers = with lib.maintainers; [
pentane
marcin-serwin
];
platforms = lib.platforms.linux;
hydraPlatforms = [ ];
};
})