aboutsummaryrefslogtreecommitdiffhomepage
path: root/default.nix
blob: 42a8191d4eeec871ffd00837e58153e24a07933a (plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
{ lib, stdenv, fetchFromGitHub, src, version, pkg-config, cmake, ninja, libdrm
, libinput, libxcb, libxkbcommon, mesa, mount, pango, wayland, wayland-protocols
, wayland-scanner, wlroots, xcbutilwm, xwayland, xwaylandSupport ? true }:

stdenv.mkDerivation {
  pname = "hyprland";
  inherit src version;

  nativeBuildInputs = [ cmake ninja pkg-config wayland ]
    ++ lib.optional xwaylandSupport xwayland;

  buildInputs = [
    libdrm
    libinput
    libxcb
    libxkbcommon
    mesa
    pango
    wayland-protocols
    wayland-scanner
    wlroots
    xcbutilwm
  ];

  dontBuild = true;
  dontInstall = true;

  patches = [ ./fix-makefile.diff ];

  postPatch = ''
    mkdir -p $out/bin
    make install PREFIX=$out
  '';

  meta = with lib; {
    homepage = "https://github.com/vaxerski/Hyprland";
    description =
      "A dynamic tiling Wayland compositor that doesn't sacrifice on its looks";
    license = licenses.bsd3;
    platforms = platforms.linux;
  };
}