hyprlang/nix/default.nix

22 lines
420 B
Nix
Raw Normal View History

2023-12-28 22:11:34 +01:00
{
lib,
stdenv,
cmake,
version ? "git",
2023-12-28 22:27:46 +01:00
doCheck ? false,
2023-12-28 22:11:34 +01:00
}:
stdenv.mkDerivation {
pname = "hyprlang";
2023-12-28 22:27:46 +01:00
inherit version doCheck;
2023-12-28 22:11:34 +01:00
src = ../.;
nativeBuildInputs = [cmake];
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprlang";
description = "The official implementation library for the hypr config language";
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}