From e3bac87a89afc79201e0eedd412adaa7745884f5 Mon Sep 17 00:00:00 2001 From: Gustavo Coutinho de Souza Date: Tue, 7 Nov 2023 11:04:35 -0300 Subject: [PATCH] hare: add onemoresuza as the maintainer Since harec is part of its bootstrapping and it's also orphaned, also add onemoresuza as its maintainer. --- .../compilers/hare/hare/default.nix | 22 +++++++++---------- .../compilers/hare/harec/default.nix | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pkgs/development/compilers/hare/hare/default.nix b/pkgs/development/compilers/hare/hare/default.nix index 1845a9c062b8..f95bff23f612 100644 --- a/pkgs/development/compilers/hare/hare/default.nix +++ b/pkgs/development/compilers/hare/hare/default.nix @@ -57,15 +57,15 @@ stdenv.mkDerivation (finalAttrs: { inherit arch platform hareflags; }; in - '' - runHook preConfigure + '' + runHook preConfigure - export HARECACHE="$NIX_BUILD_TOP/.harecache" - export BINOUT="$NIX_BUILD_TOP/.bin" - cat ${config-file} > config.mk + export HARECACHE="$NIX_BUILD_TOP/.harecache" + export BINOUT="$NIX_BUILD_TOP/.bin" + cat ${config-file} > config.mk - runHook postConfigure - ''; + runHook postConfigure + ''; makeFlags = [ "PREFIX=${placeholder "out"}" @@ -81,9 +81,9 @@ stdenv.mkDerivation (finalAttrs: { qbe ]; in - '' - wrapProgram $out/bin/hare --prefix PATH : ${binPath} - ''; + '' + wrapProgram $out/bin/hare --prefix PATH : ${binPath} + ''; setupHook = ./setup-hook.sh; @@ -92,7 +92,7 @@ stdenv.mkDerivation (finalAttrs: { description = "A systems programming language designed to be simple, stable, and robust"; license = lib.licenses.gpl3Only; - maintainers = [ ]; + maintainers = with lib.maintainers; [ onemoresuza ]; inherit (harec.meta) platforms badPlatforms; }; }) diff --git a/pkgs/development/compilers/hare/harec/default.nix b/pkgs/development/compilers/hare/harec/default.nix index 0def9fb193ac..6b71e0df0252 100644 --- a/pkgs/development/compilers/hare/harec/default.nix +++ b/pkgs/development/compilers/hare/harec/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "http://harelang.org/"; description = "Bootstrapping Hare compiler written in C for POSIX systems"; license = lib.licenses.gpl3Only; - maintainers = [ ]; + maintainers = with lib.maintainers; [ onemoresuza ]; # The upstream developers do not like proprietary operating systems; see # https://harelang.org/platforms/ # UPDATE: https://github.com/hshq/harelang provides a MacOS port