forked from viperML/nh
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.nix
69 lines (66 loc) · 2.01 KB
/
package.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
stdenv,
lib,
rustPlatform,
installShellFiles,
makeBinaryWrapper,
darwin,
nvd,
use-nom ? true,
nix-output-monitor ? null,
rev ? "dirty",
crate2nix,
callPackage,
buildRustCrate,
defaultCrateOverrides,
}:
assert use-nom -> nix-output-monitor != null;
let
runtimeDeps = [ nvd ] ++ lib.optionals use-nom [ nix-output-monitor ];
cargoToml = builtins.fromTOML (builtins.readFile ./Cargo.toml);
generated = crate2nix.tools.${stdenv.hostPlatform.system}.generatedCargoNix {
name = "nh";
src = ./.;
};
crates = callPackage "${generated}/default.nix" {
buildRustCrateForPkgs =
_:
buildRustCrate.override {
defaultCrateOverrides = defaultCrateOverrides // {
nh = attrs: {
version = "${cargoToml.package.version}-${rev}";
nativeBuildInputs = [
installShellFiles
makeBinaryWrapper
];
buildInputs = lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
postInstall =
''
wrapProgram $out/bin/nh \
--prefix PATH : ${lib.makeBinPath runtimeDeps}
''
+
lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) # sh
''
installShellCompletion --cmd nh \
--bash <("$out/bin/nh" completions --shell bash) \
--zsh <("$out/bin/nh" completions --shell zsh) \
--fish <("$out/bin/nh" completions --shell fish)
'';
meta = {
description = "Yet another nix cli helper";
homepage = "https://github.com/ToyVo/nh_darwin";
license = lib.licenses.eupl12;
mainProgram = "nh";
maintainers = with lib.maintainers; [
drupol
viperML
ToyVo
];
};
};
};
};
};
in
crates.rootCrate.build