nixpkgs/pkgs/tools/wayland/wlrctl/default.nix

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

31 lines
878 B
Nix
Raw Normal View History

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 ];
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 ];
platforms = platforms.linux;
2021-06-04 00:32:04 +02:00
};
}