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:
parent
1352c28d1b
commit
71ff774a44
31
flake.nix
31
flake.nix
@ -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]))
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
// {
|
// {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user