nixpkgs/pkgs/shells/carapace/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
897 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, testers, carapace }:
2022-01-27 21:38:24 +01:00
2022-09-07 23:23:48 +02:00
buildGoModule rec {
2022-01-27 21:38:24 +01:00
pname = "carapace";
2024-02-03 01:40:23 +01:00
version = "0.30.1";
2022-01-27 21:38:24 +01:00
src = fetchFromGitHub {
owner = "rsteube";
repo = "${pname}-bin";
rev = "v${version}";
2024-02-03 01:40:23 +01:00
hash = "sha256-2sf/S6i7f6pkjPEe0LaOJL6GtVNuRpGKXoRP4ZfDfX0=";
2022-01-27 21:38:24 +01:00
};
2024-02-03 01:40:23 +01:00
vendorHash = "sha256-iIDtq+wRtBEV/gmGm4xSP87PT3pyUtto1d+nbHPzB04=";
2022-01-27 21:38:24 +01:00
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
2022-01-27 21:38:24 +01:00
subPackages = [ "./cmd/carapace" ];
tags = [ "release" ];
preBuild = ''
2023-12-29 22:34:54 +01:00
GOOS= GOARCH= go generate ./...
2022-01-27 21:38:24 +01:00
'';
passthru.tests.version = testers.testVersion { package = carapace; };
2022-01-27 21:38:24 +01:00
meta = with lib; {
description = "Multi-shell multi-command argument completer";
homepage = "https://rsteube.github.io/carapace-bin/";
maintainers = with maintainers; [ star-szr ];
2022-01-27 21:38:24 +01:00
license = licenses.mit;
2023-09-05 19:24:42 +02:00
mainProgram = "carapace";
2022-01-27 21:38:24 +01:00
};
}