hyprlang/nix/default.nix
Vaxry 3cc06e1687
Relicense hyprlang to lgpl 3 (#27)
---------

Co-authored-by: Mihai Fufezan <fufexan@protonmail.com>
2024-03-03 00:10:20 +00:00

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;
};
}