summary refs log tree commit diff
path: root/release/checks/wayland/surface-notify/default.nix
blob: f70fd5c8e7c991262cf648b1eca37e5a81912a20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2023 Alyssa Ross <hi@alyssa.is>

import ../../../../lib/call-package.nix (
{ src, lib, stdenv, meson, ninja, pkg-config
, libxkbcommon, pixman, wayland, westonLite
}:

stdenv.mkDerivation {
  name = "surface-notify";

  src = lib.fileset.toSource {
    root = ../../../..;
    fileset = src;
  };
  sourceRoot = "source/release/checks/wayland/surface-notify";

  nativeBuildInputs = [ meson ninja pkg-config ];
  buildInputs = [ libxkbcommon pixman wayland westonLite ];
}
) (_: {})