Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
101 lines
2.5 KiB
Python
Executable File
101 lines
2.5 KiB
Python
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell update-shell.nix -i python3
|
|
|
|
# format:
|
|
# $ nix run nixpkgs#python3Packages.ruff -- update.py
|
|
# type-check:
|
|
# $ nix run nixpkgs#python3Packages.mypy -- update.py
|
|
# linted:
|
|
# $ nix run nixpkgs#python3Packages.flake8 -- --ignore E501,E265,E402 update.py
|
|
|
|
import inspect
|
|
import os
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
# Import plugin update library from maintainers/scripts/pluginupdate.py
|
|
ROOT = Path(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))) # type: ignore
|
|
sys.path.insert(
|
|
0, os.path.join(ROOT.parent.parent.parent.parent.parent, "maintainers", "scripts")
|
|
)
|
|
import pluginupdate
|
|
|
|
GET_PLUGINS = f"""with import <localpkgs> {{ }};
|
|
let
|
|
inherit (kakouneUtils.override {{ }}) buildKakounePluginFrom2Nix;
|
|
generated = callPackage {ROOT}/generated.nix {{ inherit buildKakounePluginFrom2Nix; }};
|
|
|
|
hasChecksum =
|
|
value:
|
|
lib.isAttrs value
|
|
&& lib.hasAttrByPath [
|
|
"src"
|
|
"outputHash"
|
|
] value;
|
|
|
|
parse = name: value: {{
|
|
pname = value.pname;
|
|
version = value.version;
|
|
homePage = value.meta.homepage;
|
|
checksum =
|
|
if hasChecksum value then
|
|
{{
|
|
submodules = value.src.fetchSubmodules or false;
|
|
sha256 = value.src.outputHash;
|
|
rev = value.src.rev;
|
|
}}
|
|
else
|
|
null;
|
|
}};
|
|
in
|
|
lib.mapAttrs parse generated"""
|
|
|
|
HEADER = "# This file has been @generated by ./pkgs/applications/editors/kakoune/plugins/update.py. Do not edit!"
|
|
|
|
|
|
class KakouneEditor(pluginupdate.Editor):
|
|
def generate_nix(
|
|
self,
|
|
plugins: list[tuple[pluginupdate.PluginDesc, pluginupdate.Plugin]],
|
|
outfile: str,
|
|
):
|
|
with open(outfile, "w+") as f:
|
|
f.write(HEADER)
|
|
f.write(
|
|
"""
|
|
{ lib, buildKakounePluginFrom2Nix, fetchFromGitHub, overrides ? (self: super: {}) }:
|
|
let
|
|
packages = ( self:
|
|
{"""
|
|
)
|
|
for pluginDesc, plugin in plugins:
|
|
f.write(
|
|
f"""
|
|
{plugin.normalized_name} = buildKakounePluginFrom2Nix {{
|
|
pname = "{plugin.normalized_name}";
|
|
version = "{plugin.version}";
|
|
src = {pluginDesc.repo.as_nix(plugin)};
|
|
meta.homepage = "{pluginDesc.repo.url("")}";
|
|
}};
|
|
"""
|
|
)
|
|
f.write(
|
|
"""
|
|
});
|
|
in lib.fix' (lib.extends overrides packages)
|
|
"""
|
|
)
|
|
print(f"updated {outfile}")
|
|
|
|
def update(self, args):
|
|
pluginupdate.update_plugins(self, args)
|
|
|
|
|
|
def main():
|
|
editor = KakouneEditor("kakoune", ROOT, GET_PLUGINS)
|
|
editor.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|