From e90e71b3069d4f05b3dd3221f3f2cc5090a9d45e Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Wed, 6 Nov 2024 02:34:31 +0100 Subject: [PATCH] libfmvoice: Drop meta-wide "with lib;" --- pkgs/by-name/li/libfmvoice/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/li/libfmvoice/package.nix b/pkgs/by-name/li/libfmvoice/package.nix index eada99e2e229..7b457400f576 100644 --- a/pkgs/by-name/li/libfmvoice/package.nix +++ b/pkgs/by-name/li/libfmvoice/package.nix @@ -53,11 +53,11 @@ stdenv.mkDerivation (finalAttrs: { updateScript = unstableGitUpdater { }; }; - meta = with lib; { + meta = { description = "C library for loading, saving and converting FM sound chip voice files in various formats"; homepage = "https://github.com/vampirefrog/libfmvoice"; - license = licenses.gpl3Only; - maintainers = with maintainers; [ OPNA2608 ]; - platforms = platforms.all; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ OPNA2608 ]; + platforms = lib.platforms.all; }; })