Files
nixpkgs/pkgs/development/tools/leaps/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

29 lines
797 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 = "Pair programming tool and library written in Golang";
mainProgram = "leaps";
homepage = "https://github.com/jeffail/leaps/";
license = licenses.mit;
maintainers = with lib.maintainers; [ qknight ];
};
}