cobra-cli: fix the build
Fix two issues: - Skip tests which depend on the current year. - Ensure go is in PATH.
This commit is contained in:
parent
1201dd5a5e
commit
fa59d8e45c
1 changed files with 17 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ lib, buildGoModule, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, go }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "cobra-cli";
|
pname = "cobra-cli";
|
||||||
|
@ -13,6 +13,22 @@ buildGoModule rec {
|
||||||
|
|
||||||
vendorSha256 = "sha256-vrtGPQzY+NImOGaSxV+Dvch+GNPfL9XfY4lfCHTGXwY=";
|
vendorSha256 = "sha256-vrtGPQzY+NImOGaSxV+Dvch+GNPfL9XfY4lfCHTGXwY=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
allowGoReference = true;
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace "cmd/add_test.go" \
|
||||||
|
--replace "TestGoldenAddCmd" "SkipGoldenAddCmd"
|
||||||
|
substituteInPlace "cmd/init_test.go" \
|
||||||
|
--replace "TestGoldenInitCmd" "SkipGoldenInitCmd"
|
||||||
|
'';
|
||||||
|
|
||||||
|
postFixup = ''
|
||||||
|
wrapProgram "$out/bin/cobra-cli" \
|
||||||
|
--prefix PATH : ${go}/bin
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Cobra CLI tool to generate applications and commands";
|
description = "Cobra CLI tool to generate applications and commands";
|
||||||
homepage = "https://github.com/spf13/cobra-cli/";
|
homepage = "https://github.com/spf13/cobra-cli/";
|
||||||
|
|
Loading…
Reference in a new issue