beedii: add updateScript to clarify ignored versions

This commit is contained in:
Kenichi Kamiya
2025-04-22 21:21:16 +09:00
parent 00a5791030
commit b754c991b9
+10 -3
View File
@@ -2,13 +2,11 @@
lib,
stdenvNoCC,
fetchzip,
gitUpdater,
}:
stdenvNoCC.mkDerivation rec {
pname = "beedii";
# 1.2.0 does not include font files.
# https://github.com/webkul/beedii/issues/1
version = "1.0.0";
src = fetchzip {
@@ -25,6 +23,15 @@ stdenvNoCC.mkDerivation rec {
runHook postInstall
'';
passthru.updateScript = gitUpdater {
url = "https://github.com/webkul/beedii";
rev-prefix = "v";
# This version does not include font files in the released assets.
# https://github.com/webkul/beedii/issues/1
ignoredVersions = "^1\.2\.0$";
};
meta = {
description = "Free Hand Drawn Emoji Font";
homepage = "https://github.com/webkul/beedii";