Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
30 lines
660 B
Nix
30 lines
660 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
m4,
|
|
}:
|
|
|
|
let
|
|
version = "0.7.3";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "gforth-boot";
|
|
inherit version;
|
|
src = fetchurl {
|
|
url = "https://ftp.gnu.org/gnu/gforth/gforth-${version}.tar.gz";
|
|
sha256 = "1c1bahc9ypmca8rv2dijiqbangm1d9av286904yw48ph7ciz4qig";
|
|
};
|
|
|
|
buildInputs = [ m4 ];
|
|
|
|
configureFlags = lib.optionals stdenv.hostPlatform.isDarwin [ "--build=x86_64-apple-darwin" ];
|
|
|
|
meta = {
|
|
description = "Forth implementation of the GNU project (outdated version used to bootstrap)";
|
|
homepage = "https://www.gnu.org/software/gforth/";
|
|
license = lib.licenses.gpl3;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|