Merge pull request #197552 from dit7ya/jay
This commit is contained in:
commit
7e301d080c
2 changed files with 43 additions and 0 deletions
41
pkgs/applications/window-managers/jay/default.nix
Normal file
41
pkgs/applications/window-managers/jay/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{ lib
|
||||||
|
, rustPlatform
|
||||||
|
, fetchFromGitHub
|
||||||
|
, libinput
|
||||||
|
, libxkbcommon
|
||||||
|
, mesa
|
||||||
|
, pango
|
||||||
|
, udev
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "jay";
|
||||||
|
version = "unstable-2022-11-20";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mahkoh";
|
||||||
|
repo = pname;
|
||||||
|
rev = "09b4668a5363a6e93dfb8ba35b244835f4edb0f2";
|
||||||
|
sha256 = "sha256-0IIzXY7AFTGEe0TzJVKOtTPUZee0Wz40yKgEWLeIYJw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-zSq6YBlm6gJXGlF9xZ8gWSTMewdNqrJzwP58a0x8QIU=";
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libxkbcommon
|
||||||
|
mesa
|
||||||
|
pango
|
||||||
|
udev
|
||||||
|
libinput
|
||||||
|
];
|
||||||
|
|
||||||
|
RUSTC_BOOTSTRAP = 1;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A Wayland compositor written in Rust";
|
||||||
|
homepage = "https://github.com/mahkoh/jay";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ dit7ya ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -29420,6 +29420,8 @@ with pkgs;
|
||||||
|
|
||||||
jackline = callPackage ../applications/networking/instant-messengers/jackline { };
|
jackline = callPackage ../applications/networking/instant-messengers/jackline { };
|
||||||
|
|
||||||
|
jay = callPackage ../applications/window-managers/jay { };
|
||||||
|
|
||||||
keylight-controller-mschneider82 = callPackage ../applications/misc/keylight-controller-mschneider82 { };
|
keylight-controller-mschneider82 = callPackage ../applications/misc/keylight-controller-mschneider82 { };
|
||||||
|
|
||||||
leftwm = callPackage ../applications/window-managers/leftwm { };
|
leftwm = callPackage ../applications/window-managers/leftwm { };
|
||||||
|
|
Loading…
Reference in a new issue