ioq3-scion: init at unstable-2024-03-03

This commit is contained in:
matthewcroughan 2024-02-28 07:54:36 +00:00 committed by Emery Hemingway
parent f3e48a477e
commit d7ce809cd6
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{ ioquake3, fetchFromGitHub, pan-bindings, libsodium, lib }:
ioquake3.overrideAttrs (old: {
pname = "ioq3-scion";
version = "unstable-2024-03-03";
buildInputs = old.buildInputs ++ [
pan-bindings
libsodium
];
src = fetchFromGitHub {
owner = "lschulz";
repo = "ioq3-scion";
rev = "9f06abd5030c51cd4582ba3d24ba87531e3eadbc";
hash = "sha256-+zoSlNT+oqozQFnhA26PiMo1NnzJJY/r4tcm2wOCBP0=";
};
meta = {
description = "ioquake3 with support for path aware networking";
maintainers = with lib.maintainers; [ matthewcroughan ];
};
})