nixpkgs/pkgs/applications/window-managers/hikari/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.6 KiB
Nix
Raw Normal View History

2021-07-24 04:03:17 +00:00
{ lib, stdenv, fetchzip
, pkg-config, bmake
, cairo, glib, libevdev, libinput, libxkbcommon, linux-pam, pango, pixman
, libucl, wayland, wayland-protocols, wlroots, mesa
, features ? {
2020-06-03 14:09:25 +00:00
gammacontrol = true;
layershell = true;
screencopy = true;
xwayland = true;
}
}:
2021-07-24 04:03:17 +00:00
stdenv.mkDerivation rec {
2020-06-03 14:09:25 +00:00
pname = "hikari";
2023-03-05 14:33:59 +00:00
version = "2.3.3";
2020-06-03 14:09:25 +00:00
src = fetchzip {
url = "https://hikari.acmelabs.space/releases/${pname}-${version}.tar.gz";
2023-03-05 14:33:59 +00:00
sha256 = "sha256-5Ug0U3ESC5F/gj7bahnLYkeY/weSCj0QASwdFuWwdMI=";
2020-06-03 14:09:25 +00:00
};
nativeBuildInputs = [ pkg-config bmake ];
2020-06-03 14:09:25 +00:00
buildInputs = [
cairo
glib
libevdev
libinput
libxkbcommon
linux-pam
pango
pixman
libucl
2021-04-09 11:28:24 +00:00
mesa # for libEGL
2020-06-03 14:09:25 +00:00
wayland
wayland-protocols
wlroots
];
enableParallelBuilding = true;
makeFlags = with lib; [ "PREFIX=$(out)" ]
2020-06-03 14:09:25 +00:00
++ optional stdenv.isLinux "WITH_POSIX_C_SOURCE=YES"
++ mapAttrsToList (feat: enabled:
optionalString enabled "WITH_${toUpper feat}=YES"
) features;
2020-06-03 14:09:25 +00:00
2021-04-28 06:24:32 +00:00
postPatch = ''
# Can't suid in nix store
# Run hikari as root (it will drop privileges as early as possible), or create
# a systemd unit to give it the necessary permissions/capabilities.
2020-06-03 14:09:25 +00:00
substituteInPlace Makefile --replace '4555' '555'
2021-04-28 06:24:32 +00:00
sed -i 's@<drm_fourcc.h>@<libdrm/drm_fourcc.h>@' src/*.c
2020-06-03 14:09:25 +00:00
'';
meta = with lib; {
2020-06-03 14:09:25 +00:00
description = "Stacking Wayland compositor which is actively developed on FreeBSD but also supports Linux";
homepage = "https://hikari.acmelabs.space";
license = licenses.bsd2;
platforms = platforms.linux ++ platforms.freebsd;
maintainers = with maintainers; [ jpotier ];
};
}