Skip to content

Commit

Permalink
Merge pull request #162468 from roberth/init-gnome-randr
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Mar 11, 2022
2 parents 1c35a82 + 387905a commit c357d26
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/tools/wayland/gnome-randr/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{ 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 ];

meta = {
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";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.roberth ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6057,6 +6057,8 @@ with pkgs;

gnome-photos = callPackage ../applications/graphics/gnome-photos { };

gnome-randr = callPackage ../tools/wayland/gnome-randr { };

gnokii = callPackage ../tools/misc/gnokii { };

gnuapl = callPackage ../development/interpreters/gnu-apl { };
Expand Down

0 comments on commit c357d26

Please sign in to comment.