2022-05-17 14:11:24 +03:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
2024-09-19 18:53:34 +03:00
|
|
|
stdenvAdapters,
|
2022-05-17 14:11:24 +03:00
|
|
|
pkg-config,
|
2024-04-08 20:53:07 +03:00
|
|
|
pkgconf,
|
2023-05-16 23:39:14 +03:00
|
|
|
makeWrapper,
|
2024-09-13 17:21:33 +03:00
|
|
|
meson,
|
2024-04-21 19:58:54 +03:00
|
|
|
cmake,
|
2022-05-17 14:11:24 +03:00
|
|
|
ninja,
|
2024-07-21 14:09:54 +03:00
|
|
|
aquamarine,
|
2023-05-16 23:39:14 +03:00
|
|
|
binutils,
|
2022-12-19 15:13:07 +03:00
|
|
|
cairo,
|
2022-07-29 13:21:19 +03:00
|
|
|
git,
|
2024-03-09 19:52:59 +03:00
|
|
|
hyprcursor,
|
2024-02-18 18:00:34 +03:00
|
|
|
hyprlang,
|
2024-06-11 18:17:45 +03:00
|
|
|
hyprutils,
|
2024-04-20 15:25:29 +03:00
|
|
|
hyprwayland-scanner,
|
2023-01-06 17:31:57 +03:00
|
|
|
jq,
|
2023-11-17 15:24:43 +03:00
|
|
|
libGL,
|
2022-05-17 14:11:24 +03:00
|
|
|
libdrm,
|
2024-03-16 19:12:32 +03:00
|
|
|
libexecinfo,
|
2022-05-17 14:11:24 +03:00
|
|
|
libinput,
|
|
|
|
libxkbcommon,
|
2024-09-02 23:09:44 +03:00
|
|
|
libuuid,
|
2022-05-17 14:11:24 +03:00
|
|
|
mesa,
|
2023-03-20 19:22:34 +03:00
|
|
|
pango,
|
2022-11-11 15:35:28 +03:00
|
|
|
pciutils,
|
2024-04-21 19:58:54 +03:00
|
|
|
python3,
|
2023-01-05 22:17:55 +03:00
|
|
|
systemd,
|
2023-12-07 13:41:09 +03:00
|
|
|
tomlplusplus,
|
2022-05-17 14:11:24 +03:00
|
|
|
wayland,
|
|
|
|
wayland-protocols,
|
|
|
|
wayland-scanner,
|
2024-04-21 19:58:54 +03:00
|
|
|
xorg,
|
2022-05-17 14:11:24 +03:00
|
|
|
xwayland,
|
2022-07-27 14:57:27 +03:00
|
|
|
debug ? false,
|
2022-05-17 14:11:24 +03:00
|
|
|
enableXWayland ? true,
|
2022-07-27 14:57:27 +03:00
|
|
|
legacyRenderer ? false,
|
2023-07-27 12:11:13 +03:00
|
|
|
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
|
2024-03-15 11:11:54 +03:00
|
|
|
wrapRuntimeDeps ? true,
|
2022-05-17 14:11:24 +03:00
|
|
|
version ? "git",
|
2023-03-04 18:34:15 +03:00
|
|
|
commit,
|
2024-07-21 20:54:57 +03:00
|
|
|
revCount,
|
2023-12-17 17:29:58 +03:00
|
|
|
date,
|
2023-08-02 00:49:30 +03:00
|
|
|
# deprecated flags
|
2023-11-26 05:58:57 +03:00
|
|
|
enableNvidiaPatches ? false,
|
2023-08-02 00:49:30 +03:00
|
|
|
nvidiaPatches ? false,
|
|
|
|
hidpiXWayland ? false,
|
2024-09-19 18:53:34 +03:00
|
|
|
}: let
|
2024-09-21 14:27:13 +03:00
|
|
|
inherit (builtins) baseNameOf foldl';
|
|
|
|
inherit (lib.asserts) assertMsg;
|
|
|
|
inherit (lib.attrsets) mapAttrsToList;
|
|
|
|
inherit (lib.lists) flatten concatLists optional optionals;
|
|
|
|
inherit (lib.sources) cleanSourceWith cleanSource;
|
|
|
|
inherit (lib.strings) hasSuffix makeBinPath optionalString mesonBool mesonEnable;
|
|
|
|
|
|
|
|
adapters = flatten [
|
2024-09-19 18:53:34 +03:00
|
|
|
stdenvAdapters.useMoldLinker
|
|
|
|
];
|
2022-08-12 23:12:24 +03: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.";
|
|
|
|
assert assertMsg (!hidpiXWayland) "The option `hidpiXWayland` has been removed. Please refer https://wiki.hyprland.org/Configuring/XWayland";
|
2024-09-19 18:53:34 +03:00
|
|
|
customStdenv.mkDerivation {
|
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 19:27:40 +03:00
|
|
|
|
2024-09-21 14:27:13 +03:00
|
|
|
src = cleanSourceWith {
|
2024-09-19 18:53:34 +03:00
|
|
|
filter = name: type: let
|
|
|
|
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 19:12:32 +03: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-11 01:51:53 +03:00
|
|
|
|
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-09-01 17:18:50 +03:00
|
|
|
|
2024-09-19 18:53:34 +03:00
|
|
|
depsBuildBuild = [
|
|
|
|
pkg-config
|
|
|
|
];
|
2022-05-08 19:27:40 +03:00
|
|
|
|
2024-09-19 18:53:34 +03:00
|
|
|
nativeBuildInputs = [
|
|
|
|
hyprwayland-scanner
|
|
|
|
jq
|
|
|
|
makeWrapper
|
|
|
|
meson
|
|
|
|
cmake
|
|
|
|
ninja
|
|
|
|
pkg-config
|
|
|
|
python3 # for udis86
|
|
|
|
wayland-scanner
|
|
|
|
];
|
2022-08-21 18:58:03 +03:00
|
|
|
|
2024-09-19 18:53:34 +03:00
|
|
|
outputs = [
|
|
|
|
"out"
|
|
|
|
"man"
|
|
|
|
"dev"
|
|
|
|
];
|
2022-05-17 14:11:24 +03:00
|
|
|
|
2024-09-21 14:27:13 +03:00
|
|
|
buildInputs = concatLists [
|
2024-09-19 18:53:34 +03:00
|
|
|
[
|
|
|
|
aquamarine
|
|
|
|
cairo
|
|
|
|
git
|
|
|
|
hyprcursor
|
|
|
|
hyprlang
|
|
|
|
hyprutils
|
|
|
|
libdrm
|
|
|
|
libGL
|
|
|
|
libinput
|
|
|
|
libuuid
|
|
|
|
libxkbcommon
|
|
|
|
mesa
|
|
|
|
pango
|
|
|
|
pciutils
|
|
|
|
tomlplusplus
|
|
|
|
wayland
|
|
|
|
wayland-protocols
|
|
|
|
xorg.libXcursor
|
|
|
|
]
|
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 19:27:40 +03:00
|
|
|
|
2024-09-19 18:53:34 +03:00
|
|
|
mesonBuildType =
|
|
|
|
if debug
|
|
|
|
then "debug"
|
|
|
|
else "release";
|
2024-06-17 13:03:59 +03:00
|
|
|
|
2024-09-19 18:53:34 +03:00
|
|
|
# we want as much debug info as possible
|
|
|
|
dontStrip = debug;
|
2022-05-08 21:18:13 +03:00
|
|
|
|
2024-09-21 14:27:13 +03:00
|
|
|
mesonFlags = flatten [
|
|
|
|
(mapAttrsToList mesonEnable {
|
|
|
|
"xwayland" = enableXWayland;
|
|
|
|
"legacy_renderer" = legacyRenderer;
|
|
|
|
"systemd" = withSystemd;
|
|
|
|
})
|
|
|
|
(mesonBool "b_pch" 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
|
|
|
|
pciutils
|
|
|
|
pkgconf
|
|
|
|
]}
|
|
|
|
''}
|
|
|
|
'';
|
2023-05-16 20:50:18 +03:00
|
|
|
|
2024-09-19 18:53:34 +03:00
|
|
|
passthru.providedSessions = ["hyprland"];
|
2022-05-16 13:33:00 +03: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";
|
|
|
|
};
|
|
|
|
}
|