Skip to content

Commit

Permalink
siyuan: improve updateScript; add maintainer
Browse files Browse the repository at this point in the history
  • Loading branch information
L-Trump committed Dec 22, 2024
1 parent a65145f commit 9d6d8ec
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions pkgs/by-name/si/siyuan/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -142,15 +142,23 @@ stdenv.mkDerivation (finalAttrs: {

passthru = {
inherit (finalAttrs.kernel) goModules; # this tricks nix-update into also updating the kernel goModules FOD
updateScript = nix-update-script { };
updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"^v(\\d+\\.\\d+\\.\\d+)$"
];
};
};

meta = {
description = "Privacy-first personal knowledge management system that supports complete offline usage, as well as end-to-end encrypted data sync";
homepage = "https://b3log.org/siyuan/";
license = lib.licenses.agpl3Plus;
mainProgram = "siyuan";
maintainers = with lib.maintainers; [ tomasajt ];
maintainers = with lib.maintainers; [
tomasajt
ltrump
];
platforms = lib.attrNames platformIds;
};
})

0 comments on commit 9d6d8ec

Please sign in to comment.