opentxl: remove meta = with lib;

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
Ethan Carter Edwards
2026-02-05 15:57:37 -05:00
parent 26829ce5f3
commit a2e055ea72
+3 -3
View File
@@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: {
passthru.tests.factorial = callPackage ./factorial-test.nix { opentxl = finalAttrs.finalPackage; };
passthru.updateScript = nix-update-script { };
meta = with lib; {
meta = {
description = "Open-source compiler for the Txl language";
mainProgram = "txl";
platforms = [
@@ -71,7 +71,7 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/CordyJ/OpenTxl";
downloadPage = "https://github.com/CordyJ/OpenTxl/releases";
changelog = "https://github.com/CordyJ/OpenTxl/releases/tag/v${finalAttrs.version}";
license = licenses.mit;
maintainers = with maintainers; [ MysteryBlokHed ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ MysteryBlokHed ];
};
})