about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/leaps/default.nix
blob: a0f99496a43844cbc1546e73dc21788ad4f04107 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ 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 ];
  };
}