about summary refs log tree commit diff
path: root/third_party/lisp/sclf/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/lisp/sclf/default.nix')
-rw-r--r--third_party/lisp/sclf/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/third_party/lisp/sclf/default.nix b/third_party/lisp/sclf/default.nix
deleted file mode 100644
index fb07f8f764..0000000000
--- a/third_party/lisp/sclf/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright (C) 2021 by the TVL Authors
-# SPDX-License-Identifier: LGPL-2.1-or-later
-{ depot, pkgs, ... }:
-
-depot.nix.buildLisp.library {
-  name = "sclf";
-
-  deps = [
-    (depot.nix.buildLisp.bundled "sb-posix")
-  ];
-
-  srcs = [
-    ./package.lisp
-    ./sclf.lisp
-    ./sysproc.lisp
-    ./lazy.lisp
-    ./time.lisp
-    ./directory.lisp
-    ./serial.lisp
-    ./mp/sbcl.lisp
-  ];
-
-  # TODO(sterni): implement OS interaction for ECL and CCL
-  brokenOn = [
-    "ecl"
-    "ccl"
-  ];
-}