python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / games / among-sus / default.nix
blobbe9ecc7adf57e8d57d506fd48093e9a47d2a55c3
1 { lib, stdenv, fetchFromSourcehut, port ? "1234" }:
3 stdenv.mkDerivation {
4   pname = "among-sus-unstable";
5   version = "2021-05-19";
7   src = fetchFromSourcehut {
8     owner = "~martijnbraam";
9     repo = "among-sus";
10     rev = "554e60bf52e3fa931661b9414189a92bb8f69d78";
11     sha256 = "0j1158nczhvy5i1ykvzvhlv4ndhibgng0dq1lw2bmi8q6k1q1s0w";
12   };
14   patchPhase = ''
15     sed -i 's/port = 1234/port = ${port}/g' main.c
16   '';
18   installPhase = ''
19     mkdir -p $out/bin
20     install -Dm755 among-sus $out/bin
21   '';
23   meta = with lib; {
24     homepage = "https://git.sr.ht/~martijnbraam/among-sus";
25     description = "Among us, but it's a text adventure";
26     license = licenses.agpl3Plus;
27     maintainers = [ maintainers.eyjhb ];
28     platforms = platforms.unix;
29   };