1
0
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:
Brenden Matthews 2024-05-02 08:06:30 -04:00
parent 1352c28d1b
commit 71ff774a44

View File

@ -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]))
];
};
}
)
// {