2025-07-26 11:39:35 +02:00

48 lines
853 B
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
pkg-config,
libgit2,
openssl,
sqlite,
zlib,
}:
rustPlatform.buildRustPackage rec {
pname = "intelli-shell";
version = "0.2.7";
src = fetchFromGitHub {
owner = "lasantosr";
repo = "intelli-shell";
rev = "v${version}";
hash = "sha256-D7hB1vKi54L7hU3TqTvzxXIr6XohfYLUTidR6wFJmfo=";
};
cargoHash = "sha256-vzmUmznY5uqPhaTzfT0KR+k2nvPmB0Jm9/N4lgzEe2E=";
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libgit2
openssl
sqlite
zlib
];
env = {
OPENSSL_NO_VENDOR = true;
};
meta = with lib; {
description = "Like IntelliSense, but for shells";
homepage = "https://github.com/lasantosr/intelli-shell";
license = licenses.asl20;
maintainers = with maintainers; [ iogamaster ];
mainProgram = "intelli-shell";
};
}