diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-20T20·37+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-20T20·37+0000 |
commit | 8de5d093d8e35b2492c81015dcfcb052d2718614 (patch) | |
tree | f4bb5763a39c7059537fc7877e3c0ac15a4d8f69 /overrides/kontemplate | |
parent | 03bfe08e1dd9faf48b06cb146bfa446575cde88a (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')
-rw-r--r-- | overrides/kontemplate/default.nix | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/overrides/kontemplate/default.nix b/overrides/kontemplate/default.nix new file mode 100644 index 000000000000..40f6b68b2962 --- /dev/null +++ b/overrides/kontemplate/default.nix @@ -0,0 +1,14 @@ +{ 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 $@ +'' |