Merge pull request #128011 from alyssais/tinywl

tinywl: init at 0.14.0
This commit is contained in:
Sandro 2021-06-30 03:51:19 +02:00 committed by GitHub
commit 809c17294f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib, stdenv, wlroots, pkg-config
, libxkbcommon, pixman, udev, wayland, wayland-protocols
}:
stdenv.mkDerivation {
pname = "tinywl";
inherit (wlroots) version src;
sourceRoot = "source/tinywl";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libxkbcommon pixman udev wayland wayland-protocols wlroots ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp tinywl $out/bin
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/swaywm/wlroots/tree/master/tinywl";
description = ''"minimum viable product" Wayland compositor based on wlroots.'';
maintainers = with maintainers; [ qyliss ];
license = licenses.cc0;
inherit (wlroots.meta) platforms;
};
}

View file

@ -27262,6 +27262,8 @@ in
trayer = callPackage ../applications/window-managers/trayer { };
tinywl = callPackage ../applications/window-managers/tinywl { };
tinywm = callPackage ../applications/window-managers/tinywm { };
tree-from-tags = callPackage ../applications/audio/tree-from-tags { };