Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / wl / wlinhibit / package.nix
blob5aa0de34545209cd4bbe06e17803f2a05bcb94f1
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   meson,
6   ninja,
7   pkg-config,
8   wayland,
9   wayland-protocols,
11 stdenv.mkDerivation rec {
12   pname = "wlinhibit";
13   version = "0.1.1";
15   src = fetchFromGitHub {
16     owner = "0x5a4";
17     repo = "wlinhibit";
18     rev = "v0.1.1";
19     hash = "sha256-YQHJ9sLHSV8GJP7IpRzmtDbeB86y/a48mLcYy4iDciw=";
20   };
22   buildInputs = [
23     wayland
24     wayland-protocols
25   ];
27   strictDeps = true;
29   nativeBuildInputs = [
30     meson
31     ninja
32     pkg-config
33   ];
35   meta = {
36     description = "simple, stupid idle inhibitor for wayland";
37     license = lib.licenses.mit;
38     homepage = "https://github.com/0x5a4/wlinhibit";
39     platforms = lib.platforms.linux;
40     maintainers = with lib.maintainers; [_0x5a4];
41   };