mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
f7997354b7
This makes things more explicit (and less confusing) but only touches the packages that I maintain.
29 lines
775 B
Nix
29 lines
775 B
Nix
{ lib, stdenv, wlroots, pkg-config, wayland-scanner
|
|
, libxkbcommon, pixman, udev, wayland, wayland-protocols
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "tinywl";
|
|
inherit (wlroots) version src;
|
|
|
|
sourceRoot = "source/tinywl";
|
|
|
|
nativeBuildInputs = [ pkg-config wayland-scanner ];
|
|
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 = ''A "minimum viable product" Wayland compositor based on wlroots'';
|
|
maintainers = with maintainers; [ qyliss ];
|
|
license = licenses.cc0;
|
|
inherit (wlroots.meta) platforms;
|
|
};
|
|
}
|