mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-28 17:48:39 +00:00
Ensure we use correct LLVM in nix dev shell
This commit is contained in:
parent
1352c28d1b
commit
71ff774a44
31
flake.nix
31
flake.nix
@ -30,20 +30,25 @@
|
||||
default = conky;
|
||||
};
|
||||
|
||||
apps.conky = flake-utils.lib.mkApp {drv = packages.conky;};
|
||||
apps.default = apps.conky;
|
||||
devShells.default = mkShell {
|
||||
buildInputs =
|
||||
packages.conky.buildInputs
|
||||
++ packages.conky.nativeBuildInputs
|
||||
++ [
|
||||
alejandra # for beautifying flake
|
||||
lefthook # for git hooks
|
||||
nodejs # for web/ stuff
|
||||
# for docs
|
||||
(python3.withPackages (ps: with ps; [jinja2]))
|
||||
];
|
||||
apps.conky = flake-utils.lib.mkApp {
|
||||
drv = packages.conky;
|
||||
};
|
||||
apps.default = apps.conky;
|
||||
devShells.default =
|
||||
mkShell.override {
|
||||
stdenv = llvmPackages_18.libcxxStdenv;
|
||||
} rec {
|
||||
buildInputs =
|
||||
packages.conky.buildInputs
|
||||
++ packages.conky.nativeBuildInputs
|
||||
++ [
|
||||
alejandra # for beautifying flake
|
||||
lefthook # for git hooks
|
||||
nodejs # for web/ stuff
|
||||
# for docs
|
||||
(python3.withPackages (ps: with ps; [jinja2]))
|
||||
];
|
||||
};
|
||||
}
|
||||
)
|
||||
// {
|
||||
|
Loading…
x
Reference in New Issue
Block a user