hyprlang: build on all platforms

This commit is contained in:
John Titor 2024-11-12 19:25:02 +05:30
parent 7d81e40708
commit e6353955db
No known key found for this signature in database
GPG Key ID: 29B0514F4E3C1CC0

View File

@ -27,11 +27,11 @@ stdenv.mkDerivation (finalAttrs: {
doCheck = true;
meta = with lib; {
meta = {
homepage = "https://github.com/hyprwm/hyprlang";
description = "Official implementation library for the hypr config language";
license = licenses.lgpl3Only;
platforms = platforms.linux;
maintainers = with maintainers; [ iogamaster fufexan ];
license = lib.licenses.lgpl3Only;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ iogamaster fufexan ];
};
})