about summary refs log tree commit diff
path: root/pkgs/development/compilers/dale/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/dale/default.nix')
-rw-r--r--pkgs/development/compilers/dale/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/development/compilers/dale/default.nix b/pkgs/development/compilers/dale/default.nix
deleted file mode 100644
index 816e8e08f4a7..000000000000
--- a/pkgs/development/compilers/dale/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, cmake
-, pkg-config
-, libffi
-, llvm_13
-, perl
-}:
-
-stdenv.mkDerivation {
-  pname = "dale";
-  version = "20220411";
-
-  src = fetchFromGitHub {
-    owner = "tomhrr";
-    repo = "dale";
-    rev = "7386ef2d8912c60c6fb157a1e5cd772e15eaf658";
-    sha256 = "sha256-LNWqrFuEjtL7zuPTBfe4qQWr8IrT/ldQWSeDTK3Wqmo=";
-  };
-
-  nativeBuildInputs = [ cmake pkg-config llvm_13.dev ];
-  buildInputs = [ libffi llvm_13 ];
-
-  nativeCheckInputs = [ perl ];
-
-  checkTarget = "tests";
-
-  meta = with lib; {
-    description = "Lisp-flavoured C";
-    longDescription = ''
-      Dale is a system (no GC) programming language that uses
-      S-expressions for syntax and supports syntactic macros.
-    '';
-    homepage = "https://github.com/tomhrr/dale";
-    license = licenses.bsd3;
-    maintainers = with maintainers; [ amiloradovsky ];
-    platforms = [ "i686-linux" "x86_64-linux" "aarch64-linux" ];
-    # failed on Darwin: linker couldn't find the FFI lib
-  };
-}