depot/third_party/nixpkgs/pkgs/tools/wayland/wlopm/default.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

27 lines
720 B
Nix

{ 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;
};
}