about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2019-01-21T10·01+0100
committerVincent Ambo <github@tazj.in>2019-01-21T10·25+0100
commita53e75741fecc3416c0b6b7e5d5468d8913da48f (patch)
treee0b92f7c9554f44aac87bc7112010bf1855bd16d
parent54db9785d65d8a9dfc78d1cf230810b19f1abffb (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.
-rw-r--r--default.nix1
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;