beedii: add updateScript to clarify ignored versions (#400832)

This commit is contained in:
Austin Horstman
2025-05-01 23:22:55 -05:00
committed by GitHub
+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";