mirror of
https://github.com/hyprwm/hyprlang.git
synced 2025-12-24 05:50:02 +01:00
23 lines
412 B
Nix
23 lines
412 B
Nix
|
|
{
|
||
|
|
lib,
|
||
|
|
stdenv,
|
||
|
|
cmake,
|
||
|
|
version ? "git",
|
||
|
|
}:
|
||
|
|
stdenv.mkDerivation {
|
||
|
|
pname = "hyprlang";
|
||
|
|
inherit version;
|
||
|
|
src = ../.;
|
||
|
|
|
||
|
|
nativeBuildInputs = [cmake];
|
||
|
|
|
||
|
|
doCheck = true;
|
||
|
|
|
||
|
|
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;
|
||
|
|
};
|
||
|
|
}
|