summary refs log blame commit diff
path: root/release/checks/wayland/surface-notify/default.nix
blob: 6b06ab231f584d4778a5649dca734da8e4a9bed4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11


                                                         

                                            





                                           

                              
                                               
    




                                                              
         
# 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 = lib.fileset.intersection src ./.;
  };
  sourceRoot = "source/release/checks/wayland/surface-notify";

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