nixpkgs/pkgs/tools/misc/microplane/default.nix

31 lines
716 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2020-12-29 05:36:12 +00:00
buildGoModule rec {
2020-12-29 05:36:12 +00:00
pname = "microplane";
2021-08-17 09:59:44 +01:00
version = "0.0.34";
2020-12-29 05:36:12 +00:00
src = fetchFromGitHub {
owner = "Clever";
repo = "microplane";
rev = "v${version}";
2021-08-17 09:59:44 +01:00
sha256 = "sha256-ZrBkVXRGZp8yGFIBo7sLGvJ8pMQq7Cq0xJiko57z164=";
2020-12-29 05:36:12 +00:00
};
2021-08-14 16:37:26 +01:00
vendorSha256 = "sha256-PqSjSFTVrIsQ065blIxZ9H/ARku6BEcnjboH+0K0G14=";
2020-12-29 05:36:12 +00:00
2021-08-26 07:45:51 +01:00
ldflags = [
"-s" "-w" "-X main.version=${version}"
];
2020-12-29 05:36:12 +00:00
postInstall = ''
ln -s $out/bin/microplane $out/bin/mp
'';
meta = with lib; {
2020-12-29 05:36:12 +00:00
description = "A CLI tool to make git changes across many repos";
homepage = "https://github.com/Clever/microplane";
license = licenses.asl20;
maintainers = with maintainers; [ dbirks ];
};
}