fix(kontemplate): Make build compatible with readTree

The kontemplate build will keep using `buildGoPackage` for now until
I've had the time to add tests to //nix/buildGo
This commit is contained in:
Vincent Ambo 2019-12-20 22:19:52 +00:00
parent a9f5c63707
commit db30770101
5 changed files with 10 additions and 16 deletions

View file

@ -10,9 +10,9 @@
# This file is the Nix derivation used to install Kontemplate on
# Nix-based systems.
{ pkgs ? import <nixpkgs> {} }:
{ pkgs, ... }:
with pkgs; buildGoPackage rec {
with pkgs.third_party; buildGoPackage rec {
name = "kontemplate-${version}";
version = "master";
src = ./.;