-
-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathflake.nix
More file actions
54 lines (52 loc) · 1.08 KB
/
flake.nix
File metadata and controls
54 lines (52 loc) · 1.08 KB
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
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
rust-overlay.url = "github:oxalica/rust-overlay";
};
outputs = {
self,
nixpkgs,
rust-overlay,
...
}: let
inherit (nixpkgs) lib;
inherit (lib.attrsets) genAttrs;
inherit (lib.systems) flakeExposed;
overlays = [(import rust-overlay)];
forAllSystems = fn:
genAttrs flakeExposed (
system:
fn (
import nixpkgs {
inherit system overlays;
config.allowUnfree = true;
}
)
);
in {
devShells =
forAllSystems (pkgs: {
default =
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
pkg-config
gtk3
libayatana-appindicator
libappindicator
];
buildInputs = with pkgs; [
nixd
(rust-bin.stable.latest.default.override {
extensions = ["rust-src" "rust-analyzer"];
})
];
shellHook = with pkgs; ''
export LD_LIBRARY_PATH="${lib.makeLibraryPath [
libayatana-appindicator
libappindicator
]}:$LD_LIBRARY_PATH"
'';
};
});
};
}