xfce.xfce4-notes-plugin: Generate C code with newer Vala (#359006)
[NixPkgs.git] / pkgs / by-name / le / leaps / package.nix
blobc9eac1db13a8b3e56eecd8e2ed0ec78da209d9bd
1 { lib, buildGoModule, fetchFromGitHub, testers, leaps, nixosTests }:
3 buildGoModule rec {
4   pname = "leaps";
5   version = "0.9.1";
7   src = fetchFromGitHub {
8     owner = "Jeffail";
9     repo = "leaps";
10     rev = "v${version}";
11     sha256 = "sha256-9AYE8+K6B6/odwNR+UhTTqmJ1RD6HhKvtC3WibWUZic=";
12   };
14   proxyVendor = true; # darwin/linux hash mismatch
15   vendorHash = "sha256-0dwUOoV2bxPB+B6CKxJPImPIDlBMPcm0AwEMrVUkALc=";
17   ldflags = [ "-s" "-w" "-X main.version=${version}" ];
19   passthru.tests = {
20     version = testers.testVersion { package = leaps; };
21     inherit (nixosTests) leaps;
22   };
24   meta = with lib; {
25     description = "Pair programming tool and library written in Golang";
26     mainProgram = "leaps";
27     homepage = "https://github.com/jeffail/leaps/";
28     license = licenses.mit;
29     maintainers = with lib.maintainers; [ qknight ];
30   };