nixpkgs/pkgs/by-name/wl/wlrctl/package.nix

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

32 lines
906 B
Nix
Raw Normal View History

2022-05-09 14:18:15 +00:00
{ lib, stdenv, fetchFromSourcehut, meson, pkg-config, scdoc, ninja, libxkbcommon, wayland, wayland-scanner }:
2021-06-03 22:32:04 +00:00
stdenv.mkDerivation rec {
pname = "wlrctl";
2023-05-23 03:01:32 +00:00
version = "0.2.2";
2021-06-03 22:32:04 +00:00
src = fetchFromSourcehut {
owner = "~brocellous";
repo = "wlrctl";
rev = "v${version}";
2023-05-23 03:01:32 +00:00
sha256 = "sha256-5mDcCSHbZMbfXbksAO4YhELznKpanse7jtbtfr09HL0=";
2021-06-03 22:32:04 +00:00
};
2022-05-09 14:18:15 +00:00
strictDeps = true;
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [ meson pkg-config scdoc ninja wayland-scanner ];
2021-06-03 22:32:04 +00:00
buildInputs = [ libxkbcommon wayland ];
env.NIX_CFLAGS_COMPILE = "-Wno-error=type-limits";
2021-06-03 22:32:04 +00: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;
2023-11-27 01:17:53 +00:00
mainProgram = "wlrctl";
2021-06-03 22:32:04 +00:00
};
}