carapace: 0.26.0 -> 0.27.0 (#253444)

This commit is contained in:
star-szr 2023-09-05 13:24:42 -04:00 committed by GitHub
parent 22ee1b2f27
commit 3098d238ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View file

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "carapace";
version = "0.26.0";
version = "0.27.0";
src = fetchFromGitHub {
owner = "rsteube";
repo = "${pname}-bin";
rev = "v${version}";
sha256 = "sha256-1e2hrAoFtnG1lU7evYnJXs65qmLNvO6fO9kPqjv66YE=";
hash = "sha256-UcJbWOYkNUJEilJL/LG5o+I1ugqEOEGfs+uvKUMnTMU=";
};
vendorHash = "sha256-T0N6e96F/4HkHKYNiPFME/PUJGh+pbTmmb4SdZiDVgw=";
vendorHash = "sha256-PN8ARsJQqRj333ervoy24PZoWkrCIYiGxOovzEhPNZQ=";
ldflags = [
"-s"
@ -34,5 +34,6 @@ buildGoModule rec {
homepage = "https://rsteube.github.io/carapace-bin/";
maintainers = with maintainers; [ star-szr ];
license = licenses.mit;
mainProgram = "carapace";
};
}

View file

@ -15323,7 +15323,9 @@ with pkgs;
undistract-me = callPackage ../shells/bash/undistract-me { };
carapace = callPackage ../shells/carapace { };
carapace = callPackage ../shells/carapace {
buildGoModule = buildGo121Module;
};
dash = callPackage ../shells/dash { };