patches and low-level development discussion
 help / color / mirror / code / Atom feed
blob 4dc50fb8ed4d182eca9f7b05648414af2cc79b08 760 bytes (raw)
name: pkgs/applications/window-managers/tinywl/default.nix 	 # note: path name is non-authoritative(*)

 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://inbox.spectrum-os.org/spectrum-devel/20210701155446.1306212-2-hi@alyssa.is/

applying [1/1] https://inbox.spectrum-os.org/spectrum-devel/20210701155446.1306212-2-hi@alyssa.is/
diff --git a/pkgs/applications/window-managers/tinywl/default.nix b/pkgs/applications/window-managers/tinywl/default.nix
new file mode 100644
index 00000000000..4dc50fb8ed4

Checking patch pkgs/applications/window-managers/tinywl/default.nix...
Applied patch pkgs/applications/window-managers/tinywl/default.nix cleanly.

index at:
100644 4dc50fb8ed4d182eca9f7b05648414af2cc79b08	pkgs/applications/window-managers/tinywl/default.nix

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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).