mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
badrobot,ryubing: fix changelog, shisho: drop (#514414)
This commit is contained in:
commit
5f669ef0fe
5 changed files with 10 additions and 67 deletions
|
|
@ -269,6 +269,8 @@
|
|||
|
||||
- `opensmtpd-filter-dkimsign` is now installed into `libexec/smtpd` instead of `libexec/opensmtpd` so that now it is properly linked into the environment built by `services.opensmtpd.procPackages`. If you hardcoded path to `filter-dkimsign` please consider using this option.
|
||||
|
||||
- `shisho` has been removed because it's archived. `semgrep`, `opengrep`, and `ast-grep` provide similar functionality.
|
||||
|
||||
- `services.openssh.settings.AcceptEnv` now explicitly defined as an option that takes a list of strings, to facilitate option merging. Setting it to a string value is no longer supported.
|
||||
|
||||
- All Xfce packages have been moved to top level (e.g. if you previously added `pkgs.xfce.xfce4-whiskermenu-plugin` to `environment.systemPackages`, you will need to change it to `pkgs.xfce4-whiskermenu-plugin`). The `xfce` scope will be removed in NixOS 26.11.
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ buildGoModule (finalAttrs: {
|
|||
src = fetchFromGitHub {
|
||||
owner = "controlplaneio";
|
||||
repo = "badrobot";
|
||||
rev = "v${finalAttrs.version}";
|
||||
tag = "v${finalAttrs.version}";
|
||||
sha256 = "sha256-U3b5Xw+GjnAEXteivztHdcAcXx7DYtgaUbW5oax0mIk=";
|
||||
};
|
||||
vendorHash = "sha256-oYdkCEdrw1eE5tnKveeJM3upRy8hOVc24JNN1bLX+ec=";
|
||||
|
|
@ -35,7 +35,7 @@ buildGoModule (finalAttrs: {
|
|||
|
||||
meta = {
|
||||
homepage = "https://github.com/controlplaneio/badrobot";
|
||||
changelog = "https://github.com/controlplaneio/badrobot/blob/v${finalAttrs.version}/CHANGELOG.md";
|
||||
changelog = "https://github.com/controlplaneio/badrobot/releases/tag/v${finalAttrs.src.tag}";
|
||||
description = "Operator Security Audit Tool";
|
||||
mainProgram = "badrobot";
|
||||
longDescription = ''
|
||||
|
|
@ -47,6 +47,8 @@ buildGoModule (finalAttrs: {
|
|||
cluster permissions.
|
||||
'';
|
||||
license = with lib.licenses; [ asl20 ];
|
||||
maintainers = with lib.maintainers; [ jk ];
|
||||
maintainers = with lib.maintainers; [
|
||||
jk
|
||||
];
|
||||
};
|
||||
})
|
||||
|
|
|
|||
|
|
@ -135,7 +135,8 @@ buildDotnetModule rec {
|
|||
|
||||
meta = {
|
||||
homepage = "https://ryujinx.app";
|
||||
changelog = "https://git.ryujinx.app/ryubing/ryujinx/-/wikis/changelog";
|
||||
# historical changelog https://git.ryujinx.app/projects/Ryubing/wiki/Changelog
|
||||
changelog = "https://git.ryujinx.app/projects/Ryubing/releases/tag/${src.tag}";
|
||||
description = "Experimental Nintendo Switch Emulator written in C# (community fork of Ryujinx)";
|
||||
longDescription = ''
|
||||
Ryujinx is an open-source Nintendo Switch emulator, created by gdkchan,
|
||||
|
|
|
|||
|
|
@ -1,63 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
installShellFiles,
|
||||
rustfmt,
|
||||
stdenv,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "shisho";
|
||||
version = "0.5.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "flatt-security";
|
||||
repo = "shisho";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-G7sHaDq+F5lXNaF1sSLUecdjZbCejJE79P4AQifKdFY=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
cargoHash = "sha256-gv3qvDzqwuuAVpbaOpMI7DuapSALMr/qzyhor3avYQI=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
installShellFiles
|
||||
# required to build serde-sarif dependency
|
||||
rustfmt
|
||||
];
|
||||
|
||||
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
||||
installShellCompletion --cmd shisho \
|
||||
--bash <($out/bin/shisho completion bash) \
|
||||
--fish <($out/bin/shisho completion fish) \
|
||||
--zsh <($out/bin/shisho completion zsh)
|
||||
'';
|
||||
|
||||
doInstallCheck = true;
|
||||
installCheckPhase = ''
|
||||
runHook preInstallCheck
|
||||
|
||||
$out/bin/shisho --help
|
||||
$out/bin/shisho --version | grep "${finalAttrs.version}"
|
||||
|
||||
runHook postInstallCheck
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "https://docs.shisho.dev/shisho/";
|
||||
changelog = "https://docs.shisho.dev/changelog/";
|
||||
description = "Lightweight static analyzer for several programming languages";
|
||||
mainProgram = "shisho";
|
||||
longDescription = ''
|
||||
Shisho is a lightweight static code analyzer designed for developers and
|
||||
is the core engine for Shisho products. It is, so to speak, like a
|
||||
pluggable and configurable linter; it gives developers a way to codify
|
||||
your domain knowledge over your code as rules. With powerful automation
|
||||
and integration capabilities, the rules will help you find and fix issues
|
||||
semiautomatically.
|
||||
'';
|
||||
license = lib.licenses.agpl3Only;
|
||||
maintainers = with lib.maintainers; [ jk ];
|
||||
};
|
||||
})
|
||||
|
|
@ -1856,6 +1856,7 @@ mapAliases {
|
|||
shades-of-gray-theme = throw "'shades-of-gray-theme' has been removed because upstream is a 404"; # Added 2025-12-20
|
||||
shared_desktop_ontologies = throw "'shared_desktop_ontologies' has been removed as it had been abandoned upstream"; # Added 2025-11-09
|
||||
shipyard = throw "'shipyard' has been renamed to/replaced by 'jumppad'"; # Converted to throw 2025-10-27
|
||||
shisho = throw "'shisho' has been removed, as it is archived upstream. Consider using 'semgrep', 'opengrep', or 'ast-grep' instead"; # Added 2026-04-28
|
||||
sic-image-cli = warnAlias "'sic-image-cli' has been renamed to 'imagineer'" imagineer; # Added 2026-03-29
|
||||
siduck76-st = throw "'siduck76-st' has been renamed to/replaced by 'st-snazzy'"; # Converted to throw 2025-10-27
|
||||
sierra-breeze-enhanced = throw "'sierra-breeze-enhanced' has been removed, as it is only compatible with Plasma 5, which is EOL"; # Added 2025-08-20
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue