9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
76 lines
1.8 KiB
Nix
76 lines
1.8 KiB
Nix
{ lib, stdenv, fetchzip,
|
|
pkg-config, bmake,
|
|
cairo, glib, libevdev, libinput, libxkbcommon, linux-pam, pango, pixman,
|
|
libucl, wayland, wayland-protocols, wlroots,
|
|
features ? {
|
|
gammacontrol = true;
|
|
layershell = true;
|
|
screencopy = true;
|
|
xwayland = true;
|
|
}
|
|
}:
|
|
|
|
let
|
|
pname = "hikari";
|
|
version = "2.2.2";
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
inherit pname version;
|
|
|
|
src = fetchzip {
|
|
url = "https://hikari.acmelabs.space/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "0sln1n5f67i3vxkybfi6xhzplb45djqyg272vqkv64m72rmm8875";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config bmake ];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
glib
|
|
libevdev
|
|
libinput
|
|
libxkbcommon
|
|
linux-pam
|
|
pango
|
|
pixman
|
|
libucl
|
|
wayland
|
|
wayland-protocols
|
|
wlroots
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# Must replace GNU Make by bmake
|
|
buildPhase = with lib; concatStringsSep " " (
|
|
[ "bmake" "-j$NIX_BUILD_CORES" "PREFIX=$out" ]
|
|
++ optional stdenv.isLinux "WITH_POSIX_C_SOURCE=YES"
|
|
++ mapAttrsToList (feat: enabled:
|
|
optionalString enabled "WITH_${toUpper feat}=YES"
|
|
) features
|
|
);
|
|
|
|
# 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.
|
|
patchPhase = ''
|
|
substituteInPlace Makefile --replace '4555' '555'
|
|
'';
|
|
|
|
installPhase = ''
|
|
bmake \
|
|
PREFIX=$out \
|
|
install
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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 ];
|
|
};
|
|
}
|