From 8dfd0e7c30da9aa2984d4749f1c15d817e55a7f2 Mon Sep 17 00:00:00 2001 From: Gavin John Date: Thu, 16 Jan 2025 16:57:41 -0800 Subject: [PATCH] goocanvas3: remove with lib --- pkgs/development/libraries/goocanvas/3.x.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/goocanvas/3.x.nix b/pkgs/development/libraries/goocanvas/3.x.nix index 0a2a615637ea..0e316b874cb8 100644 --- a/pkgs/development/libraries/goocanvas/3.x.nix +++ b/pkgs/development/libraries/goocanvas/3.x.nix @@ -65,11 +65,11 @@ stdenv.mkDerivation (finalAttrs: { }; }; - meta = with lib; { + meta = { description = "Canvas widget for GTK based on the the Cairo 2D library"; homepage = "https://gitlab.gnome.org/Archive/goocanvas"; - license = licenses.lgpl2; # https://gitlab.gnome.org/GNOME/goocanvas/-/issues/12 - maintainers = with maintainers; [ bobby285271 ]; - platforms = platforms.unix; + license = lib.licenses.lgpl2; # https://gitlab.gnome.org/GNOME/goocanvas/-/issues/12 + maintainers = with lib.maintainers; [ bobby285271 ]; + platforms = lib.platforms.unix; }; })