Merge pull request #266066 from onemoresuza/hare

hare: add onemoresuza as the maintainer
This commit is contained in:
Peder Bergebakken Sundt 2023-11-07 17:51:52 +02:00 committed by GitHub
commit 44018d1c4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 12 deletions

View File

@ -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;
};
})

View File

@ -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