Merge pull request #333939 from pinage404/add-update-script

treewide: add update script and source provenance
This commit is contained in:
éclairevoyant 2024-08-11 19:40:23 +00:00 committed by GitHub
commit 938253e0f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 0 deletions

View File

@ -6,6 +6,7 @@
libgit2,
oniguruma,
zlib,
nix-update-script,
}:
let
@ -36,10 +37,13 @@ rustPlatform.buildRustPackage {
RUSTONIG_SYSTEM_LIBONIG = true;
};
passthru.updateScript = nix-update-script { };
meta = {
description = "Interactive, cross-platform Git terminal application with clear git graphs arranged for your branching model";
homepage = "https://github.com/mlange-42/git-igitt";
license = lib.licenses.mit;
sourceProvenance = [ lib.sourceTypes.fromSource ];
maintainers = [ lib.maintainers.pinage404 ];
mainProgram = "git-igitt";
};

View File

@ -2,6 +2,7 @@
lib,
rustPlatform,
fetchFromGitHub,
nix-update-script,
}:
let
@ -20,10 +21,13 @@ rustPlatform.buildRustPackage {
cargoHash = "sha256-dbcz66t9fLhFjFkDMQ6VJmKa/lI/x2J7sHbguamA4Pw=";
passthru.updateScript = nix-update-script { };
meta = {
description = "Lint your mask targets";
homepage = "https://github.com/brumhard/masklint";
license = lib.licenses.mit;
sourceProvenance = [ lib.sourceTypes.fromSource ];
maintainers = [ lib.maintainers.pinage404 ];
mainProgram = "masklint";
};

View File

@ -2,6 +2,7 @@
lib,
rustPlatform,
fetchCrate,
nix-update-script,
}:
let
@ -18,10 +19,13 @@ rustPlatform.buildRustPackage {
cargoHash = "sha256-cn+R36koBSEp+wKtCQJK/L+mxeb8sHkZu8kWYRigIvw=";
passthru.updateScript = nix-update-script { };
meta = {
description = "MdBook preprocessor for removing yml header within --- (front-matter)";
homepage = "https://github.com/dvogt23/mdbook-yml-header";
license = lib.licenses.mpl20;
sourceProvenance = [ lib.sourceTypes.fromSource ];
mainProgram = "mdbook-yml-header";
maintainers = [ lib.maintainers.pinage404 ];
};