mirror of
https://github.com/hyprwm/hyprwayland-scanner.git
synced 2024-11-08 10:05:57 +01:00
28 lines
486 B
Nix
28 lines
486 B
Nix
|
{
|
||
|
lib,
|
||
|
stdenv,
|
||
|
cmake,
|
||
|
pkg-config,
|
||
|
pugixml,
|
||
|
version ? "git",
|
||
|
doCheck ? false,
|
||
|
}:
|
||
|
stdenv.mkDerivation {
|
||
|
pname = "hyprwayland-scanner";
|
||
|
inherit version doCheck;
|
||
|
src = ../.;
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
pkg-config
|
||
|
pugixml
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
homepage = "https://github.com/hyprwm/hyprwayland-scanner";
|
||
|
description = "A Hyprland version of wayland-scanner in and for C++";
|
||
|
license = licenses.bsd3;
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|