2022-03-02 09:39:09 +00:00
|
|
|
{ dbus
|
|
|
|
, fetchFromGitHub
|
|
|
|
, lib
|
|
|
|
, pkg-config
|
|
|
|
, rustPlatform
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
version = "0.1.1";
|
|
|
|
in
|
|
|
|
rustPlatform.buildRustPackage {
|
|
|
|
pname = "gnome-randr";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "maxwellainatchi";
|
|
|
|
repo = "gnome-randr-rust";
|
|
|
|
rev = "v" + version;
|
|
|
|
sha256 = "sha256-mciHgBEOCFjRA4MSoEdP7bIag0KE+zRbk4wOkB2PAn0=";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoSha256 = "sha256-rk8/sg5rSNS741QOWoAGIloqph+ZdBjl/xUaFl0A3Bs=";
|
|
|
|
|
|
|
|
buildInputs = [ dbus ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
2023-03-05 12:59:54 +00:00
|
|
|
meta = with lib; {
|
2022-03-02 09:39:09 +00:00
|
|
|
description = "An xrandr-like CLI for configuring displays on GNOME/Wayland, on distros that don't support `wlr-randr`";
|
|
|
|
homepage = "https://github.com/maxwellainatchi/gnome-randr-rust";
|
2023-03-05 12:59:54 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.roberth ];
|
|
|
|
platforms = platforms.linux;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "gnome-randr";
|
2022-03-02 09:39:09 +00:00
|
|
|
};
|
|
|
|
}
|