forked from mirrors/nixpkgs
hyprland, hyprpaper: fix build on aarch64-linux
This commit is contained in:
parent
733dcaf53d
commit
a9db54b790
|
@ -90,7 +90,5 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
maintainers = with maintainers; [ wozeparrot ];
|
||||
inherit (wayland.meta) platforms;
|
||||
mainProgram = "Hyprland";
|
||||
# ofborg failure: g++ does not recognize '-std=c++23'
|
||||
broken = stdenv.isAarch64;
|
||||
};
|
||||
})
|
||||
|
|
|
@ -59,7 +59,5 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ wozeparrot ];
|
||||
inherit (wayland.meta) platforms;
|
||||
# ofborg failure: g++ does not recognize '-std=c++23'
|
||||
broken = stdenv.isAarch64;
|
||||
};
|
||||
})
|
||||
|
|
|
@ -4320,9 +4320,13 @@ with pkgs;
|
|||
|
||||
hypr = callPackage ../applications/window-managers/hyprwm/hypr { };
|
||||
|
||||
hyprland = callPackage ../applications/window-managers/hyprwm/hyprland { };
|
||||
hyprland = callPackage ../applications/window-managers/hyprwm/hyprland {
|
||||
stdenv = gcc11Stdenv;
|
||||
};
|
||||
|
||||
hyprpaper = callPackage ../applications/window-managers/hyprwm/hyprpaper { };
|
||||
hyprpaper = callPackage ../applications/window-managers/hyprwm/hyprpaper {
|
||||
stdenv = gcc11Stdenv;
|
||||
};
|
||||
|
||||
hysteria = callPackage ../tools/networking/hysteria { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue