2c76a4cb41
GitOrigin-RevId: c757e9bd77b16ca2e03c89bf8bc9ecb28e0c06ad
45 lines
1.1 KiB
Nix
45 lines
1.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromSourcehut
|
|
, qbe
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "harec";
|
|
version = "unstable-2023-04-25";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~sircmpwn";
|
|
repo = "harec";
|
|
rev = "068e8da091f9053726251bc221abf40fdea630ff";
|
|
hash = "sha256-PPR0d+6JJRzPURW7AznloBSrtylMJExNCGCxFMl2LsA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
qbe
|
|
];
|
|
|
|
buildInputs = [
|
|
qbe
|
|
];
|
|
|
|
# TODO: report upstream
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
strictDeps = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "http://harelang.org/";
|
|
description = "Bootstrapping Hare compiler written in C for POSIX systems";
|
|
license = lib.licenses.gpl3Only;
|
|
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
|
|
platforms = with lib.platforms;
|
|
lib.intersectLists (freebsd ++ linux) (aarch64 ++ x86_64 ++ riscv64);
|
|
badPlatforms = lib.platforms.darwin;
|
|
};
|
|
})
|