diff options
author | Vincent Ambo <mail@tazj.in> | 2019-01-21T10·01+0100 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2019-01-21T10·25+0100 |
commit | a53e75741fecc3416c0b6b7e5d5468d8913da48f (patch) | |
tree | e0b92f7c9554f44aac87bc7112010bf1855bd16d /default.nix | |
parent | 54db9785d65d8a9dfc78d1cf230810b19f1abffb (diff) |
fix(build): Depend on GNU Parallel during build
CI builds for `master` track unstable nixpkgs releases, in which parallel is no longer part of the standard build environment. However, this tool is required for executing some of the tests.
Diffstat (limited to 'default.nix')
-rw-r--r-- | default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/default.nix b/default.nix index f61d83153d76..e2c1a5650fcf 100644 --- a/default.nix +++ b/default.nix @@ -18,6 +18,7 @@ with pkgs; buildGoPackage rec { src = ./.; goPackagePath = "github.com/tazjin/kontemplate"; goDeps = ./deps.nix; + buildInputs = [ parallel ]; # Enable checks and configure check-phase to include vet: doCheck = true; |