carapace: 1.0.5 -> 1.0.6

- depend on go 1.23
- update src to point to updated upstream

Changes: https://github.com/carapace-sh/carapace-bin/releases/tag/v1.0.6
This commit is contained in:
Ashish SHUKLA 2024-09-12 10:49:14 +05:30
parent 111ed8812c
commit 2ec6fe1a72
No known key found for this signature in database
2 changed files with 8 additions and 6 deletions

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "carapace";
version = "1.0.5";
version = "1.0.6";
src = fetchFromGitHub {
owner = "rsteube";
repo = "${pname}-bin";
owner = "carapace-sh";
repo = "carapace-bin";
rev = "v${version}";
hash = "sha256-PDxYRFf7nQfPb6uazwRmZOvCy3xMF5OqHDLy7hsFSBE=";
hash = "sha256-onkYihS4abrOfqOehlDy+ooL2d04w6DwOY3+B4+L3IQ=";
};
vendorHash = "sha256-GnwOyIKJ1K8+0a+VrXcohclgxnQTezu4S0C2cJO+ULU=";
vendorHash = "sha256-UFpQAlXFS1O/MqeGvUAWSQLhP03wf8JX8zz8cMyMmrc=";
ldflags = [
"-s"

View File

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