Hyprland/nix/default.nix

270 lines
6 KiB
Nix
Raw Normal View History

{
lib,
stdenv,
2024-09-19 18:53:34 +03:00
stdenvAdapters,
pkg-config,
2024-04-08 20:53:07 +03:00
pkgconf,
makeWrapper,
cmake,
aquamarine,
binutils,
cairo,
epoll-shim,
2022-07-29 13:21:19 +03:00
git,
glaze-hyprland,
gtest,
hyprcursor,
hyprgraphics,
2024-09-22 21:19:09 +03:00
hyprland-protocols,
hyprland-guiutils,
hyprlang,
hyprutils,
hyprwayland-scanner,
hyprwire,
lcms2,
2023-11-17 12:24:43 +00:00
libGL,
libdrm,
2024-03-16 18:12:32 +02:00
libexecinfo,
libinput,
libxcb,
libxcb-errors,
libxcb-render-util,
libxcb-wm,
libxdmcp,
libxcursor,
libxkbcommon,
2024-09-02 23:09:44 +03:00
libuuid,
libgbm,
muparser,
2023-03-20 18:22:34 +02:00
pango,
2022-11-11 13:35:28 +01:00
pciutils,
re2,
systemd,
tomlplusplus,
udis86-hyprland,
wayland,
wayland-protocols,
wayland-scanner,
xwayland,
debug ? false,
withTests ? false,
enableXWayland ? true,
withSystemd ? lib.meta.availableOn stdenv.hostPlatform systemd,
wrapRuntimeDeps ? true,
version ? "git",
2023-03-04 17:34:15 +02:00
commit,
2024-07-21 20:54:57 +03:00
revCount,
date,
# deprecated flags
2023-11-26 02:58:57 +00:00
enableNvidiaPatches ? false,
nvidiaPatches ? false,
hidpiXWayland ? false,
legacyRenderer ? false,
2025-11-17 09:10:00 +02:00
withHyprtester ? false,
2026-03-02 20:56:00 +02:00
}:
let
inherit (builtins) foldl' readFile;
2024-09-21 14:27:13 +03:00
inherit (lib.asserts) assertMsg;
inherit (lib.attrsets) mapAttrsToList;
2026-03-02 20:56:00 +02:00
inherit (lib.lists)
flatten
concatLists
optional
optionals
;
inherit (lib.strings)
makeBinPath
optionalString
cmakeBool
trim
;
fs = lib.fileset;
2024-09-21 14:27:13 +03:00
adapters = flatten [
2024-09-19 18:53:34 +03:00
stdenvAdapters.useMoldLinker
(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
2026-03-02 20:56:00 +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.hypr.land/Configuring/XWayland";
assert assertMsg (
!legacyRenderer
) "The option `legacyRenderer` has been removed. Legacy renderer is no longer supported.";
assert assertMsg (
!withHyprtester
) "The option `withHyprtester` has been removed. Hyprtester is always built now.";
customStdenv.mkDerivation (finalAttrs: {
pname = "hyprland${optionalString debug "-debug"}";
inherit version withTests;
src = fs.toSource {
root = ../.;
fileset =
fs.intersection
# allows non-flake builds to only include files tracked by git
(fs.gitTracked ../.)
(
fs.unions (flatten [
../assets/hyprland-portals.conf
../assets/install
../hyprctl
../hyprland.pc.in
2026-01-20 13:26:10 +02:00
../hyprpm
../LICENSE
../protocols
../src
../start
../systemd
../VERSION
(fs.fileFilter (file: file.hasExt "1") ../docs)
(fs.fileFilter (file: file.hasExt "conf" || file.hasExt "in") ../example)
(fs.fileFilter (file: file.hasExt "sh") ../scripts)
2024-09-22 12:37:08 +03:00
(fs.fileFilter (file: file.name == "CMakeLists.txt") ../.)
2026-03-02 20:56:00 +02:00
(optional withTests [
../tests
../hyprtester
])
])
);
};
postPatch = ''
# Fix hardcoded paths to /usr installation
sed -i "s#/usr#$out#" src/render/OpenGL.cpp
# Remove extra @PREFIX@ to fix some paths
sed -i "s#@PREFIX@/##g" hyprland.pc.in
sed -i "s#@PREFIX@/##g" example/hyprland.desktop.in
'';
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")}";
};
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
hyprwayland-scanner
hyprwire
makeWrapper
cmake
pkg-config
];
outputs = [
"out"
"man"
"dev"
];
buildInputs = concatLists [
[
aquamarine
cairo
git
glaze-hyprland
gtest
hyprcursor
hyprgraphics
hyprland-protocols
hyprlang
hyprutils
hyprwire
lcms2
2026-03-02 20:56:00 +02:00
libdrm
libgbm
libGL
libinput
libuuid
libxcursor
libxkbcommon
muparser
pango
pciutils
re2
tomlplusplus
udis86-hyprland
wayland
wayland-protocols
wayland-scanner
]
(optionals customStdenv.hostPlatform.isBSD [ epoll-shim ])
(optionals customStdenv.hostPlatform.isMusl [ libexecinfo ])
(optionals enableXWayland [
libxcb
libxcb-errors
libxcb-render-util
libxcb-wm
libxdmcp
xwayland
])
(optional withSystemd systemd)
];
strictDeps = true;
cmakeBuildType = if debug then "Debug" else "RelWithDebInfo";
# we want as much debug info as possible
dontStrip = debug;
cmakeFlags = mapAttrsToList cmakeBool {
"BUILT_WITH_NIX" = true;
"NO_XWAYLAND" = !enableXWayland;
"LEGACY_RENDERER" = legacyRenderer;
"NO_SYSTEMD" = !withSystemd;
"CMAKE_DISABLE_PRECOMPILE_HEADERS" = true;
"NO_UWSM" = !withSystemd;
"TRACY_ENABLE" = false;
"WITH_TESTS" = withTests;
};
preConfigure = ''
substituteInPlace hyprtester/CMakeLists.txt --replace-fail \
"\''${CMAKE_CURRENT_BINARY_DIR}" \
"${placeholder "out"}/bin"
'';
postInstall = ''
${optionalString wrapRuntimeDeps ''
wrapProgram $out/bin/Hyprland \
--suffix PATH : ${
makeBinPath [
2024-09-19 18:53:34 +03:00
binutils
hyprland-guiutils
2024-09-19 18:53:34 +03:00
pciutils
pkgconf
2026-03-02 20:56:00 +02:00
]
}
''}
${optionalString withTests ''
install hyprtester/pointer-warp -t $out/bin
install hyprtester/pointer-scroll -t $out/bin
install hyprtester/shortcut-inhibitor -t $out/bin
install hyprland_gtests -t $out/bin
install hyprtester/child-window -t $out/bin
''}
'';
passthru.providedSessions = [ "hyprland" ] ++ optionals withSystemd [ "hyprland-uwsm" ];
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";
};
})