Hyprland/nix/default.nix

185 lines
4.1 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
2024-09-19 17:53:34 +02:00
stdenvAdapters,
pkg-config,
2024-04-08 19:53:07 +02:00
pkgconf,
makeWrapper,
2024-09-13 16:21:33 +02:00
meson,
cmake,
ninja,
aquamarine,
binutils,
cairo,
2022-07-29 12:21:19 +02:00
git,
hyprcursor,
hyprlang,
hyprutils,
hyprwayland-scanner,
2023-01-06 15:31:57 +01:00
jq,
2023-11-17 13:24:43 +01:00
libGL,
libdrm,
2024-03-16 17:12:32 +01:00
libexecinfo,
libinput,
libxkbcommon,
2024-09-02 22:09:44 +02:00
libuuid,
mesa,
2023-03-20 17:22:34 +01:00
pango,
2022-11-11 13:35:28 +01:00
pciutils,
python3,
systemd,
tomlplusplus,
wayland,
wayland-protocols,
wayland-scanner,
xorg,
xwayland,
debug ? false,
enableXWayland ? true,
legacyRenderer ? false,
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
wrapRuntimeDeps ? true,
version ? "git",
2023-03-04 16:34:15 +01:00
commit,
2024-07-21 19:54:57 +02:00
revCount,
date,
# deprecated flags
2023-11-26 03:58:57 +01:00
enableNvidiaPatches ? false,
nvidiaPatches ? false,
hidpiXWayland ? false,
2024-09-19 17:53:34 +02:00
}: let
2024-09-21 13:27:13 +02: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 17:53:34 +02:00
stdenvAdapters.useMoldLinker
];
2022-08-12 22:12:24 +02:00
2024-09-21 13:27:13 +02:00
customStdenv = foldl' (acc: adapter: adapter acc) stdenv adapters;
2024-09-19 17:53:34 +02:00
in
2024-09-21 13:27:13 +02: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 17:53:34 +02:00
customStdenv.mkDerivation {
2024-09-21 13:27:13 +02:00
pname = "hyprland${optionalString debug "-debug"}";
2024-09-19 17:53:34 +02:00
inherit version;
2024-09-21 13:27:13 +02:00
src = cleanSourceWith {
2024-09-19 17:53:34 +02:00
filter = name: type: let
baseName = baseNameOf (toString name);
in
2024-09-21 13:27:13 +02:00
! (hasSuffix ".nix" baseName);
src = cleanSource ../.;
2024-09-19 17:53:34 +02:00
};
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-09-19 17:53:34 +02:00
COMMITS = revCount;
DATE = date;
2024-09-21 13:27:13 +02:00
DIRTY = optionalString (commit == "") "dirty";
2024-09-19 17:53:34 +02:00
HASH = commit;
2024-09-01 16:18:50 +02:00
2024-09-19 17:53:34 +02:00
depsBuildBuild = [
pkg-config
];
2024-09-19 17:53:34 +02:00
nativeBuildInputs = [
hyprwayland-scanner
jq
makeWrapper
meson
cmake
ninja
pkg-config
python3 # for udis86
];
2022-08-21 17:58:03 +02:00
2024-09-19 17:53:34 +02:00
outputs = [
"out"
"man"
"dev"
];
2024-09-21 13:27:13 +02:00
buildInputs = concatLists [
2024-09-19 17:53:34 +02:00
[
aquamarine
cairo
git
hyprcursor
hyprlang
hyprutils
libdrm
libGL
libinput
libuuid
libxkbcommon
mesa
pango
pciutils
tomlplusplus
wayland
wayland-protocols
2024-06-06 10:07:53 +02:00
wayland-scanner
2024-09-19 17:53:34 +02:00
xorg.libXcursor
]
2024-09-21 13:27:13 +02:00
(optionals customStdenv.hostPlatform.isMusl [libexecinfo])
(optionals enableXWayland [
2024-09-19 17:53:34 +02:00
xorg.libxcb
xorg.libXdmcp
xorg.xcbutilerrors
xorg.xcbutilrenderutil
xorg.xcbutilwm
xwayland
])
2024-09-21 13:27:13 +02:00
(optional withSystemd systemd)
2024-09-19 17:53:34 +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;
2024-09-21 13:27:13 +02:00
mesonFlags = flatten [
(mapAttrsToList mesonEnable {
"xwayland" = enableXWayland;
"legacy_renderer" = legacyRenderer;
"systemd" = withSystemd;
})
(mesonBool "b_pch" false)
2024-09-19 17:53:34 +02:00
];
postInstall = ''
2024-09-21 13:27:13 +02:00
${optionalString wrapRuntimeDeps ''
2024-09-19 17:53:34 +02:00
wrapProgram $out/bin/Hyprland \
2024-09-21 13:27:13 +02:00
--suffix PATH : ${makeBinPath [
2024-09-19 17:53:34 +02:00
binutils
pciutils
pkgconf
]}
''}
'';
2024-09-19 17:53:34 +02:00
passthru.providedSessions = ["hyprland"];
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";
};
}