sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / tools / misc / microplane / default.nix
blob53d5cc567f09defa5129ba5cad7b2f4b4c3ad8f8
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "microplane";
5   version = "0.0.34";
7   src = fetchFromGitHub {
8     owner = "Clever";
9     repo = "microplane";
10     rev = "v${version}";
11     sha256 = "sha256-ZrBkVXRGZp8yGFIBo7sLGvJ8pMQq7Cq0xJiko57z164=";
12   };
14   vendorHash = "sha256-PqSjSFTVrIsQ065blIxZ9H/ARku6BEcnjboH+0K0G14=";
16   ldflags = [
17     "-s" "-w" "-X main.version=${version}"
18   ];
20   postInstall = ''
21     ln -s $out/bin/microplane $out/bin/mp
22   '';
24   meta = with lib; {
25     description = "A CLI tool to make git changes across many repos";
26     homepage = "https://github.com/Clever/microplane";
27     license = licenses.asl20;
28     maintainers = with maintainers; [ dbirks ];
29   };