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.
This commit is contained in:
parent
56f9e37755
commit
16b317fa5a
1 changed files with 13 additions and 4 deletions
17
default.nix
17
default.nix
|
@ -57,10 +57,19 @@ let
|
||||||
}) {}).elmPackages;
|
}) {}).elmPackages;
|
||||||
|
|
||||||
# Wrap kontemplate to inject the Cloud KMS version of 'pass'
|
# Wrap kontemplate to inject the Cloud KMS version of 'pass'
|
||||||
kontemplate = self.writeShellScriptBin "kontemplate" ''
|
kontemplate =
|
||||||
export PATH="${self.tazjin.kms_pass}/bin:$PATH"
|
let master = super.kontemplate.overrideAttrs(_: {
|
||||||
exec ${super.kontemplate}/bin/kontemplate $@
|
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
|
# One of Gemma's dependencies is missing in nixpkgs' Quicklisp
|
||||||
# package set, it is overlaid locally here.
|
# package set, it is overlaid locally here.
|
||||||
|
|
Loading…
Reference in a new issue