about summary refs log tree commit diff
path: root/pkgs/development/compilers/gforth/boot-forth.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/gforth/boot-forth.nix')
-rw-r--r--pkgs/development/compilers/gforth/boot-forth.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/development/compilers/gforth/boot-forth.nix b/pkgs/development/compilers/gforth/boot-forth.nix
deleted file mode 100644
index 657847164bb0..000000000000
--- a/pkgs/development/compilers/gforth/boot-forth.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ 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.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;
-  };
-}