Unverified Commit 2e1ed6a2 authored by h7x4's avatar h7x4 Committed by GitHub
Browse files

Merge pull request #320476 from nialov/enable-check-for-gitmux

gitmux: enable check
parents 18705145 33fa1c8e
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
{ fetchFromGitHub, buildGoModule, lib, testers, gitmux }:
{ fetchFromGitHub, buildGoModule, lib, testers, gitmux, git }:

buildGoModule rec {
  pname = "gitmux";
@@ -13,9 +13,8 @@ buildGoModule rec {

  vendorHash = "sha256-PHY020MIuLlC1LqNGyBJRNd7J+SzoHbNMPAil7CKP/M=";

  # GitHub source does contain a regression test for the module
  # but it requires networking as it git clones a repo from github
  doCheck = false;
  nativeCheckInputs = [ git ];
  doCheck = true;

  ldflags = [ "-X main.version=${version}" ];