narsil: bbc8fc5efd779ec885045f9b8d903d0df1bec1b2 -> f5ec6bd6b8013f2a2b74fc45b6f4c5374...
[NixPkgs.git] / pkgs / by-name / wl / wlinhibit / package.nix
blob1d787f7871937a0bcbf0b05c3682850804db4dcd
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   meson,
6   ninja,
7   pkg-config,
8   wayland,
9   wayland-protocols,
10   wayland-scanner,
12 stdenv.mkDerivation rec {
13   pname = "wlinhibit";
14   version = "0.1.1";
16   src = fetchFromGitHub {
17     owner = "0x5a4";
18     repo = "wlinhibit";
19     rev = "v0.1.1";
20     hash = "sha256-YQHJ9sLHSV8GJP7IpRzmtDbeB86y/a48mLcYy4iDciw=";
21   };
23   buildInputs = [
24     wayland
25     wayland-protocols
26   ];
28   strictDeps = true;
30   nativeBuildInputs = [
31     meson
32     ninja
33     pkg-config
34     wayland-scanner
35   ];
37   meta = {
38     description = "simple, stupid idle inhibitor for wayland";
39     license = lib.licenses.mit;
40     homepage = "https://github.com/0x5a4/wlinhibit";
41     platforms = lib.platforms.linux;
42     maintainers = with lib.maintainers; [ _0x5a4 ];
43   };