mirror of
https://github.com/outfoxxed/hy3.git
synced 2025-12-04 23:50:10 +00:00
19 lines
294 B
Nix
19 lines
294 B
Nix
{
|
|
hyprland,
|
|
pkgs,
|
|
hlversion ? "git",
|
|
hy3 ? pkgs.callPackage ./default.nix {
|
|
inherit hyprland hlversion;
|
|
versionCheck = false;
|
|
},
|
|
}: pkgs.mkShell.override {
|
|
inherit (hy3) stdenv;
|
|
} {
|
|
inputsFrom = [ hy3 ];
|
|
|
|
nativeBuildInputs = with pkgs; [
|
|
clang-tools
|
|
bear
|
|
];
|
|
}
|