Hyprland/nix/default.nix

201 lines
4.7 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
2024-09-19 18:53:34 +03:00
stdenvAdapters,
pkg-config,
2024-04-08 20:53:07 +03:00
pkgconf,
makeWrapper,
cmake,
2024-09-13 16:21:33 +02:00
meson,
ninja,
aquamarine,
binutils,
cairo,
epoll-shim,
2022-07-29 13:21:19 +03:00
git,
glaze,
hyprcursor,
hyprgraphics,
2024-09-22 21:19:09 +03:00
hyprland-protocols,
hyprland-qtutils,
hyprlang,
hyprutils,
hyprwayland-scanner,
2023-11-17 12:24:43 +00:00
libGL,
libdrm,
2024-03-16 18:12:32 +02:00
libexecinfo,
libinput,
libxkbcommon,
2024-09-02 23:09:44 +03:00
libuuid,
libgbm,
2023-03-20 18:22:34 +02:00
pango,
2022-11-11 13:35:28 +01:00
pciutils,
re2,
systemd,
tomlplusplus,
udis86-hyprland,
wayland,
wayland-protocols,
wayland-scanner,
xorg,
xwayland,
debug ? false,
enableXWayland ? true,
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
wrapRuntimeDeps ? true,
version ? "git",
2023-03-04 17:34:15 +02:00
commit,
2024-07-21 20:54:57 +03:00
revCount,
date,
# deprecated flags
2023-11-26 02:58:57 +00:00
enableNvidiaPatches ? false,
nvidiaPatches ? false,
hidpiXWayland ? false,
legacyRenderer ? false,
2024-09-19 18:53:34 +03:00
}: let
2024-12-23 20:07:12 +02:00
inherit (builtins) baseNameOf foldl' readFile;
2024-09-21 14:27:13 +03:00
inherit (lib.asserts) assertMsg;
inherit (lib.attrsets) mapAttrsToList;
inherit (lib.lists) flatten concatLists optional optionals;
inherit (lib.sources) cleanSourceWith cleanSource;
2024-12-23 20:07:12 +02:00
inherit (lib.strings) hasSuffix makeBinPath optionalString mesonBool mesonEnable trim;
2024-09-21 14:27:13 +03:00
adapters = flatten [
2024-09-19 18:53:34 +03:00
stdenvAdapters.useMoldLinker
(lib.optional debug stdenvAdapters.keepDebugInfo)
2024-09-19 18:53:34 +03:00
];
2022-08-12 13:12:24 -07:00
2024-09-21 14:27:13 +03:00
customStdenv = foldl' (acc: adapter: adapter acc) stdenv adapters;
2024-09-19 18:53:34 +03:00
in
2024-09-21 14:27:13 +03:00
assert assertMsg (!nvidiaPatches) "The option `nvidiaPatches` has been removed.";
assert assertMsg (!enableNvidiaPatches) "The option `enableNvidiaPatches` has been removed.";
2025-06-20 01:45:06 +03:00
assert assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been removed. Please refer https://wiki.hypr.land/Configuring/XWayland";
assert assertMsg (!legacyRenderer) "The option `legacyRenderer` has been removed. Legacy renderer is no longer supported.";
2024-12-06 10:16:18 +02:00
customStdenv.mkDerivation (finalAttrs: {
2024-09-21 14:27:13 +03:00
pname = "hyprland${optionalString debug "-debug"}";
2024-09-19 18:53:34 +03:00
inherit version;
2024-09-21 14:27:13 +03:00
src = cleanSourceWith {
filter = name: _type: let
2024-09-19 18:53:34 +03:00
baseName = baseNameOf (toString name);
in
2024-09-21 14:27:13 +03:00
! (hasSuffix ".nix" baseName);
src = cleanSource ../.;
2024-09-19 18:53:34 +03:00
};
2024-05-09 19:24:31 +03:00
2024-09-19 18:53:34 +03:00
postPatch = ''
# Fix hardcoded paths to /usr installation
sed -i "s#/usr#$out#" src/render/OpenGL.cpp
2024-03-16 18:12:32 +02:00
2024-09-19 18:53:34 +03:00
# Remove extra @PREFIX@ to fix pkg-config paths
sed -i "s#@PREFIX@/##g" hyprland.pc.in
'';
2024-09-19 18:53:34 +03:00
COMMITS = revCount;
DATE = date;
2024-09-21 14:27:13 +03:00
DIRTY = optionalString (commit == "") "dirty";
2024-09-19 18:53:34 +03:00
HASH = commit;
2024-12-23 20:07:12 +02:00
TAG = "v${trim (readFile "${finalAttrs.src}/VERSION")}";
2024-09-01 17:18:50 +03:00
2024-09-19 18:53:34 +03:00
depsBuildBuild = [
pkg-config
];
2024-09-19 18:53:34 +03:00
nativeBuildInputs = [
hyprwayland-scanner
makeWrapper
meson
ninja
cmake # needed for glaze
2024-09-19 18:53:34 +03:00
pkg-config
];
2022-08-21 17:58:03 +02:00
2024-09-19 18:53:34 +03:00
outputs = [
"out"
"man"
"dev"
];
2024-09-21 14:27:13 +03:00
buildInputs = concatLists [
2024-09-19 18:53:34 +03:00
[
aquamarine
cairo
git
glaze
2024-09-19 18:53:34 +03:00
hyprcursor
hyprgraphics
2024-09-22 21:19:09 +03:00
hyprland-protocols
2024-09-19 18:53:34 +03:00
hyprlang
hyprutils
libdrm
libGL
libinput
libuuid
libxkbcommon
libgbm
2024-09-19 18:53:34 +03:00
pango
pciutils
re2
2024-09-19 18:53:34 +03:00
tomlplusplus
udis86-hyprland
2024-09-19 18:53:34 +03:00
wayland
wayland-protocols
2024-06-06 10:07:53 +02:00
wayland-scanner
2024-09-19 18:53:34 +03:00
xorg.libXcursor
]
(optionals customStdenv.hostPlatform.isBSD [epoll-shim])
2024-09-21 14:27:13 +03:00
(optionals customStdenv.hostPlatform.isMusl [libexecinfo])
(optionals enableXWayland [
2024-09-19 18:53:34 +03:00
xorg.libxcb
xorg.libXdmcp
xorg.xcbutilerrors
xorg.xcbutilrenderutil
xorg.xcbutilwm
xwayland
])
2024-09-21 14:27:13 +03:00
(optional withSystemd systemd)
2024-09-19 18:53:34 +03:00
];
strictDeps = true;
2024-09-19 18:53:34 +03:00
mesonBuildType =
if debug
then "debug"
2024-09-19 18:53:34 +03:00
else "release";
2024-06-17 13:03:59 +03:00
2024-09-21 14:27:13 +03:00
mesonFlags = flatten [
(mapAttrsToList mesonEnable {
"xwayland" = enableXWayland;
"systemd" = withSystemd;
"uwsm" = false;
"hyprpm" = false;
2024-09-21 14:27:13 +03:00
})
2024-09-22 20:53:34 +03:00
(mapAttrsToList mesonBool {
"b_pch" = false;
"tracy_enable" = false;
})
2024-09-19 18:53:34 +03:00
];
postInstall = ''
2024-09-21 14:27:13 +03:00
${optionalString wrapRuntimeDeps ''
2024-09-19 18:53:34 +03:00
wrapProgram $out/bin/Hyprland \
2024-09-21 14:27:13 +03:00
--suffix PATH : ${makeBinPath [
2024-09-19 18:53:34 +03:00
binutils
hyprland-qtutils
2024-09-19 18:53:34 +03:00
pciutils
pkgconf
]}
''}
'';
2024-09-19 18:53:34 +03:00
passthru.providedSessions = ["hyprland"];
2024-09-19 18:53:34 +03:00
meta = {
homepage = "https://github.com/hyprwm/Hyprland";
description = "Dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
mainProgram = "Hyprland";
};
2024-12-06 10:16:18 +02:00
})