mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
among-sus: init at 2020-10-29
This commit is contained in:
parent
6c9d44d39c
commit
76cd544455
29
pkgs/games/among-sus/default.nix
Normal file
29
pkgs/games/among-sus/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ stdenv, fetchgit, port ? "1234" }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "among-sus-unstable";
|
||||
version = "2020-10-29";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.sr.ht/~martijnbraam/among-sus";
|
||||
rev = "1f4c8d800d025d36ac66826937161be3252fbc57";
|
||||
sha256 = "19jq7ygh9l11dl1h6702bg57m04y35nqd6yqx1rgp1kxwhp45xyh";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
sed -i 's/port = 1234/port = ${port}/g' main.c
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
install -Dm755 among-sus $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "https://git.sr.ht/~martijnbraam/among-sus";
|
||||
description = "Among us, but it's a text adventure";
|
||||
license = licenses.agpl3Plus;
|
||||
maintainers = [ maintainers.eyjhb ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -140,6 +140,8 @@ in
|
||||
|
||||
alda = callPackage ../development/interpreters/alda { };
|
||||
|
||||
among-sus = callPackage ../games/among-sus { };
|
||||
|
||||
ankisyncd = callPackage ../servers/ankisyncd { };
|
||||
|
||||
avro-tools = callPackage ../development/tools/avro-tools { };
|
||||
|
Loading…
Reference in New Issue
Block a user