From b0e30e64e4ac13524d7c4e29646f8f10893785a3 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Thu, 5 Feb 2026 15:47:18 -0500 Subject: [PATCH] turingplus: remove meta = with lib; Signed-off-by: Ethan Carter Edwards --- pkgs/by-name/tu/turingplus/bootstrap.nix | 8 ++++---- pkgs/by-name/tu/turingplus/package.nix | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/by-name/tu/turingplus/bootstrap.nix b/pkgs/by-name/tu/turingplus/bootstrap.nix index 074b6d52c7d7..5f4cf44bdb58 100644 --- a/pkgs/by-name/tu/turingplus/bootstrap.nix +++ b/pkgs/by-name/tu/turingplus/bootstrap.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation (finalAttrs: { --set NIX_ENFORCE_PURITY 0 ''; - meta = with lib; { + meta = { description = "Extended version of the Turing programming language with concurrency and systems programming features"; mainProgram = "tpc"; platforms = [ @@ -86,8 +86,8 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/CordyJ/Open-TuringPlus"; downloadPage = "https://github.com/CordyJ/Open-TuringPlus/releases"; changelog = "https://github.com/CordyJ/Open-TuringPlus/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ MysteryBlokHed ]; + license = lib.licenses.mit; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; + maintainers = with lib.maintainers; [ MysteryBlokHed ]; }; }) diff --git a/pkgs/by-name/tu/turingplus/package.nix b/pkgs/by-name/tu/turingplus/package.nix index 10cad49005a7..1f5fa93451bf 100644 --- a/pkgs/by-name/tu/turingplus/package.nix +++ b/pkgs/by-name/tu/turingplus/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: { runHook postInstall ''; - meta = with lib; { + meta = { description = "Extended version of the Turing programming language with concurrency and systems programming features"; mainProgram = "tpc"; platforms = [ @@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/CordyJ/Open-TuringPlus"; downloadPage = "https://github.com/CordyJ/Open-TuringPlus/releases"; changelog = "https://github.com/CordyJ/Open-TuringPlus/releases/tag/v${finalAttrs.version}"; - license = licenses.mit; - maintainers = with maintainers; [ MysteryBlokHed ]; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ MysteryBlokHed ]; }; })