Merge pull request #101384 from eyJhb/among-sus

among-sus: init at 2020-10-22

authored by

WORLDofPEACE and committed by
GitHub
8faab3de 76dc3ea8

+31
+29
pkgs/games/among-sus/default.nix
···
··· 1 + { stdenv, fetchgit, port ? "1234" }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "among-sus-unstable"; 5 + version = "2020-10-29"; 6 + 7 + src = fetchgit { 8 + url = "https://git.sr.ht/~martijnbraam/among-sus"; 9 + rev = "1f4c8d800d025d36ac66826937161be3252fbc57"; 10 + sha256 = "19jq7ygh9l11dl1h6702bg57m04y35nqd6yqx1rgp1kxwhp45xyh"; 11 + }; 12 + 13 + patchPhase = '' 14 + sed -i 's/port = 1234/port = ${port}/g' main.c 15 + ''; 16 + 17 + installPhase = '' 18 + mkdir -p $out/bin 19 + install -Dm755 among-sus $out/bin 20 + ''; 21 + 22 + meta = with stdenv.lib; { 23 + homepage = "https://git.sr.ht/~martijnbraam/among-sus"; 24 + description = "Among us, but it's a text adventure"; 25 + license = licenses.agpl3Plus; 26 + maintainers = [ maintainers.eyjhb ]; 27 + platforms = platforms.unix; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 140 141 alda = callPackage ../development/interpreters/alda { }; 142 143 ankisyncd = callPackage ../servers/ankisyncd { }; 144 145 avro-tools = callPackage ../development/tools/avro-tools { };
··· 140 141 alda = callPackage ../development/interpreters/alda { }; 142 143 + among-sus = callPackage ../games/among-sus { }; 144 + 145 ankisyncd = callPackage ../servers/ankisyncd { }; 146 147 avro-tools = callPackage ../development/tools/avro-tools { };