2022-05-17 13:11:24 +02:00
|
|
|
{
|
|
|
|
|
lib,
|
|
|
|
|
stdenv,
|
2024-09-19 18:53:34 +03:00
|
|
|
stdenvAdapters,
|
2022-05-17 13:11:24 +02:00
|
|
|
pkg-config,
|
2024-04-08 20:53:07 +03:00
|
|
|
pkgconf,
|
2023-05-16 13:39:14 -07:00
|
|
|
makeWrapper,
|
2024-12-27 15:40:46 +01:00
|
|
|
cmake,
|
2024-07-21 13:09:54 +02:00
|
|
|
aquamarine,
|
2023-05-16 13:39:14 -07:00
|
|
|
binutils,
|
2022-12-19 12:13:07 +00:00
|
|
|
cairo,
|
2025-03-23 18:19:34 +02:00
|
|
|
epoll-shim,
|
2022-07-29 13:21:19 +03:00
|
|
|
git,
|
2024-12-27 15:40:46 +01:00
|
|
|
glaze,
|
2024-03-09 16:52:59 +00:00
|
|
|
hyprcursor,
|
2024-12-03 18:58:24 +00:00
|
|
|
hyprgraphics,
|
2024-09-22 21:19:09 +03:00
|
|
|
hyprland-protocols,
|
2025-11-07 15:48:13 +00:00
|
|
|
hyprland-guiutils,
|
2024-02-18 15:00:34 +00:00
|
|
|
hyprlang,
|
2024-06-11 17:17:45 +02:00
|
|
|
hyprutils,
|
2024-04-20 13:25:29 +01:00
|
|
|
hyprwayland-scanner,
|
2025-12-04 17:59:47 +00:00
|
|
|
hyprwire,
|
2023-11-17 12:24:43 +00:00
|
|
|
libGL,
|
2022-05-17 13:11:24 +02:00
|
|
|
libdrm,
|
2024-03-16 18:12:32 +02:00
|
|
|
libexecinfo,
|
2022-05-17 13:11:24 +02:00
|
|
|
libinput,
|
|
|
|
|
libxkbcommon,
|
2024-09-02 23:09:44 +03:00
|
|
|
libuuid,
|
2025-03-14 18:24:55 +00:00
|
|
|
libgbm,
|
2025-11-17 18:34:02 +00:00
|
|
|
muparser,
|
2023-03-20 18:22:34 +02:00
|
|
|
pango,
|
2022-11-11 13:35:28 +01:00
|
|
|
pciutils,
|
2024-12-16 13:22:36 -06:00
|
|
|
re2,
|
2023-01-05 14:17:55 -05:00
|
|
|
systemd,
|
2023-12-07 10:41:09 +00:00
|
|
|
tomlplusplus,
|
2024-09-22 21:20:35 +03:00
|
|
|
udis86-hyprland,
|
2022-05-17 13:11:24 +02:00
|
|
|
wayland,
|
|
|
|
|
wayland-protocols,
|
|
|
|
|
wayland-scanner,
|
2024-04-21 19:58:54 +03:00
|
|
|
xorg,
|
2022-05-17 13:11:24 +02:00
|
|
|
xwayland,
|
2022-07-27 14:57:27 +03:00
|
|
|
debug ? false,
|
2022-05-17 13:11:24 +02:00
|
|
|
enableXWayland ? true,
|
2023-07-27 17:11:13 +08:00
|
|
|
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
|
2024-03-15 10:11:54 +02:00
|
|
|
wrapRuntimeDeps ? true,
|
2022-05-17 13:11:24 +02:00
|
|
|
version ? "git",
|
2023-03-04 17:34:15 +02:00
|
|
|
commit,
|
2024-07-21 20:54:57 +03:00
|
|
|
revCount,
|
2023-12-17 14:29:58 +00:00
|
|
|
date,
|
2023-08-02 00:49:30 +03:00
|
|
|
# deprecated flags
|
2023-11-26 02:58:57 +00:00
|
|
|
enableNvidiaPatches ? false,
|
2023-08-02 00:49:30 +03:00
|
|
|
nvidiaPatches ? false,
|
|
|
|
|
hidpiXWayland ? false,
|
2025-05-15 11:13:24 +02:00
|
|
|
legacyRenderer ? false,
|
2025-11-17 09:10:00 +02:00
|
|
|
withHyprtester ? false,
|
2024-09-19 18:53:34 +03:00
|
|
|
}: let
|
2025-06-24 21:37:25 +03:00
|
|
|
inherit (builtins) 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;
|
2024-09-22 12:37:08 +03:00
|
|
|
inherit (lib.strings) makeBinPath optionalString cmakeBool trim;
|
2025-06-24 21:37:25 +03:00
|
|
|
fs = lib.fileset;
|
2024-09-21 14:27:13 +03:00
|
|
|
|
|
|
|
|
adapters = flatten [
|
2024-09-19 18:53:34 +03:00
|
|
|
stdenvAdapters.useMoldLinker
|
2024-11-07 10:52:12 +02:00
|
|
|
(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";
|
2025-05-15 11:13:24 +02:00
|
|
|
assert assertMsg (!legacyRenderer) "The option `legacyRenderer` has been removed. Legacy renderer is no longer supported.";
|
2025-11-17 09:10:00 +02:00
|
|
|
assert assertMsg (!withHyprtester) "The option `withHyprtester` has been removed. Hyprtester is always built now.";
|
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;
|
2022-05-08 21:57:40 +05:30
|
|
|
|
2025-06-24 21:37:25 +03:00
|
|
|
src = fs.toSource {
|
|
|
|
|
root = ../.;
|
|
|
|
|
fileset =
|
|
|
|
|
fs.intersection
|
|
|
|
|
# allows non-flake builds to only include files tracked by git
|
|
|
|
|
(fs.gitTracked ../.)
|
2025-10-14 21:45:11 +03:00
|
|
|
(fs.unions (flatten [
|
2025-06-24 21:37:25 +03:00
|
|
|
../assets/hyprland-portals.conf
|
|
|
|
|
../assets/install
|
|
|
|
|
../hyprctl
|
|
|
|
|
../hyprland.pc.in
|
2025-11-17 09:10:00 +02:00
|
|
|
../hyprtester
|
2025-06-24 21:37:25 +03:00
|
|
|
../LICENSE
|
|
|
|
|
../protocols
|
|
|
|
|
../src
|
|
|
|
|
../systemd
|
|
|
|
|
../VERSION
|
|
|
|
|
(fs.fileFilter (file: file.hasExt "1") ../docs)
|
|
|
|
|
(fs.fileFilter (file: file.hasExt "conf" || file.hasExt "desktop") ../example)
|
|
|
|
|
(fs.fileFilter (file: file.hasExt "sh") ../scripts)
|
2024-09-22 12:37:08 +03:00
|
|
|
(fs.fileFilter (file: file.name == "CMakeLists.txt") ../.)
|
2025-10-14 21:45:11 +03:00
|
|
|
]));
|
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-05-10 23:51:53 +01:00
|
|
|
|
2025-11-16 19:32:32 +02:00
|
|
|
env = {
|
|
|
|
|
GIT_COMMITS = revCount;
|
|
|
|
|
GIT_COMMIT_DATE = date;
|
|
|
|
|
GIT_COMMIT_HASH = commit;
|
|
|
|
|
GIT_DIRTY = if (commit == "") then "clean" else "dirty";
|
|
|
|
|
GIT_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
|
|
|
|
|
];
|
2022-05-08 21:57:40 +05:30
|
|
|
|
2024-09-19 18:53:34 +03:00
|
|
|
nativeBuildInputs = [
|
|
|
|
|
hyprwayland-scanner
|
2025-12-04 17:59:47 +00:00
|
|
|
hyprwire
|
2024-09-19 18:53:34 +03:00
|
|
|
makeWrapper
|
2024-09-22 12:36:34 +03:00
|
|
|
cmake
|
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"
|
|
|
|
|
];
|
2022-05-17 13:11:24 +02:00
|
|
|
|
2024-09-21 14:27:13 +03:00
|
|
|
buildInputs = concatLists [
|
2024-09-19 18:53:34 +03:00
|
|
|
[
|
|
|
|
|
aquamarine
|
|
|
|
|
cairo
|
|
|
|
|
git
|
2024-12-27 15:40:46 +01:00
|
|
|
glaze
|
2024-09-19 18:53:34 +03:00
|
|
|
hyprcursor
|
2024-12-03 18:58:24 +00:00
|
|
|
hyprgraphics
|
2024-09-22 21:19:09 +03:00
|
|
|
hyprland-protocols
|
2024-09-19 18:53:34 +03:00
|
|
|
hyprlang
|
|
|
|
|
hyprutils
|
2025-12-04 17:59:47 +00:00
|
|
|
hyprwire
|
2024-09-19 18:53:34 +03:00
|
|
|
libdrm
|
|
|
|
|
libGL
|
|
|
|
|
libinput
|
|
|
|
|
libuuid
|
|
|
|
|
libxkbcommon
|
2025-03-14 18:24:55 +00:00
|
|
|
libgbm
|
2025-11-17 18:34:02 +00:00
|
|
|
muparser
|
2024-09-19 18:53:34 +03:00
|
|
|
pango
|
|
|
|
|
pciutils
|
2024-12-16 13:22:36 -06:00
|
|
|
re2
|
2024-09-19 18:53:34 +03:00
|
|
|
tomlplusplus
|
2024-09-22 21:20:35 +03:00
|
|
|
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
|
|
|
|
|
]
|
2025-05-15 11:13:24 +02:00
|
|
|
(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
|
|
|
];
|
2022-05-08 21:57:40 +05:30
|
|
|
|
2025-03-23 18:19:34 +02:00
|
|
|
strictDeps = true;
|
|
|
|
|
|
2024-09-22 12:37:08 +03:00
|
|
|
cmakeBuildType =
|
2024-09-19 18:53:34 +03:00
|
|
|
if debug
|
2024-09-22 12:37:08 +03:00
|
|
|
then "Debug"
|
|
|
|
|
else "RelWithDebInfo";
|
|
|
|
|
|
|
|
|
|
# we want as much debug info as possible
|
|
|
|
|
dontStrip = debug;
|
|
|
|
|
|
|
|
|
|
cmakeFlags = mapAttrsToList cmakeBool {
|
|
|
|
|
"NO_XWAYLAND" = !enableXWayland;
|
|
|
|
|
"LEGACY_RENDERER" = legacyRenderer;
|
|
|
|
|
"NO_SYSTEMD" = !withSystemd;
|
|
|
|
|
"CMAKE_DISABLE_PRECOMPILE_HEADERS" = true;
|
|
|
|
|
"NO_UWSM" = true;
|
|
|
|
|
"NO_HYPRPM" = true;
|
|
|
|
|
"TRACY_ENABLE" = false;
|
2025-11-17 09:10:00 +02:00
|
|
|
"BUILD_HYPRTESTER" = true;
|
2024-09-22 12:37:08 +03:00
|
|
|
};
|
2024-09-19 18:53:34 +03:00
|
|
|
|
2025-10-14 21:45:11 +03:00
|
|
|
preConfigure = ''
|
|
|
|
|
substituteInPlace hyprtester/CMakeLists.txt --replace-fail \
|
|
|
|
|
"\''${CMAKE_CURRENT_BINARY_DIR}" \
|
|
|
|
|
"${placeholder "out"}/bin"
|
|
|
|
|
'';
|
|
|
|
|
|
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
|
2025-11-07 15:48:13 +00:00
|
|
|
hyprland-guiutils
|
2024-09-19 18:53:34 +03:00
|
|
|
pciutils
|
|
|
|
|
pkgconf
|
|
|
|
|
]}
|
|
|
|
|
''}
|
2025-11-17 09:10:00 +02:00
|
|
|
|
2025-10-14 21:45:11 +03:00
|
|
|
install hyprtester/pointer-warp -t $out/bin
|
|
|
|
|
install hyprtester/pointer-scroll -t $out/bin
|
2024-09-19 18:53:34 +03:00
|
|
|
'';
|
2023-05-16 20:50:18 +03:00
|
|
|
|
2024-09-19 18:53:34 +03:00
|
|
|
passthru.providedSessions = ["hyprland"];
|
2022-05-16 11:33:00 +01:00
|
|
|
|
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
|
|
|
})
|