mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-05 12:25:59 +01:00
Mihai Fufezan
27211c71e9
Only the fork provides a .pc file, so there's no risk of linking the wrong lib version. If pkg-config can't find it (most cases), fall back to using the subproject through the wrap file.
182 lines
4.2 KiB
Nix
182 lines
4.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
stdenvAdapters,
|
|
pkg-config,
|
|
pkgconf,
|
|
makeWrapper,
|
|
meson,
|
|
ninja,
|
|
aquamarine,
|
|
binutils,
|
|
cairo,
|
|
git,
|
|
hyprcursor,
|
|
hyprland-protocols,
|
|
hyprlang,
|
|
hyprutils,
|
|
hyprwayland-scanner,
|
|
libGL,
|
|
libdrm,
|
|
libexecinfo,
|
|
libinput,
|
|
libxkbcommon,
|
|
libuuid,
|
|
mesa,
|
|
pango,
|
|
pciutils,
|
|
systemd,
|
|
tomlplusplus,
|
|
udis86-hyprland,
|
|
wayland,
|
|
wayland-protocols,
|
|
wayland-scanner,
|
|
xorg,
|
|
xwayland,
|
|
debug ? false,
|
|
enableXWayland ? true,
|
|
legacyRenderer ? false,
|
|
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
|
|
wrapRuntimeDeps ? true,
|
|
version ? "git",
|
|
commit,
|
|
revCount,
|
|
date,
|
|
# deprecated flags
|
|
enableNvidiaPatches ? false,
|
|
nvidiaPatches ? false,
|
|
hidpiXWayland ? false,
|
|
}: let
|
|
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 [
|
|
stdenvAdapters.useMoldLinker
|
|
];
|
|
|
|
customStdenv = foldl' (acc: adapter: adapter acc) stdenv adapters;
|
|
in
|
|
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";
|
|
customStdenv.mkDerivation {
|
|
pname = "hyprland${optionalString debug "-debug"}";
|
|
inherit version;
|
|
|
|
src = cleanSourceWith {
|
|
filter = name: type: let
|
|
baseName = baseNameOf (toString name);
|
|
in
|
|
! (hasSuffix ".nix" baseName);
|
|
src = cleanSource ../.;
|
|
};
|
|
|
|
postPatch = ''
|
|
# Fix hardcoded paths to /usr installation
|
|
sed -i "s#/usr#$out#" src/render/OpenGL.cpp
|
|
|
|
# Remove extra @PREFIX@ to fix pkg-config paths
|
|
sed -i "s#@PREFIX@/##g" hyprland.pc.in
|
|
'';
|
|
|
|
COMMITS = revCount;
|
|
DATE = date;
|
|
DIRTY = optionalString (commit == "") "dirty";
|
|
HASH = commit;
|
|
|
|
depsBuildBuild = [
|
|
pkg-config
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
hyprwayland-scanner
|
|
makeWrapper
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
];
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
"dev"
|
|
];
|
|
|
|
buildInputs = concatLists [
|
|
[
|
|
aquamarine
|
|
cairo
|
|
git
|
|
hyprcursor
|
|
hyprland-protocols
|
|
hyprlang
|
|
hyprutils
|
|
libdrm
|
|
libGL
|
|
libinput
|
|
libuuid
|
|
libxkbcommon
|
|
mesa
|
|
pango
|
|
pciutils
|
|
tomlplusplus
|
|
udis86-hyprland
|
|
wayland
|
|
wayland-protocols
|
|
wayland-scanner
|
|
xorg.libXcursor
|
|
]
|
|
(optionals customStdenv.hostPlatform.isMusl [libexecinfo])
|
|
(optionals enableXWayland [
|
|
xorg.libxcb
|
|
xorg.libXdmcp
|
|
xorg.xcbutilerrors
|
|
xorg.xcbutilrenderutil
|
|
xorg.xcbutilwm
|
|
xwayland
|
|
])
|
|
(optional withSystemd systemd)
|
|
];
|
|
|
|
mesonBuildType =
|
|
if debug
|
|
then "debug"
|
|
else "release";
|
|
|
|
# we want as much debug info as possible
|
|
dontStrip = debug;
|
|
|
|
mesonFlags = flatten [
|
|
(mapAttrsToList mesonEnable {
|
|
"xwayland" = enableXWayland;
|
|
"legacy_renderer" = legacyRenderer;
|
|
"systemd" = withSystemd;
|
|
})
|
|
(mesonBool "b_pch" false)
|
|
];
|
|
|
|
postInstall = ''
|
|
${optionalString wrapRuntimeDeps ''
|
|
wrapProgram $out/bin/Hyprland \
|
|
--suffix PATH : ${makeBinPath [
|
|
binutils
|
|
pciutils
|
|
pkgconf
|
|
]}
|
|
''}
|
|
'';
|
|
|
|
passthru.providedSessions = ["hyprland"];
|
|
|
|
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";
|
|
};
|
|
}
|