forked from MercuryTechnologies/nix-your-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflake.nix
81 lines (70 loc) · 2.07 KB
/
flake.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
70
71
72
73
74
75
76
77
78
79
80
81
{
description = "A `nix` and `nix-shell` wrapper for shells other than `bash`";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = {
self,
nixpkgs,
flake-utils,
flake-compat,
}:
flake-utils.lib.eachDefaultSystem (
system: let
pkgs = import nixpkgs {
inherit system;
overlays = [self.overlays.default];
};
in {
packages = rec {
nix-your-shell = pkgs.nix-your-shell;
default = nix-your-shell;
};
checks = self.packages.${system};
# for debugging
# inherit pkgs;
devShells.default = pkgs.nix-your-shell.overrideAttrs (
old: {
# Make rust-analyzer work
RUST_SRC_PATH = pkgs.rustPlatform.rustLibSrc;
# Any dev tools you use in excess of the rust ones
nativeBuildInputs =
old.nativeBuildInputs;
}
);
}
)
// {
overlays.default = (
final: prev: {
nix-your-shell = final.rustPlatform.buildRustPackage {
pname = "nix-your-shell";
version = "1.3.0"; # LOAD-BEARING COMMENT. See: `.github/workflows/version.yaml`
cargoLock = {
lockFile = ./Cargo.lock;
};
src = ./.;
# Tools on the builder machine needed to build; e.g. pkg-config
nativeBuildInputs = [
final.rustfmt
final.clippy
];
# Native libs
buildInputs = [];
postCheck = ''
cargo fmt --check && echo "\`cargo fmt\` is OK"
cargo clippy -- --deny warnings && echo "\`cargo clippy\` is OK"
'';
passthru.generate-config = shell: final.runCommand "nix-your-shell-config" { } ''
${final.nix-your-shell}/bin/nix-your-shell ${shell} >> $out
'';
};
}
);
};
}