Skip to content

Commit

Permalink
Merge pull request NixOS#320476 from nialov/enable-check-for-gitmux
Browse files Browse the repository at this point in the history
gitmux: enable check
  • Loading branch information
h7x4 authored Jun 18, 2024
2 parents 1870514 + 33fa1c8 commit 2e1ed6a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pkgs/applications/version-management/gitmux/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ fetchFromGitHub, buildGoModule, lib, testers, gitmux }:
{ fetchFromGitHub, buildGoModule, lib, testers, gitmux, git }:

buildGoModule rec {
pname = "gitmux";
Expand All @@ -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}" ];

Expand Down

0 comments on commit 2e1ed6a

Please sign in to comment.