From a53e75741fecc3416c0b6b7e5d5468d8913da48f Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Mon, 21 Jan 2019 11:01:31 +0100 Subject: 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. --- default.nix | 1 + 1 file changed, 1 insertion(+) 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; -- cgit 1.4.1