mirror of
https://github.com/hyprwm/hyprlang.git
synced 2024-11-17 02:25:59 +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;
|
||
|
};
|
||
|
}
|