Skip to content

Commit

Permalink
harePackages: remove myself from maintainers
Browse files Browse the repository at this point in the history
I am not interested on keeping Hare for the foreseeable future.
  • Loading branch information
AndersonTorres committed Nov 2, 2023
1 parent 633241b commit 50c3db1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/compilers/hare/hare/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
})
3 changes: 2 additions & 1 deletion pkgs/development/compilers/hare/harec/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 50c3db1

Please sign in to comment.