Commit 50c3db1d authored by Anderson Torres's avatar Anderson Torres
Browse files

harePackages: remove myself from maintainers

I am not interested on keeping Hare for the foreseeable future.
parent 633241b0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
  };
})
+2 −1
Original line number Diff line number Diff line
@@ -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;