From eca3d38d188dd9d9ebb60a502ba42a6ca92d550d Mon Sep 17 00:00:00 2001 From: Artturin Date: Wed, 22 Mar 2023 22:27:31 +0200 Subject: [PATCH] newlib: add meta --- pkgs/development/misc/newlib/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/development/misc/newlib/default.nix b/pkgs/development/misc/newlib/default.nix index e515ef540aab..4ec603f250d5 100644 --- a/pkgs/development/misc/newlib/default.nix +++ b/pkgs/development/misc/newlib/default.nix @@ -82,4 +82,17 @@ stdenv.mkDerivation (finalAttrs: { incdir = "/${stdenv.targetPlatform.config}/include"; libdir = "/${stdenv.targetPlatform.config}/lib"; }; + + meta = with lib; { + description = "a C library intended for use on embedded systems"; + homepage = "https://sourceware.org/newlib/"; + # arch has "bsd" while gentoo has "NEWLIB LIBGLOSS GPL-2" while COPYING has "gpl2" + # there are 5 copying files in total + # COPYING + # COPYING.LIB + # COPYING.LIBGLOSS + # COPYING.NEWLIB + # COPYING3 + license = licenses.gpl2Plus; + }; })