88 lines
1.8 KiB
Nix
88 lines
1.8 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, libxkbcommon
|
|
, pango
|
|
, pipewire
|
|
, seatd
|
|
, stdenv
|
|
, wayland
|
|
, systemd
|
|
, libinput
|
|
, mesa
|
|
, fontconfig
|
|
, libglvnd
|
|
, libclang
|
|
, autoPatchelfHook
|
|
, clang
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "niri";
|
|
version = "0.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "YaLTeR";
|
|
repo = "niri";
|
|
rev = "v${version}";
|
|
hash = "sha256-YuYowUw5ecPa78bhT72zY2b99wn68mO3vVkop8hnb8M=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"smithay-0.3.0" = "sha256-1ANERwRG7Uwe1gSm6zQnEMQlpRrGSFP8mp6JItzjz0k=";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
rustPlatform.bindgenHook
|
|
autoPatchelfHook
|
|
clang
|
|
];
|
|
|
|
buildInputs = [
|
|
wayland
|
|
systemd # For libudev
|
|
seatd # For libseat
|
|
libxkbcommon
|
|
libinput
|
|
mesa # For libgbm
|
|
fontconfig
|
|
stdenv.cc.cc.lib
|
|
pipewire
|
|
pango
|
|
];
|
|
|
|
runtimeDependencies = [
|
|
wayland
|
|
mesa
|
|
libglvnd # For libEGL
|
|
];
|
|
|
|
passthru.providedSessions = ["niri"];
|
|
|
|
postPatch = ''
|
|
patchShebangs ./resources/niri-session
|
|
substituteInPlace ./resources/niri.service \
|
|
--replace-fail '/usr/bin' "$out/bin"
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm0755 ./resources/niri-session -t $out/bin
|
|
install -Dm0644 resources/niri.desktop -t $out/share/wayland-sessions
|
|
install -Dm0644 resources/niri-portals.conf -t $out/share/xdg-desktop-portal
|
|
install -Dm0644 resources/niri{-shutdown.target,.service} -t $out/share/systemd/user
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A scrollable-tiling Wayland compositor";
|
|
homepage = "https://github.com/YaLTeR/niri";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ iogamaster foo-dogsquared sodiboo ];
|
|
mainProgram = "niri";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|