uxn: add new maintainer

This commit is contained in:
Kototama 2022-10-26 10:45:13 +02:00
parent 3af72c9c07
commit 2fd3f4515b
2 changed files with 8 additions and 2 deletions

View File

@ -7369,6 +7369,12 @@
githubId = 2037002;
name = "Konstantinos";
};
kototama = {
email = "kototama@posteo.jp";
github = "kototama";
githubId = 128620;
name = "Kototama";
};
kouyk = {
email = "skykinetic@stevenkou.xyz";
github = "kouyk";

View File

@ -36,7 +36,7 @@ stdenv.mkDerivation {
installPhase = ''
runHook preInstall
install -d $out/bin/ $out/share/${pname}/
install -d $out/bin/ $out/share/uxn/
cp bin/uxnasm bin/uxncli bin/uxnemu $out/bin/
cp -r projects $out/share/uxn/
@ -48,7 +48,7 @@ stdenv.mkDerivation {
homepage = "https://wiki.xxiivv.com/site/uxn.html";
description = "An assembler and emulator for the Uxn stack machine";
license = with licenses; [ mit ];
maintainers = with maintainers; [ AndersonTorres ];
maintainers = with maintainers; [ AndersonTorres kototama ];
platforms = with platforms; unix;
};
}