-
Notifications
You must be signed in to change notification settings - Fork 35
/
flake.nix
73 lines (70 loc) · 1.65 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
{
description = "devShell for Rust projects";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-parts.url = "github:hercules-ci/flake-parts";
};
outputs = inputs @ {
self,
nixpkgs,
flake-parts,
...
}:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
perSystem = {
config,
self',
inputs',
pkgs,
system,
...
}: let
pkgs = import nixpkgs {
inherit system;
overlays = [
self.overlays.default
];
};
in {
packages = rec {
default = tmux-sessionizer;
inherit (pkgs) tmux-sessionizer;
};
devShells.default = pkgs.mkShell {
name = "rust devShell";
OPENSSL_NO_VENDOR = 1;
buildInputs = with pkgs;
with pkgs.rustPlatform; [
cargo
clippy
rustc
rustfmt
rust-analyzer
openssl
pkg-config
]
++ lib.optionals stdenv.isDarwin [
libgit2
darwin.Security
];
};
};
flake = {
overlays.default = final: prev: {
tmux-sessionizer = prev.tmux-sessionizer.overrideAttrs (oa: {
src = self;
version = ((final.lib.importTOML "${self}/Cargo.toml").package).version;
cargoDeps = final.rustPlatform.importCargoLock {
lockFile = self + "/Cargo.lock";
};
});
};
};
};
}