2022-05-09 16:18:15 +02:00
|
|
|
{ lib, stdenv, fetchFromSourcehut, meson, pkg-config, scdoc, ninja, libxkbcommon, wayland, wayland-scanner }:
|
2021-06-04 00:32:04 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "wlrctl";
|
2023-05-23 05:01:32 +02:00
|
|
|
version = "0.2.2";
|
2021-06-04 00:32:04 +02:00
|
|
|
|
|
|
|
src = fetchFromSourcehut {
|
|
|
|
owner = "~brocellous";
|
|
|
|
repo = "wlrctl";
|
|
|
|
rev = "v${version}";
|
2023-05-23 05:01:32 +02:00
|
|
|
sha256 = "sha256-5mDcCSHbZMbfXbksAO4YhELznKpanse7jtbtfr09HL0=";
|
2021-06-04 00:32:04 +02:00
|
|
|
};
|
|
|
|
|
2022-05-09 16:18:15 +02:00
|
|
|
strictDeps = true;
|
|
|
|
depsBuildBuild = [
|
|
|
|
pkg-config
|
|
|
|
];
|
|
|
|
nativeBuildInputs = [ meson pkg-config scdoc ninja wayland-scanner ];
|
2021-06-04 00:32:04 +02:00
|
|
|
buildInputs = [ libxkbcommon wayland ];
|
|
|
|
|
2023-02-19 20:23:32 +01:00
|
|
|
env.NIX_CFLAGS_COMPILE = "-Wno-error=type-limits";
|
2021-06-04 00:32:04 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Command line utility for miscellaneous wlroots Wayland extensions";
|
|
|
|
homepage = "https://git.sr.ht/~brocellous/wlrctl";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ puffnfresh artturin ];
|
2023-03-05 13:59:54 +01:00
|
|
|
platforms = platforms.linux;
|
2021-06-04 00:32:04 +02:00
|
|
|
};
|
|
|
|
}
|