36 lines
912 B
Nix
36 lines
912 B
Nix
{ fetchFromGitHub, buildGoModule, lib, testers, gitmux }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitmux";
|
|
version = "0.10.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "arl";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-toEKWkyCmeoG6eVK19RKipCqHM7OhZrkWRHNAclFgoI=";
|
|
};
|
|
|
|
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;
|
|
|
|
ldflags = [ "-X main.version=${version}" ];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = gitmux;
|
|
command = "gitmux -V";
|
|
};
|
|
|
|
subPackages = [ "." ];
|
|
|
|
meta = with lib; {
|
|
description = "Git in your tmux status bar";
|
|
homepage = "https://github.com/arl/gitmux";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ nialov ];
|
|
mainProgram = "gitmux";
|
|
};
|
|
}
|