mirror of
https://github.com/hyprwm/hyprlang.git
synced 2024-11-16 18:25:57 +01:00
3cc06e1687
--------- Co-authored-by: Mihai Fufezan <fufexan@protonmail.com>
23 lines
444 B
Nix
23 lines
444 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
cmake,
|
|
version ? "git",
|
|
doCheck ? false,
|
|
}:
|
|
stdenv.mkDerivation {
|
|
pname = "hyprlang";
|
|
inherit version doCheck;
|
|
src = ../.;
|
|
|
|
nativeBuildInputs = [cmake];
|
|
|
|
outputs = ["out" "dev"];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/hyprwm/hyprlang";
|
|
description = "The official implementation library for the hypr config language";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|