about summary refs log tree commit diff
path: root/third_party/dhall
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/dhall')
-rw-r--r--third_party/dhall/OWNERS3
-rw-r--r--third_party/dhall/default.nix25
2 files changed, 0 insertions, 28 deletions
diff --git a/third_party/dhall/OWNERS b/third_party/dhall/OWNERS
deleted file mode 100644
index a742d0d22bf6..000000000000
--- a/third_party/dhall/OWNERS
+++ /dev/null
@@ -1,3 +0,0 @@
-inherited: true
-owners:
-  - Profpatsch
diff --git a/third_party/dhall/default.nix b/third_party/dhall/default.nix
deleted file mode 100644
index b4de613125b7..000000000000
--- a/third_party/dhall/default.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ pkgs, ... }:
-
-let
-  # binary releases of dhall tools, since the build in nixpkgs is
-  # broken most of the time. The binaries are also fully static
-  # builds, instead of the half-static crap that nixpkgs produces.
-  easy-dhall-nix =
-    import
-      (builtins.fetchTarball {
-        url = "https://github.com/justinwoo/easy-dhall-nix/archive/eae7f64c4d6c70681e5a56c84198236930ba425e.tar.gz";
-        sha256 = "1y2x15v8a679vlpxazjpibfwajp6zph60f8wjcm4xflbvazk0dx7";
-      })
-      { inherit pkgs; };
-in
-{
-  dhall = easy-dhall-nix.dhall-simple;
-  dhall-bash = easy-dhall-nix.dhall-bash-simple;
-  dhall-docs = easy-dhall-nix.dhall-docs-simple;
-  dhall-json = easy-dhall-nix.dhall-json-simple;
-  dhall-lsp-server = easy-dhall-nix.dhall-lsp-simple;
-  dhall-nix = easy-dhall-nix.dhall-nix-simple;
-  # not yet in dhall-simple
-  # dhall-nixpkgs = easy-dhall-nix.dhall-nixpkgs-simple;
-  dhall-yaml = easy-dhall-nix.dhall-yaml-simple;
-}