From 16b317fa5af70a5327ff79597e171f3407882cb4 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 4 Sep 2019 12:58:04 +0100 Subject: [PATCH] chore: Update kontemplate to v1.8.0 This version is agnostic of the working directory even if insertFile/insertTemplate are used, which makes it a lot nicer to work with in this repository structure. --- default.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/default.nix b/default.nix index 3b5736a19..0ace70da5 100644 --- a/default.nix +++ b/default.nix @@ -57,10 +57,19 @@ let }) {}).elmPackages; # Wrap kontemplate to inject the Cloud KMS version of 'pass' - kontemplate = self.writeShellScriptBin "kontemplate" '' - export PATH="${self.tazjin.kms_pass}/bin:$PATH" - exec ${super.kontemplate}/bin/kontemplate $@ - ''; + kontemplate = + let master = super.kontemplate.overrideAttrs(_: { + src = self.fetchFromGitHub { + owner = "tazjin"; + repo = "kontemplate"; + rev = "v1.8.0"; + sha256 = "123mjmmm4hynraq1fpn3j5i0a1i87l265kkjraxxxbl0zacv74i1"; + }; + }); + in self.writeShellScriptBin "kontemplate" '' + export PATH="${self.tazjin.kms_pass}/bin:$PATH" + exec ${master}/bin/kontemplate $@ + ''; # One of Gemma's dependencies is missing in nixpkgs' Quicklisp # package set, it is overlaid locally here.