hyprlang/nix/default.nix

35 lines
588 B
Nix
Raw Normal View History

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