about summary refs log tree commit diff
path: root/pkgs/development/compilers/inform6/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/inform6/default.nix')
-rw-r--r--pkgs/development/compilers/inform6/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/development/compilers/inform6/default.nix b/pkgs/development/compilers/inform6/default.nix
deleted file mode 100644
index ccbf8ef5da34..000000000000
--- a/pkgs/development/compilers/inform6/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ lib, stdenv, fetchurl, perl }:
-
-stdenv.mkDerivation rec {
-  pname = "inform6";
-  version = "6.42-r1";
-
-  src = fetchurl  {
-    url = "https://ifarchive.org/if-archive/infocom/compilers/inform6/source/inform-${version}.tar.gz";
-    sha256 = "sha256-JZaMhA4M+fDgk52tWCJokG9J/a1+FQHL7+VxAT4PgQo=";
-  };
-
-  buildInputs = [ perl ];
-
-  makeFlags = [
-    "CC=${stdenv.cc.targetPrefix}cc"
-    "PREFIX=${placeholder "out"}"
-  ];
-
-  meta = with lib; {
-    description = "Interactive fiction compiler and libraries";
-    longDescription = ''
-      Inform 6 is a C-like programming language for writing interactive fiction
-      (text adventure) games.
-    '';
-    homepage = "https://gitlab.com/DavidGriffith/inform6unix";
-    changelog = "https://gitlab.com/DavidGriffith/inform6unix/-/raw/${version}/NEWS";
-    license = licenses.artistic2;
-    maintainers = with lib.maintainers; [ ddelabru ];
-    platforms = platforms.all;
-  };
-}