harePackages: remove myself from maintainers

I am not interested on keeping Hare for the foreseeable future.
This commit is contained in:
Anderson Torres 2023-11-02 11:37:20 -03:00
parent 633241b05c
commit 50c3db1d8e
2 changed files with 3 additions and 2 deletions

View File

@ -92,7 +92,7 @@ stdenv.mkDerivation (finalAttrs: {
description =
"A systems programming language designed to be simple, stable, and robust";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.AndersonTorres ];
maintainers = [ ];
inherit (harec.meta) platforms badPlatforms;
};
})

View File

@ -34,9 +34,10 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "http://harelang.org/";
description = "Bootstrapping Hare compiler written in C for POSIX systems";
license = lib.licenses.gpl3Only;
maintainers = [ lib.maintainers.AndersonTorres ];
maintainers = [ ];
# The upstream developers do not like proprietary operating systems; see
# https://harelang.org/platforms/
# UPDATE: https://github.com/hshq/harelang provides a MacOS port
platforms = with lib.platforms;
lib.intersectLists (freebsd ++ linux) (aarch64 ++ x86_64 ++ riscv64);
badPlatforms = lib.platforms.darwin;