1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-30 10:38:36 +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; default = conky;
}; };
apps.conky = flake-utils.lib.mkApp {drv = packages.conky;}; apps.conky = flake-utils.lib.mkApp {
apps.default = apps.conky; drv = packages.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.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]))
];
};
} }
) )
// { // {