From 4054b5f8c108bae987e8e21074203e8d32a5bf34 Mon Sep 17 00:00:00 2001 From: lucasew Date: Sun, 29 Dec 2024 22:04:52 -0300 Subject: [PATCH] andagii: fix license, minor refactoring Signed-off-by: lucasew --- pkgs/by-name/an/andagii/package.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/by-name/an/andagii/package.nix b/pkgs/by-name/an/andagii/package.nix index 3900d74f98b4..4d7a886ac548 100644 --- a/pkgs/by-name/an/andagii/package.nix +++ b/pkgs/by-name/an/andagii/package.nix @@ -4,7 +4,7 @@ fetchzip, }: -stdenvNoCC.mkDerivation rec { +stdenvNoCC.mkDerivation { pname = "andagii"; version = "1.0.2"; @@ -23,14 +23,11 @@ stdenvNoCC.mkDerivation rec { runHook postInstall ''; - # There are multiple claims that the font is GPL, so I include the - # package; but I cannot find the original source, so use it on your - # own risk Debian claims it is GPL - good enough for me. - meta = with lib; { + meta = { homepage = "http://www.i18nguy.com/unicode/unicode-font.html"; description = "Unicode Plane 1 Osmanya script font"; - maintainers = with maintainers; [ raskin ]; - license = "unknown"; - platforms = platforms.all; + maintainers = [ lib.maintainers.raskin ]; + license = lib.licenses.unfreeRedistributable; # upstream uses the term copyleft only + platforms = lib.platforms.all; }; }