2022-05-17 13:11:24 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
2024-09-19 17:53:34 +02:00
|
|
|
stdenvAdapters,
|
2022-05-17 13:11:24 +02:00
|
|
|
pkg-config,
|
2024-04-08 19:53:07 +02:00
|
|
|
pkgconf,
|
2023-05-16 22:39:14 +02:00
|
|
|
makeWrapper,
|
2024-09-13 16:21:33 +02:00
|
|
|
meson,
|
2024-04-21 18:58:54 +02:00
|
|
|
cmake,
|
2022-05-17 13:11:24 +02:00
|
|
|
ninja,
|
2024-07-21 13:09:54 +02:00
|
|
|
aquamarine,
|
2023-05-16 22:39:14 +02:00
|
|
|
binutils,
|
2022-12-19 13:13:07 +01:00
|
|
|
cairo,
|
2022-07-29 12:21:19 +02:00
|
|
|
git,
|
2024-03-09 17:52:59 +01:00
|
|
|
hyprcursor,
|
2024-02-18 16:00:34 +01:00
|
|
|
hyprlang,
|
2024-06-11 17:17:45 +02:00
|
|
|
hyprutils,
|
2024-04-20 14:25:29 +02:00
|
|
|
hyprwayland-scanner,
|
2023-01-06 15:31:57 +01:00
|
|
|
jq,
|
2023-11-17 13:24:43 +01:00
|
|
|
libGL,
|
2022-05-17 13:11:24 +02:00
|
|
|
libdrm,
|
2024-03-16 17:12:32 +01:00
|
|
|
libexecinfo,
|
2022-05-17 13:11:24 +02:00
|
|
|
libinput,
|
|
|
|
libxkbcommon,
|
2024-09-02 22:09:44 +02:00
|
|
|
libuuid,
|
2022-05-17 13:11:24 +02:00
|
|
|
mesa,
|
2023-03-20 17:22:34 +01:00
|
|
|
pango,
|
2022-11-11 13:35:28 +01:00
|
|
|
pciutils,
|
2024-04-21 18:58:54 +02:00
|
|
|
python3,
|
2023-01-05 20:17:55 +01:00
|
|
|
systemd,
|
2023-12-07 11:41:09 +01:00
|
|
|
tomlplusplus,
|
2022-05-17 13:11:24 +02:00
|
|
|
wayland,
|
|
|
|
wayland-protocols,
|
|
|
|
wayland-scanner,
|
2024-04-21 18:58:54 +02:00
|
|
|
xorg,
|
2022-05-17 13:11:24 +02:00
|
|
|
xwayland,
|
2022-07-27 13:57:27 +02:00
|
|
|
debug ? false,
|
2022-05-17 13:11:24 +02:00
|
|
|
enableXWayland ? true,
|
2022-07-27 13:57:27 +02:00
|
|
|
legacyRenderer ? false,
|
2023-07-27 11:11:13 +02:00
|
|
|
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
|
2024-03-15 09:11:54 +01:00
|
|
|
wrapRuntimeDeps ? true,
|
2022-05-17 13:11:24 +02:00
|
|
|
version ? "git",
|
2023-03-04 16:34:15 +01:00
|
|
|
commit,
|
2024-07-21 19:54:57 +02:00
|
|
|
revCount,
|
2023-12-17 15:29:58 +01:00
|
|
|
date,
|
2023-08-01 23:49:30 +02:00
|
|
|
# deprecated flags
|
2023-11-26 03:58:57 +01:00
|
|
|
enableNvidiaPatches ? false,
|
2023-08-01 23:49:30 +02:00
|
|
|
nvidiaPatches ? false,
|
|
|
|
hidpiXWayland ? false,
|
2024-09-19 17:53:34 +02:00
|
|
|
}: let
|
|
|
|
adapters = lib.flatten [
|
|
|
|
stdenvAdapters.useMoldLinker
|
|
|
|
];
|
2022-08-12 22:12:24 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
customStdenv = builtins.foldl' (acc: adapter: adapter acc) stdenv adapters;
|
|
|
|
in
|
|
|
|
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";
|
|
|
|
customStdenv.mkDerivation {
|
|
|
|
pname = "hyprland${lib.optionalString debug "-debug"}";
|
|
|
|
inherit version;
|
2022-05-08 18:27:40 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
src = lib.cleanSourceWith {
|
|
|
|
filter = name: type: let
|
|
|
|
baseName = baseNameOf (toString name);
|
|
|
|
in
|
|
|
|
! (lib.hasSuffix ".nix" baseName);
|
|
|
|
src = lib.cleanSource ../.;
|
|
|
|
};
|
2024-05-09 18:24:31 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
postPatch = ''
|
|
|
|
# Fix hardcoded paths to /usr installation
|
|
|
|
sed -i "s#/usr#$out#" src/render/OpenGL.cpp
|
2024-03-16 17:12:32 +01:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
# Remove extra @PREFIX@ to fix pkg-config paths
|
|
|
|
sed -i "s#@PREFIX@/##g" hyprland.pc.in
|
|
|
|
'';
|
2024-05-11 00:51:53 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
COMMITS = revCount;
|
|
|
|
DATE = date;
|
|
|
|
DIRTY = lib.optionalString (commit == "") "dirty";
|
|
|
|
HASH = commit;
|
2024-09-01 16:18:50 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
depsBuildBuild = [
|
|
|
|
pkg-config
|
|
|
|
];
|
2022-05-08 18:27:40 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
hyprwayland-scanner
|
|
|
|
jq
|
|
|
|
makeWrapper
|
|
|
|
meson
|
|
|
|
cmake
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
python3 # for udis86
|
|
|
|
wayland-scanner
|
|
|
|
];
|
2022-08-21 17:58:03 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"man"
|
|
|
|
"dev"
|
|
|
|
];
|
2022-05-17 13:11:24 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
buildInputs = lib.concatLists [
|
|
|
|
[
|
|
|
|
aquamarine
|
|
|
|
cairo
|
|
|
|
# expat
|
|
|
|
# fribidi
|
|
|
|
git
|
|
|
|
hyprcursor
|
|
|
|
hyprlang
|
|
|
|
hyprutils
|
|
|
|
# libdatrie
|
|
|
|
libdrm
|
|
|
|
libGL
|
|
|
|
libinput
|
|
|
|
# libselinux
|
|
|
|
# libsepol
|
|
|
|
# libthai
|
|
|
|
libuuid
|
|
|
|
libxkbcommon
|
|
|
|
mesa
|
|
|
|
pango
|
|
|
|
pciutils
|
|
|
|
# pcre2
|
|
|
|
tomlplusplus
|
|
|
|
wayland
|
|
|
|
wayland-protocols
|
|
|
|
xorg.libXcursor
|
|
|
|
]
|
|
|
|
(lib.optionals stdenv.hostPlatform.isMusl [libexecinfo])
|
|
|
|
(lib.optionals enableXWayland [
|
|
|
|
xorg.libxcb
|
|
|
|
xorg.libXdmcp
|
|
|
|
xorg.xcbutilerrors
|
|
|
|
xorg.xcbutilrenderutil
|
|
|
|
xorg.xcbutilwm
|
|
|
|
xwayland
|
|
|
|
])
|
|
|
|
(lib.optionals withSystemd [systemd])
|
|
|
|
];
|
2022-05-08 18:27:40 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
mesonBuildType =
|
|
|
|
if debug
|
|
|
|
then "debug"
|
|
|
|
else "release";
|
2024-06-17 12:03:59 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
# we want as much debug info as possible
|
|
|
|
dontStrip = debug;
|
2022-05-08 20:18:13 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
mesonFlags = [
|
|
|
|
(lib.mesonEnable "xwayland" enableXWayland)
|
|
|
|
(lib.mesonEnable "legacy_renderer" legacyRenderer)
|
|
|
|
(lib.mesonEnable "systemd" withSystemd)
|
|
|
|
"-Db_pch=false"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
${lib.optionalString wrapRuntimeDeps ''
|
|
|
|
wrapProgram $out/bin/Hyprland \
|
|
|
|
--suffix PATH : ${lib.makeBinPath [
|
|
|
|
binutils
|
|
|
|
pciutils
|
|
|
|
pkgconf
|
|
|
|
]}
|
|
|
|
''}
|
|
|
|
'';
|
2023-05-16 19:50:18 +02:00
|
|
|
|
2024-09-19 17:53:34 +02:00
|
|
|
passthru.providedSessions = ["hyprland"];
|
2022-05-16 12:33:00 +02:00
|
|
|
|
2024-09-19 17:53:34 +02: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";
|
|
|
|
};
|
|
|
|
}
|