carapace: init at 0.8.10

This commit is contained in:
Massimo Redaelli 2022-01-27 21:38:24 +01:00
parent fa7b83fa48
commit b9c4739708
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ lib, buildGo117Module, fetchFromGitHub }:
buildGo117Module rec {
pname = "carapace";
version = "0.8.10";
src = fetchFromGitHub {
owner = "rsteube";
repo = "${pname}-bin";
rev = "v${version}";
sha256 = "0j60fvrmjm4440gj9hib2ar386zxcblw7yifigsnchr7p3i2187n";
};
vendorSha256 = "1s1sws79cyz1rl63wayzf7yhb04x29a4a1mkifqnl4cc2pv806jf";
subPackages = [ "./cmd/carapace" ];
tags = [ "release" ];
preBuild = ''
go generate ./...
'';
meta = with lib; {
description = "Multi-shell multi-command argument completer";
homepage = "https://rsteube.github.io/carapace-bin/";
maintainers = with maintainers; [ mredaelli ];
license = licenses.mit;
platforms = platforms.unix;
};
}

View File

@ -11424,6 +11424,8 @@ with pkgs;
undistract-me = callPackage ../shells/bash/undistract-me { };
carapace = callPackage ../shells/carapace { };
dash = callPackage ../shells/dash { };
dasht = callPackage ../tools/misc/dasht { };