lucide: init at 0.541.0

Co-authored-by: Fernando Rodrigues <alpha@sigmasquadron.net>
This commit is contained in:
Tatesa Uradnik
2025-08-27 18:37:57 +02:00
co-authored by Fernando Rodrigues
parent 2b1f324453
commit 799301ce96
2 changed files with 32 additions and 0 deletions
+6
View File
@@ -11496,6 +11496,12 @@
githubId = 2588851;
name = "Jan Solanti";
};
janTatesa = {
email = "taduradnik@gmail.com";
github = "janTatesa";
githubId = 100917739;
name = "Tatesa Uradnik";
};
jappie = {
email = "jappieklooster@hotmail.com";
github = "jappeace";
+26
View File
@@ -0,0 +1,26 @@
{ lib, fetchurl }:
fetchurl rec {
pname = "lucide";
version = "0.541.0";
url = "https://unpkg.com/lucide-static@${version}/font/Lucide.ttf";
hash = "sha256-b6zAx9b89oYS1Vrm7XR8Uu0M6unmTfC3o9Q2ZAuCrjo=";
downloadToTemp = true;
recursiveHash = true;
postFetch = ''
mkdir -p $out/share/fonts/truetype
cp -a $downloadedFile $out/share/fonts/truetype/Lucide.ttf
'';
meta = {
homepage = "https://lucide.dev/";
description = "Open-source icon library that provides 1000+ icons";
downloadPage = url;
platforms = lib.platforms.all;
license = lib.licenses.isc;
maintainers = [ lib.maintainers.janTatesa ];
sourceProvenance = [ lib.sourceTypes.binaryBytecode ];
};
}