about summary refs log tree commit diff
path: root/overrides/kontemplate.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-12-20T20·37+0000
committerVincent Ambo <tazjin@google.com>2019-12-20T20·37+0000
commit8de5d093d8e35b2492c81015dcfcb052d2718614 (patch)
treef4bb5763a39c7059537fc7877e3c0ac15a4d8f69 /overrides/kontemplate.nix
parent03bfe08e1dd9faf48b06cb146bfa446575cde88a (diff)
refactor: Fix a variety of filepaths for repo relayouting r/238
This fixes readTree and the various project builds, as well
as (hopefully) most documentation links inside of the projects.
Diffstat (limited to 'overrides/kontemplate.nix')
-rw-r--r--overrides/kontemplate.nix14
1 files changed, 0 insertions, 14 deletions
diff --git a/overrides/kontemplate.nix b/overrides/kontemplate.nix
deleted file mode 100644
index 40f6b68b2962..000000000000
--- a/overrides/kontemplate.nix
+++ /dev/null
@@ -1,14 +0,0 @@
-{ pkgs, ... }:
-
-let master = pkgs.third_party.kontemplate.overrideAttrs(_: {
-  src = pkgs.third_party.fetchFromGitHub {
-    owner = "tazjin";
-    repo = "kontemplate";
-    rev = "v1.8.0";
-    sha256 = "123mjmmm4hynraq1fpn3j5i0a1i87l265kkjraxxxbl0zacv74i1";
-  };
-});
-in pkgs.third_party.writeShellScriptBin "kontemplate" ''
-  export PATH="${pkgs.tools.kms_pass}/bin:$PATH"
-  exec ${master}/bin/kontemplate $@
-''