nixpkgs/pkgs/tools/wayland/wlopm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
747 B
Nix
Raw Normal View History

2022-05-30 12:20:41 +00:00
{ 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";
2023-09-22 13:19:19 +00:00
mainProgram = "wlopm";
2022-05-30 12:20:41 +00:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ arjan-s ];
platforms = platforms.linux;
};
}