504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
138 lines
3.1 KiB
Nix
138 lines
3.1 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, makeWrapper
|
|
, meson
|
|
, ninja
|
|
, binutils
|
|
, cairo
|
|
, git
|
|
, hyprland-protocols
|
|
, jq
|
|
, libGL
|
|
, libdrm
|
|
, libexecinfo
|
|
, libinput
|
|
, libxcb
|
|
, libxkbcommon
|
|
, mesa
|
|
, pango
|
|
, pciutils
|
|
, systemd
|
|
, udis86
|
|
, wayland
|
|
, wayland-protocols
|
|
, wayland-scanner
|
|
, wlroots
|
|
, xcbutilwm
|
|
, xwayland
|
|
, debug ? false
|
|
, enableXWayland ? true
|
|
, legacyRenderer ? false
|
|
, withSystemd ? true
|
|
, wrapRuntimeDeps ? true
|
|
# deprecated flags
|
|
, nvidiaPatches ? false
|
|
, hidpiXWayland ? false
|
|
, enableNvidiaPatches ? false
|
|
}:
|
|
assert lib.assertMsg (!nvidiaPatches) "The option `nvidiaPatches` has been removed.";
|
|
assert lib.assertMsg (!enableNvidiaPatches) "The option `enableNvidiaPatches` has been removed.";
|
|
assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been removed. Please refer https://wiki.hyprland.org/Configuring/XWayland";
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "hyprland" + lib.optionalString debug "-debug";
|
|
version = "0.33.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hyprwm";
|
|
repo = finalAttrs.pname;
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-p7el5oQZPy9l1zyIrlHu6nA4BAu59eLoSqBjhkw2jaw=";
|
|
};
|
|
|
|
patches = [
|
|
# make meson use the provided dependencies instead of the git submodules
|
|
"${finalAttrs.src}/nix/patches/meson-build.patch"
|
|
];
|
|
|
|
postPatch = ''
|
|
# Fix hardcoded paths to /usr installation
|
|
sed -i "s#/usr#$out#" src/render/OpenGL.cpp
|
|
|
|
# Generate version.h
|
|
cp src/version.h.in src/version.h
|
|
substituteInPlace src/version.h \
|
|
--replace "@HASH@" '${finalAttrs.src.rev}' \
|
|
--replace "@BRANCH@" "" \
|
|
--replace "@MESSAGE@" "" \
|
|
--replace "@TAG@" "" \
|
|
--replace "@DIRTY@" ""
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
jq
|
|
makeWrapper
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wayland-scanner
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
"dev"
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
cairo
|
|
git
|
|
hyprland-protocols
|
|
libGL
|
|
libdrm
|
|
libinput
|
|
libxkbcommon
|
|
mesa
|
|
udis86
|
|
wayland
|
|
wayland-protocols
|
|
pango
|
|
pciutils
|
|
wlroots
|
|
]
|
|
++ lib.optionals stdenv.hostPlatform.isMusl [ libexecinfo ]
|
|
++ lib.optionals enableXWayland [ libxcb xcbutilwm xwayland ]
|
|
++ lib.optionals withSystemd [ systemd ];
|
|
|
|
mesonBuildType =
|
|
if debug
|
|
then "debug"
|
|
else "release";
|
|
|
|
mesonFlags = builtins.concatLists [
|
|
(lib.optional (!enableXWayland) "-Dxwayland=disabled")
|
|
(lib.optional legacyRenderer "-DLEGACY_RENDERER:STRING=true")
|
|
(lib.optional withSystemd "-Dsystemd=enabled")
|
|
];
|
|
|
|
postInstall = ''
|
|
ln -s ${wlroots}/include/wlr $dev/include/hyprland/wlroots
|
|
${lib.optionalString wrapRuntimeDeps ''
|
|
wrapProgram $out/bin/Hyprland \
|
|
--suffix PATH : ${lib.makeBinPath [binutils pciutils]}
|
|
''}
|
|
'';
|
|
|
|
passthru.providedSessions = [ "hyprland" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/vaxerski/Hyprland";
|
|
description = "A dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ wozeparrot fufexan ];
|
|
mainProgram = "Hyprland";
|
|
platforms = wlroots.meta.platforms;
|
|
};
|
|
})
|