Hyprland/nix/default.nix

183 lines
3.9 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
pkg-config,
2024-04-08 19:53:07 +02:00
pkgconf,
makeWrapper,
cmake,
meson,
ninja,
binutils,
cairo,
expat,
fribidi,
2022-07-29 12:21:19 +02:00
git,
hyprcursor,
hyprland-protocols,
hyprlang,
hyprwayland-scanner,
2023-01-06 15:31:57 +01:00
jq,
2023-11-17 13:24:43 +01:00
libGL,
libdatrie,
libdrm,
2024-03-16 17:12:32 +01:00
libexecinfo,
libinput,
libselinux,
libsepol,
libthai,
2024-04-23 06:01:20 +02:00
libuuid,
libxkbcommon,
mesa,
2023-03-20 17:22:34 +01:00
pango,
2022-11-11 13:35:28 +01:00
pciutils,
pcre2,
python3,
systemd,
tomlplusplus,
udis86,
wayland,
wayland-protocols,
wayland-scanner,
wlroots,
xorg,
xwayland,
debug ? false,
enableXWayland ? true,
legacyRenderer ? false,
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
wrapRuntimeDeps ? true,
version ? "git",
2023-03-04 16:34:15 +01:00
commit,
date,
# deprecated flags
2023-11-26 03:58:57 +01:00
enableNvidiaPatches ? false,
nvidiaPatches ? false,
hidpiXWayland ? false,
}:
2023-11-26 03:58:57 +01:00
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";
2023-09-07 10:20:08 +02:00
stdenv.mkDerivation {
2023-11-26 03:58:57 +01:00
pname = "hyprland${lib.optionalString debug "-debug"}";
inherit version;
2022-08-12 22:12:24 +02:00
src = lib.cleanSourceWith {
filter = name: type: let
baseName = baseNameOf (toString name);
in
! (lib.hasSuffix ".nix" baseName);
src = lib.cleanSource ../.;
};
2024-03-16 17:12:32 +01:00
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-warn "@HASH@" '${commit}' \
--replace-warn "@BRANCH@" "" \
--replace-warn "@MESSAGE@" "" \
--replace-warn "@DATE@" "${date}" \
--replace-warn "@TAG@" "" \
--replace-warn "@DIRTY@" '${
2024-03-16 17:12:32 +01:00
if commit == ""
then "dirty"
else ""
}'
'';
nativeBuildInputs = lib.concatLists [
[
hyprwayland-scanner
jq
makeWrapper
cmake
ninja
pkg-config
python3
wayland-scanner
]
# introduce this later so that cmake takes precedence
wlroots.nativeBuildInputs
];
outputs = [
"out"
"man"
"dev"
];
2022-08-21 17:58:03 +02:00
buildInputs = lib.concatLists [
wlroots.buildInputs
udis86.buildInputs
[
cairo
expat
fribidi
git
hyprcursor.dev
hyprland-protocols
hyprlang
libGL
libdrm
libdatrie
libinput
libselinux
libsepol
libthai
2024-04-23 06:01:20 +02:00
libuuid
libxkbcommon
mesa
pango
pciutils
pcre2
tomlplusplus
wayland
wayland-protocols
]
(lib.optionals stdenv.hostPlatform.isMusl [libexecinfo])
(lib.optionals enableXWayland [
xorg.libxcb
xorg.libXdmcp
xorg.xcbutil
xorg.xcbutilwm
xwayland
])
(lib.optionals withSystemd [systemd])
];
cmakeBuildType =
if debug
then "Debug"
else "RelWithDebInfo";
cmakeFlags = [
(lib.cmakeBool "NO_XWAYLAND" (!enableXWayland))
(lib.cmakeBool "LEGACY_RENDERER" legacyRenderer)
(lib.cmakeBool "NO_SYSTEMD" (!withSystemd))
];
postInstall = ''
${lib.optionalString wrapRuntimeDeps ''
wrapProgram $out/bin/Hyprland \
--suffix PATH : ${lib.makeBinPath [
binutils
pciutils
2024-04-08 19:53:07 +02:00
pkgconf
]}
''}
'';
passthru.providedSessions = ["hyprland"];
meta = with lib; {
2024-03-16 17:12:32 +01:00
homepage = "https://github.com/hyprwm/Hyprland";
description = "A dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
license = licenses.bsd3;
platforms = wlroots.meta.platforms;
mainProgram = "Hyprland";
};
}