mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 09:25:58 +01:00
flake.nix: inherit stdenv from package
Means we no longer have to change the base stdenv in two places.
This commit is contained in:
parent
d936eb437b
commit
6b6554adb8
1 changed files with 1 additions and 5 deletions
|
@ -95,13 +95,9 @@
|
||||||
devShells = eachSystem (system: {
|
devShells = eachSystem (system: {
|
||||||
default =
|
default =
|
||||||
pkgsFor.${system}.mkShell.override {
|
pkgsFor.${system}.mkShell.override {
|
||||||
stdenv = pkgsFor.${system}.gcc14Stdenv;
|
inherit (self.packages.${system}.default) stdenv;
|
||||||
} {
|
} {
|
||||||
name = "hyprland-shell";
|
name = "hyprland-shell";
|
||||||
nativeBuildInputs = with pkgsFor.${system}; [
|
|
||||||
expat
|
|
||||||
libxml2
|
|
||||||
];
|
|
||||||
hardeningDisable = ["fortify"];
|
hardeningDisable = ["fortify"];
|
||||||
inputsFrom = [pkgsFor.${system}.hyprland];
|
inputsFrom = [pkgsFor.${system}.hyprland];
|
||||||
packages = [pkgsFor.${system}.clang-tools];
|
packages = [pkgsFor.${system}.clang-tools];
|
||||||
|
|
Loading…
Reference in a new issue