biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / wayland / wlopm / default.nix
blobaa0b9ae4bcfc19ed4fdc2278b1481d3923cdda58
1 { lib, stdenv, fetchFromSourcehut, wayland, wayland-scanner }:
3 stdenv.mkDerivation rec {
4   pname = "wlopm";
5   version = "0.1.0";
7   src = fetchFromSourcehut {
8     owner = "~leon_plickat";
9     repo = "wlopm";
10     rev = "v${version}";
11     sha256 = "sha256-kcUJVB5jP2qZ1YgJDEBsyn5AgwhRxQmzOrk0gKj1MeM=";
12   };
14   strictDeps = true;
15   nativeBuildInputs = [ wayland-scanner ];
16   buildInputs = [ wayland ];
18   installFlags = [ "PREFIX=$(out)" ];
20   meta = with lib; {
21     description = "Simple client implementing zwlr-output-power-management-v1";
22     homepage = "https://git.sr.ht/~leon_plickat/wlopm";
23     mainProgram = "wlopm";
24     license = licenses.gpl3Only;
25     maintainers = with maintainers; [ arjan-s ];
26     platforms = platforms.linux;
27   };