wlr-randr: rename from tools/misc to tools/wayland

This commit is contained in:
AndersonTorres
2021-02-16 12:37:40 -03:00
parent e6070d1e08
commit 34688a7fb0
2 changed files with 13 additions and 4 deletions
-23
View File
@@ -1,23 +0,0 @@
{ lib, stdenv, fetchFromGitHub, meson, ninja, cmake, pkg-config, wayland }:
stdenv.mkDerivation rec {
pname = "wlr-randr";
version = "0.2.0";
src = fetchFromGitHub {
owner = "emersion";
repo = pname;
rev = "v${version}";
sha256 = "sha256-JeSxFXSFxcTwJz9EaLb18wtD4ZIT+ATeYM5OyDTJhDQ=";
};
nativeBuildInputs = [ meson ninja cmake pkg-config ];
buildInputs = [ wayland ];
meta = with lib; {
license = licenses.mit;
description = "An xrandr clone for wlroots compositors";
homepage = "https://github.com/emersion/wlr-randr";
maintainers = with maintainers; [ ma27 ];
};
}