patches and low-level development discussion
 help / color / mirror / code / Atom feed
4dc50fb8ed4d182eca9f7b05648414af2cc79b08 blob 760 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
{ lib, stdenv, wlroots, pkg-config
, libGL, libxkbcommon, pixman, udev, wayland, wayland-protocols
}:

stdenv.mkDerivation {
  pname = "tinywl";
  inherit (wlroots) version src;

  sourceRoot = "source/tinywl";

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [
    libGL 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;
  };
}
debug log:

solving 4dc50fb8ed4 ...
found 4dc50fb8ed4 in https://spectrum-os.org/git/nixpkgs

Code repositories for project(s) associated with this public inbox

	https://spectrum-os.org/git/crosvm
	https://spectrum-os.org/git/doc
	https://spectrum-os.org/git/mktuntap
	https://spectrum-os.org/git/nixpkgs
	https://spectrum-os.org/git/spectrum
	https://spectrum-os.org/git/ucspi-vsock
	https://spectrum-os.org/git/www

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).