+5
maintainers/maintainer-list.nix
+5
maintainers/maintainer-list.nix
···
14284
14284
githubId = 2034420;
14285
14285
name = "Luke Sandell";
14286
14286
};
14287
+
lasantosr = {
14288
+
github = "lasantosr";
14289
+
githubId = 5946707;
14290
+
name = "Luis Santos";
14291
+
};
14287
14292
lassulus = {
14288
14293
email = "lassulus@gmail.com";
14289
14294
matrix = "@lassulus:lassul.us";
+9
-4
pkgs/by-name/in/intelli-shell/package.nix
+9
-4
pkgs/by-name/in/intelli-shell/package.nix
···
11
11
12
12
rustPlatform.buildRustPackage rec {
13
13
pname = "intelli-shell";
14
-
version = "0.2.7";
14
+
version = "3.2.3";
15
15
16
16
src = fetchFromGitHub {
17
17
owner = "lasantosr";
18
18
repo = "intelli-shell";
19
19
rev = "v${version}";
20
-
hash = "sha256-D7hB1vKi54L7hU3TqTvzxXIr6XohfYLUTidR6wFJmfo=";
20
+
hash = "sha256-kwwZzuo/eH+bssSFjBWC3YwP6X/CoRPo8OCa/0wGrp8=";
21
21
};
22
22
23
-
cargoHash = "sha256-vzmUmznY5uqPhaTzfT0KR+k2nvPmB0Jm9/N4lgzEe2E=";
23
+
cargoHash = "sha256-0wS751jE0VK/FaoL7WNc2OezJeDmYJNO+IKezB7Ma1Q=";
24
24
25
25
nativeBuildInputs = [
26
26
pkg-config
27
27
];
28
28
29
+
buildNoDefaultFeatures = true;
30
+
buildFeatures = [
31
+
"extra-features"
32
+
];
33
+
29
34
buildInputs = [
30
35
libgit2
31
36
openssl
···
41
46
description = "Like IntelliSense, but for shells";
42
47
homepage = "https://github.com/lasantosr/intelli-shell";
43
48
license = licenses.asl20;
44
-
maintainers = [ ];
49
+
maintainers = with maintainers; [ lasantosr ];
45
50
mainProgram = "intelli-shell";
46
51
};
47
52
}