Hyprland/nix/default.nix

155 lines
3.3 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
pkg-config,
makeWrapper,
meson,
ninja,
binutils,
cairo,
2022-07-29 12:21:19 +02:00
git,
hyprcursor,
hyprland-protocols,
hyprlang,
2023-01-06 15:31:57 +01:00
jq,
2023-11-17 13:24:43 +01:00
libGL,
libdrm,
libinput,
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,
xcbutilwm,
xwayland,
debug ? false,
enableXWayland ? true,
legacyRenderer ? false,
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
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 ../.;
};
nativeBuildInputs = [
jq
meson
ninja
pkg-config
makeWrapper
wayland-scanner
];
outputs = [
"out"
"man"
"dev"
];
2022-08-21 17:58:03 +02:00
buildInputs =
[
cairo
git
hyprcursor.dev
hyprland-protocols
hyprlang
libdrm
libGL
libinput
libxkbcommon
mesa
pango
pciutils
tomlplusplus
udis86
wayland
wayland-protocols
2023-11-26 03:58:57 +01:00
wlroots
]
++ lib.optionals enableXWayland [libxcb xcbutilwm xwayland]
++ lib.optionals withSystemd [systemd];
# avoid wrapping
propagatedBuildInputs = [
stdenv.cc
binutils
pciutils
];
mesonBuildType =
if debug
then "debug"
else "release";
2023-10-30 19:27:38 +01:00
mesonAutoFeatures = "disabled";
mesonFlags = builtins.concatLists [
(lib.optional enableXWayland "-Dxwayland=enabled")
(lib.optional legacyRenderer "-Dlegacy_renderer=enabled")
(lib.optional withSystemd "-Dsystemd=enabled")
];
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 ""
}'
'';
2022-07-08 16:46:42 +02:00
postInstall = ''
ln -s ${wlroots}/include/wlr $dev/include/hyprland/wlroots
'';
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;
platforms = platforms.linux;
mainProgram = "Hyprland";
};
}