mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
wayout: init at 1.1.2
This commit is contained in:
parent
5bf4ea1b8b
commit
c6db4ad162
28
pkgs/tools/wayland/wayout/default.nix
Normal file
28
pkgs/tools/wayland/wayout/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromSourcehut
|
||||
, rustPlatform
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "wayout";
|
||||
version = "1.1.3";
|
||||
|
||||
src = fetchFromSourcehut {
|
||||
owner = "~shinyzenith";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-EzRetxx0NojhBlBPwhQ7p9rGXDUBlocVqxcEVGIF3+0=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-QlxXbfeWJdCythYRRLSpJbTzKkwrL4kmAfyL3tRt194=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple output management tool for wlroots based compositors implementing";
|
||||
homepage = "https://git.sr.ht/~shinyzenith/wayout";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ onny ];
|
||||
broken = stdenv.isDarwin; # Build failed on Darwin
|
||||
};
|
||||
|
||||
}
|
@ -3319,6 +3319,8 @@ with pkgs;
|
||||
|
||||
wayland-proxy-virtwl = callPackage ../tools/wayland/wayland-proxy-virtwl { };
|
||||
|
||||
wayout = callPackage ../tools/wayland/wayout { };
|
||||
|
||||
way-displays = callPackage ../tools/wayland/way-displays { };
|
||||
|
||||
wev = callPackage ../tools/wayland/wev { };
|
||||
|
Loading…
Reference in New Issue
Block a user