Hyprland/nix/default.nix

168 lines
3.7 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
pkg-config,
2024-04-08 19:53:07 +02:00
pkgconf,
makeWrapper,
meson,
ninja,
binutils,
cairo,
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,
libdrm,
2024-03-16 17:12:32 +01:00
libexecinfo,
libinput,
2024-04-23 06:01:20 +02:00
libuuid,
libxcb,
libxkbcommon,
mesa,
2023-03-20 17:22:34 +01:00
pango,
2022-11-11 13:35:28 +01:00
pciutils,
systemd,
tomlplusplus,
udis86,
wayland,
wayland-protocols,
wayland-scanner,
wlroots-hyprland,
xcbutilwm,
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.";
2024-03-16 17:12:32 +01:00
assert lib.assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been removed. Please refer https://wiki.hyprland.org/Configuring/XWayland"; let
wlr = wlroots-hyprland.override {inherit enableXWayland;};
2024-03-16 17:12:32 +01:00
in
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
patches = [
# make meson use the provided wlroots instead of the git submodule
./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@" '${commit}' \
--replace "@BRANCH@" "" \
--replace "@MESSAGE@" "" \
--replace "@DATE@" "${date}" \
--replace "@TAG@" "" \
--replace "@DIRTY@" '${
if commit == ""
then "dirty"
else ""
}'
'';
nativeBuildInputs = [
hyprwayland-scanner
jq
2024-03-16 17:12:32 +01:00
makeWrapper
meson
ninja
pkg-config
wayland-scanner
];
outputs = [
"out"
"man"
"dev"
];
2022-08-21 17:58:03 +02:00
buildInputs =
wlr.buildInputs
++ [
cairo
git
hyprcursor.dev
hyprland-protocols
hyprlang
libdrm
libGL
libinput
2024-04-23 06:01:20 +02:00
libuuid
libxkbcommon
mesa
pango
pciutils
tomlplusplus
udis86
wayland
wayland-protocols
2024-03-16 17:12:32 +01:00
wlr
]
2024-03-16 17:12:32 +01:00
++ lib.optionals stdenv.hostPlatform.isMusl [libexecinfo]
++ lib.optionals enableXWayland [libxcb xcbutilwm xwayland]
++ lib.optionals withSystemd [systemd];
mesonBuildType =
if debug
then "debug"
else "release";
2023-10-30 19:27:38 +01:00
mesonAutoFeatures = "disabled";
2024-03-16 17:12:32 +01:00
mesonFlags = [
(lib.mesonEnable "xwayland" enableXWayland)
(lib.mesonEnable "legacy_renderer" legacyRenderer)
(lib.mesonEnable "systemd" withSystemd)
];
postInstall = ''
2024-03-16 17:12:32 +01:00
ln -s ${wlr}/include/wlr $dev/include/hyprland/wlroots
${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;
2024-03-16 17:12:32 +01:00
platforms = wlr.meta.platforms;
mainProgram = "Hyprland";
};
}