about summary refs log tree commit diff
path: root/default.nix
AgeCommit message (Collapse)AuthorFilesLines
2019-05-01 fix(build): Make Nix build work with recent nixpkgsVincent Ambo1-1/+3
Changes in the Go build environment for Nix have caused the parallel vetting to run in a subshell which does not have the required function definitions. This commit fixes the error by not running vet in parallel (there's no point to that anyways as the project is tiny).
2019-01-21 fix(build): Depend on GNU Parallel during buildVincent Ambo1-0/+1
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.
2018-03-09 refactor(build): Add Nix derivation & configure Travis to build itVincent Ambo1-0/+33
Adds a Nix-derivation for building kontemplate with dependencies pinned in Nix.