depot/third_party/nixpkgs/pkgs/development/tools/leaps/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

27 lines
772 B
Nix

{ lib, buildGoModule, fetchFromGitHub, testers, leaps }:
buildGoModule rec {
pname = "leaps";
version = "0.9.1";
src = fetchFromGitHub {
owner = "Jeffail";
repo = "leaps";
rev = "v${version}";
sha256 = "sha256-9AYE8+K6B6/odwNR+UhTTqmJ1RD6HhKvtC3WibWUZic=";
};
proxyVendor = true; # darwin/linux hash mismatch
vendorHash = "sha256-0dwUOoV2bxPB+B6CKxJPImPIDlBMPcm0AwEMrVUkALc=";
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
passthru.tests.version = testers.testVersion { package = leaps; };
meta = with lib; {
description = "A pair programming tool and library written in Golang";
homepage = "https://github.com/jeffail/leaps/";
license = licenses.mit;
maintainers = with lib.maintainers; [ qknight ];
};
}