intelli-shell: 0.2.7 -> 3.2.3 (#447785)

This commit is contained in:
isabel
2025-10-04 13:09:46 +00:00
committed by GitHub
2 changed files with 14 additions and 4 deletions
+5
View File
@@ -14284,6 +14284,11 @@
githubId = 2034420;
name = "Luke Sandell";
};
lasantosr = {
github = "lasantosr";
githubId = 5946707;
name = "Luis Santos";
};
lassulus = {
email = "lassulus@gmail.com";
matrix = "@lassulus:lassul.us";
+9 -4
View File
@@ -11,21 +11,26 @@
rustPlatform.buildRustPackage rec {
pname = "intelli-shell";
version = "0.2.7";
version = "3.2.3";
src = fetchFromGitHub {
owner = "lasantosr";
repo = "intelli-shell";
rev = "v${version}";
hash = "sha256-D7hB1vKi54L7hU3TqTvzxXIr6XohfYLUTidR6wFJmfo=";
hash = "sha256-kwwZzuo/eH+bssSFjBWC3YwP6X/CoRPo8OCa/0wGrp8=";
};
cargoHash = "sha256-vzmUmznY5uqPhaTzfT0KR+k2nvPmB0Jm9/N4lgzEe2E=";
cargoHash = "sha256-0wS751jE0VK/FaoL7WNc2OezJeDmYJNO+IKezB7Ma1Q=";
nativeBuildInputs = [
pkg-config
];
buildNoDefaultFeatures = true;
buildFeatures = [
"extra-features"
];
buildInputs = [
libgit2
openssl
@@ -41,7 +46,7 @@ rustPlatform.buildRustPackage rec {
description = "Like IntelliSense, but for shells";
homepage = "https://github.com/lasantosr/intelli-shell";
license = licenses.asl20;
maintainers = [ ];
maintainers = with maintainers; [ lasantosr ];
mainProgram = "intelli-shell";
};
}