This commit is contained in:
steveej 2023-11-23 17:52:21 +01:00
parent 563ffc4022
commit 93d6e2e39a
19 changed files with 185 additions and 188 deletions

View file

@ -1,13 +1,13 @@
{ lib
, src
, rustPlatform
, libinput
, libxkbcommon
, mesa
, pango
, udev
{
lib,
src,
rustPlatform,
libinput,
libxkbcommon,
mesa,
pango,
udev,
}:
rustPlatform.buildRustPackage rec {
pname = "jay";
version = src.rev;
@ -30,7 +30,7 @@ rustPlatform.buildRustPackage rec {
description = "A Wayland compositor written in Rust";
homepage = "https://github.com/mahkoh/jay";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ dit7ya ];
platforms = platforms.linux;
maintainers = with maintainers; [dit7ya];
};
}

View file

@ -1,20 +1,20 @@
{ lib
, src
, craneLib
, pkg-config
, wayland
, libseat
, libinput
, libxkbcommon
, mesa
, pango
, udev
, dbus
, libGL
{
lib,
src,
craneLib,
pkg-config,
wayland,
libseat,
libinput,
libxkbcommon,
mesa,
pango,
udev,
dbus,
libGL,
}:
craneLib.buildPackage {inherit src;
craneLib.buildPackage {
inherit src;
pname = "magmawm";
version = src.rev;
@ -44,7 +44,7 @@ craneLib.buildPackage {inherit src;
description = "A versatile and customizable Window Manager and Wayland Compositor";
homepage = "https://github.com/MagmaWM/MagmaWM";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ ];
platforms = platforms.linux;
maintainers = with maintainers; [];
};
}