Hyprland/nix/default.nix

184 lines
3.7 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
pkg-config,
2024-04-08 19:53:07 +02:00
pkgconf,
makeWrapper,
cmake,
ninja,
binutils,
cairo,
expat,
fribidi,
2022-07-29 12:21:19 +02:00
git,
2024-06-17 12:03:59 +02:00
hwdata,
hyprcursor,
hyprlang,
hyprutils,
hyprwayland-scanner,
2023-01-06 15:31:57 +01:00
jq,
2023-11-17 13:24:43 +01:00
libGL,
libdatrie,
2024-06-17 12:03:59 +02:00
libdisplay-info,
libdrm,
2024-03-16 17:12:32 +01:00
libexecinfo,
libinput,
2024-06-17 12:03:59 +02:00
libliftoff,
libselinux,
libsepol,
libthai,
2024-04-23 06:01:20 +02:00
libuuid,
libxkbcommon,
mesa,
2024-06-17 12:03:59 +02:00
meson,
2023-03-20 17:22:34 +01:00
pango,
2022-11-11 13:35:28 +01:00
pciutils,
pcre2,
python3,
2024-06-17 12:03:59 +02:00
seatd,
systemd,
tomlplusplus,
wayland,
wayland-protocols,
wayland-scanner,
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
2024-05-09 18:24:31 +02:00
# Remove extra @PREFIX@ to fix pkg-config paths
sed -i "s#@PREFIX@/##g" hyprland.pc.in
2024-03-16 17:12:32 +01:00
'';
2024-06-17 12:03:59 +02:00
COMMITS = commit;
DATE = date;
2024-06-17 12:03:59 +02:00
DIRTY = lib.optionalString (commit == "") "dirty";
HASH = commit;
2024-06-17 12:03:59 +02:00
nativeBuildInputs = [
hyprwayland-scanner
jq
makeWrapper
cmake
meson # for wlroots
ninja
pkg-config
python3 # for udis86
wayland-scanner
];
outputs = [
"out"
"man"
"dev"
];
2022-08-21 17:58:03 +02:00
buildInputs = lib.concatLists [
[
cairo
expat
fribidi
git
2024-06-17 12:03:59 +02:00
hwdata
hyprcursor
hyprlang
hyprutils
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
2024-06-17 12:03:59 +02:00
# for wlroots
seatd
libdisplay-info
libliftoff
]
(lib.optionals stdenv.hostPlatform.isMusl [libexecinfo])
(lib.optionals enableXWayland [
xorg.libxcb
xorg.libXdmcp
xorg.xcbutil
2024-06-17 12:03:59 +02:00
xorg.xcbutilerrors
xorg.xcbutilrenderutil
xorg.xcbutilwm
xwayland
])
(lib.optionals withSystemd [systemd])
];
cmakeBuildType =
if debug
then "Debug"
else "RelWithDebInfo";
2024-06-17 12:03:59 +02:00
# we want as much debug info as possible
dontStrip = debug;
2024-06-17 12:03:59 +02:00
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"];
2024-06-17 12:03:59 +02:00
meta = {
2024-03-16 17:12:32 +01:00
homepage = "https://github.com/hyprwm/Hyprland";
2024-06-17 12:03:59 +02:00
description = "Dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
mainProgram = "Hyprland";
};
}