We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5df0ba commit d28f118Copy full SHA for d28f118
default.nix
@@ -1,4 +1,4 @@
1
-# Copyright (C) 2016-2019 Vincent Ambo <[email protected]>
+# Copyright (C) 2016-2021 Vincent Ambo <[email protected]>
2
#
3
# This file is part of Kontemplate.
4
@@ -10,15 +10,15 @@
10
# This file is the Nix derivation used to install Kontemplate on
11
# Nix-based systems.
12
13
-{ depot, ... }:
+{ lib, pkgs, ... }:
14
15
-with depot.third_party; buildGoPackage rec {
+pkgs.buildGoPackage rec {
16
name = "kontemplate-${version}";
17
version = "canon";
18
src = ./.;
19
goPackagePath = "github.com/tazjin/kontemplate";
20
goDeps = ./deps.nix;
21
- buildInputs = [ parallel ];
+ buildInputs = [ pkgs.parallel ];
22
23
# Enable checks and configure check-phase to include vet:
24
doCheck = true;
0 commit comments