From 35daaa722171d66b72d1946ef9506cf45cc38670 Mon Sep 17 00:00:00 2001 From: Sergei Zimmerman <145775305+xokdvium@users.noreply.github.com> Date: Fri, 20 Dec 2024 19:55:54 +0300 Subject: [PATCH] edb: remove usage of with lib; --- pkgs/development/tools/misc/edb/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/edb/default.nix b/pkgs/development/tools/misc/edb/default.nix index e7e7de50e427..1bdea24604dd 100644 --- a/pkgs/development/tools/misc/edb/default.nix +++ b/pkgs/development/tools/misc/edb/default.nix @@ -53,12 +53,12 @@ stdenv.mkDerivation (finalAttrs: { mkdir -p src/qhexview/.git lib/gdtoa-desktop/.git ''; - meta = with lib; { + meta = { description = "Cross platform AArch32/x86/x86-64 debugger"; mainProgram = "edb"; homepage = "https://github.com/eteran/edb-debugger"; - license = licenses.gpl2Plus; - maintainers = with maintainers; [ + license = lib.licenses.gpl2Plus; + maintainers = with lib.maintainers; [ lihop maxxk ];