This switches to [Go modules](https://go.dev/blog/using-go-modules), which have now been the standard for dependency management in Go codebases for a while. In addition to initializing a new Go module, it also updates the paths of some gopkg.in dependencies, which are deprecated as well. Change-Id: Ie5c9faa415a65ab76cbe59f4afb437a9250be392 Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> Reviewed-on: https://cl.tvl.fyi/c/depot/+/11773 Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su>
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			993 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			993 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
# Copyright (C) 2016-2021  Vincent Ambo <mail@tazj.in>
 | 
						|
#
 | 
						|
# This file is part of Kontemplate.
 | 
						|
#
 | 
						|
# Kontemplate is free software: you can redistribute it and/or modify
 | 
						|
# it under the terms of the GNU General Public License as published by
 | 
						|
# the Free Software Foundation, either version 3 of the License, or
 | 
						|
# (at your option) any later version.
 | 
						|
#
 | 
						|
# This file is the Nix derivation used to install Kontemplate on
 | 
						|
# Nix-based systems.
 | 
						|
 | 
						|
{ lib, pkgs, ... }:
 | 
						|
 | 
						|
pkgs.buildGoModule rec {
 | 
						|
  name = "kontemplate-${version}";
 | 
						|
  version = "canon";
 | 
						|
  src = ./.;
 | 
						|
 | 
						|
  buildInputs = [ pkgs.parallel ];
 | 
						|
 | 
						|
  # Enable checks and configure check-phase to include vet:
 | 
						|
  doCheck = true;
 | 
						|
  preCheck = ''
 | 
						|
    for pkg in $(getGoDirs ""); do
 | 
						|
      buildGoDir vet "$pkg"
 | 
						|
    done
 | 
						|
  '';
 | 
						|
 | 
						|
  vendorHash = "sha256-xPGVM2dq5fAVOiuodOXhDm3v3k+ncNLhlk6aCtF5S9E=";
 | 
						|
 | 
						|
  meta = with lib; {
 | 
						|
    description = "A resource templating helper for Kubernetes";
 | 
						|
    homepage = "http://kontemplate.works/";
 | 
						|
    license = licenses.gpl3;
 | 
						|
  };
 | 
						|
}
 |