-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
flake.nix
33 lines (33 loc) · 862 Bytes
/
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
{
description = "";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
name = "catppuccin-egui";
packages = with pkgs; [
cargo
rustc
clippy
rustfmt
cargo-semver-checks
rust-analyzer
];
# I use Wayland so this probably won't work if you're on X. Please
# send a PR if you do get it to work for X.
LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath (with pkgs; [
wayland
libGL
libxkbcommon
]);
};
}
);
}