harePackages: remove myself from maintainers

I am not interested on keeping Hare for the foreseeable future.

+3 -2
+1 -1
pkgs/development/compilers/hare/hare/default.nix
··· 92 description = 93 "A systems programming language designed to be simple, stable, and robust"; 94 license = lib.licenses.gpl3Only; 95 - maintainers = [ lib.maintainers.AndersonTorres ]; 96 inherit (harec.meta) platforms badPlatforms; 97 }; 98 })
··· 92 description = 93 "A systems programming language designed to be simple, stable, and robust"; 94 license = lib.licenses.gpl3Only; 95 + maintainers = [ ]; 96 inherit (harec.meta) platforms badPlatforms; 97 }; 98 })
+2 -1
pkgs/development/compilers/hare/harec/default.nix
··· 34 homepage = "http://harelang.org/"; 35 description = "Bootstrapping Hare compiler written in C for POSIX systems"; 36 license = lib.licenses.gpl3Only; 37 - maintainers = [ lib.maintainers.AndersonTorres ]; 38 # The upstream developers do not like proprietary operating systems; see 39 # https://harelang.org/platforms/ 40 platforms = with lib.platforms; 41 lib.intersectLists (freebsd ++ linux) (aarch64 ++ x86_64 ++ riscv64); 42 badPlatforms = lib.platforms.darwin;
··· 34 homepage = "http://harelang.org/"; 35 description = "Bootstrapping Hare compiler written in C for POSIX systems"; 36 license = lib.licenses.gpl3Only; 37 + maintainers = [ ]; 38 # The upstream developers do not like proprietary operating systems; see 39 # https://harelang.org/platforms/ 40 + # UPDATE: https://github.com/hshq/harelang provides a MacOS port 41 platforms = with lib.platforms; 42 lib.intersectLists (freebsd ++ linux) (aarch64 ++ x86_64 ++ riscv64); 43 badPlatforms = lib.platforms.darwin;