hyprlang/nix/default.nix

24 lines
449 B
Nix
Raw Normal View History

2023-12-28 23:11:34 +02:00
{
lib,
stdenv,
cmake,
version ? "git",
2023-12-28 23:27:46 +02:00
doCheck ? false,
2023-12-28 23:11:34 +02:00
}:
stdenv.mkDerivation {
pname = "hyprlang";
2023-12-28 23:27:46 +02:00
inherit version doCheck;
2023-12-28 23:11:34 +02:00
src = ../.;
nativeBuildInputs = [cmake];
2024-01-02 23:13:20 +02:00
outputs = ["out" "dev"];
2023-12-28 23:11:34 +02:00
meta = with lib; {
homepage = "https://github.com/hyprwm/hyprlang";
description = "The official implementation library for the hypr config language";
2024-03-03 18:10:57 +02:00
license = licenses.lgpl3Only;
2023-12-28 23:11:34 +02:00
platforms = platforms.linux;
};
}