Merge pull request #175473 from arjan-s/init-wlopm

wlopm: init at 0.1.0
This commit is contained in:
ckie 2022-07-26 22:49:19 +03:00 committed by GitHub
commit 38c865294b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View file

@ -0,0 +1,27 @@
{ lib, stdenv, fetchFromSourcehut, wayland, wayland-scanner }:
stdenv.mkDerivation rec {
pname = "wlopm";
version = "0.1.0";
src = fetchFromSourcehut {
owner = "~leon_plickat";
repo = "wlopm";
rev = "v${version}";
sha256 = "sha256-kcUJVB5jP2qZ1YgJDEBsyn5AgwhRxQmzOrk0gKj1MeM=";
};
strictDeps = true;
nativeBuildInputs = [ wayland-scanner ];
buildInputs = [ wayland ];
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Simple client implementing zwlr-output-power-management-v1";
homepage = "https://git.sr.ht/~leon_plickat/wlopm";
license = licenses.gpl3Only;
maintainers = with maintainers; [ arjan-s ];
platforms = platforms.linux;
};
}

View file

@ -3329,6 +3329,8 @@ with pkgs;
wlogout = callPackage ../tools/wayland/wlogout { };
wlopm = callPackage ../tools/wayland/wlopm { };
wlr-randr = callPackage ../tools/wayland/wlr-randr { };
wlrctl = callPackage ../tools/wayland/wlrctl { };