Skip to content

Commit

Permalink
gnome-randr: init at 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
roberth committed Mar 11, 2022
1 parent 3473f50 commit 387905a
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 @@ -6011,6 +6011,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 387905a

Please sign in to comment.