Merge remote-tracking branch 'origin/master' into staging-next

This commit is contained in:
K900 2025-11-03 13:42:40 +03:00
commit 531f9f1681
488 changed files with 647 additions and 650 deletions

View file

@ -215,10 +215,10 @@ nixos/modules/installer/tools/nix-fallback-paths.nix @NixOS/nix-team @raitobeza
/pkgs/development/r-modules @jbedo
# Rust
/pkgs/development/compilers/rust @alyssais @Mic92 @zowoq @winterqt @figsoda
/pkgs/build-support/rust @zowoq @winterqt @figsoda
/pkgs/development/compilers/rust @alyssais @Mic92 @zowoq @winterqt
/pkgs/build-support/rust @zowoq @winterqt
/pkgs/build-support/rust/fetch-cargo-vendor* @TomaSajt
/doc/languages-frameworks/rust.section.md @zowoq @winterqt @figsoda
/doc/languages-frameworks/rust.section.md @zowoq @winterqt
# Tcl
/pkgs/development/interpreters/tcl @fgaz
@ -447,8 +447,8 @@ pkgs/by-name/fo/forgejo/ @adamcstephens @bendlas @emilylange
/pkgs/os-specific/linux/zfs @adamcstephens @amarshall
# Zig
/pkgs/development/compilers/zig @figsoda @RossComputerGuy
/doc/hooks/zig.section.md @figsoda @RossComputerGuy
/pkgs/development/compilers/zig @RossComputerGuy
/doc/hooks/zig.section.md @RossComputerGuy
# Buildbot
nixos/modules/services/continuous-integration/buildbot @Mic92 @zowoq

View file

@ -32,7 +32,7 @@ Commit access to the Nixpkgs repository is not required for that.
In order to do so, add yourself to the [`maintainer-list.nix`](./maintainer-list.nix), and then to the desired package's `meta.maintainers` list, and send a PR with the changes.
If you're adding yourself as a maintainer as part of another PR (in which you become a maintainer of a package, for example), make your change to
`maintainer-list.nix` in a separate commit titled `maintainers: add <name>`.
`maintainer-list.nix` in a separate commit titled `maintainers: add <handle>`.
### Losing maintainer status

View file

@ -134,7 +134,6 @@
"a-kenji": 65275785,
"ahoneybun": 4884946,
"drakon64": 6444703,
"griffi-gh": 45996170,
"michaelBelsanti": 62124625,
"thefossguy": 44400303
},
@ -668,7 +667,7 @@
"name": "neovim"
},
"nix-formatting": {
"description": "Team to maintain the official Nix formatter and apply it to Nixpkgs",
"description": "Maintain the official Nix formatter and apply it to Nixpkgs: https://nixos.org/community/teams/formatting/",
"id": 9676823,
"maintainers": {
"infinisil": 20525370,
@ -876,7 +875,6 @@
"id": 7304571,
"maintainers": {
"Mic92": 96200,
"figsoda": 40620903,
"winterqt": 78392041,
"zowoq": 59103226
},

View file

@ -2633,13 +2633,6 @@
github = "aware70";
githubId = 7832566;
};
awwpotato = {
email = "awwpotato@voidq.com";
matrix = "@awwpotato:envs.net";
github = "awwpotato";
githubId = 153149335;
name = "awwpotato";
};
axertheaxe = {
email = "axertheaxe@proton.me";
github = "AxerTheAxe";
@ -5561,6 +5554,13 @@
githubId = 102048662;
name = "Dalton Luce";
};
da157 = {
email = "da157@voidq.com";
matrix = "@awwpotato:envs.net";
github = "0xda157";
githubId = 153149335;
name = "0xda157";
};
dabao1955 = {
email = "dabao1955@163.com";
github = "dabao1955";
@ -8476,13 +8476,6 @@
githubId = 52276064;
name = "figboy9";
};
figsoda = {
email = "figsoda@pm.me";
matrix = "@figsoda:matrix.org";
github = "figsoda";
githubId = 40620903;
name = "figsoda";
};
fionera = {
email = "nix@fionera.de";
github = "fionera";

View file

@ -159,5 +159,5 @@ tree-sitter-http,,,,0.0.33-1,,
tree-sitter-norg,,,,,5.1,mrcjkb
tree-sitter-orgmode,,,,,,
vstruct,,,,,,
vusted,,,,,,figsoda
vusted,,,,,,
xml2lua,,,,,,teto

1 name rockspec ref server version luaversion maintainers
159 tree-sitter-norg 5.1 mrcjkb
160 tree-sitter-orgmode
161 vstruct
162 vusted figsoda
163 xml2lua teto

View file

@ -982,7 +982,6 @@ with lib.maintainers;
zig = {
members = [
figsoda
RossComputerGuy
];
scope = "Maintain the Zig compiler toolchain and nixpkgs integration.";

View file

@ -13,7 +13,7 @@ in
{
meta = {
maintainers = lib.teams.freedesktop.members ++ (with lib.maintainers; [ figsoda ]);
maintainers = lib.teams.freedesktop.members ++ [ ];
};
options = {

View file

@ -82,6 +82,7 @@ in
pkgs.runCommand "man-cache"
{
nativeBuildInputs = [ buildPackage ];
preferLocalBuild = true;
}
''
echo "MANDB_MAP ${cfg.manualPages}/share/man $out" > man.conf

View file

@ -115,5 +115,5 @@ in
})
];
meta.maintainers = with lib.maintainers; [ figsoda ];
meta.maintainers = [ ];
}

View file

@ -25,5 +25,5 @@ in
};
};
meta.maintainers = with lib.maintainers; [ figsoda ];
meta.maintainers = [ ];
}

View file

@ -25,5 +25,5 @@ in
};
};
meta.maintainers = with lib.maintainers; [ figsoda ];
meta.maintainers = [ ];
}

View file

@ -795,7 +795,7 @@ in
};
options.HiddenServiceMaxStreams = lib.mkOption {
description = (descriptionGeneric "HiddenServiceMaxStreams");
type = with lib.types; nullOr (ints.between 0 65535);
type = with lib.types; nullOr ints.u16;
default = null;
};
options.HiddenServiceMaxStreamsCloseCircuit = optionBool "HiddenServiceMaxStreamsCloseCircuit";

View file

@ -51,7 +51,6 @@ in
};
meta.maintainers = with lib.maintainers; [
figsoda
thiagokokada
];
}

View file

@ -2,7 +2,6 @@
{
name = "sx";
meta.maintainers = with lib.maintainers; [
figsoda
thiagokokada
];

View file

@ -167,6 +167,6 @@ in
(super.nvim-treesitter.meta or { })
// {
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -5,13 +5,13 @@
}:
mkLibretroCore {
core = "bluemsx";
version = "0-unstable-2025-10-24";
version = "0-unstable-2025-11-01";
src = fetchFromGitHub {
owner = "libretro";
repo = "bluemsx-libretro";
rev = "3a2855e30c7f39a41064ca36264e9bf9f6170f8e";
hash = "sha256-k0j15MqmgaTrUc/FoZHuIyALCnMJXeSkx4dfnfrfG5o=";
rev = "1f8aeb9ac3f3a4202736ac22e1785f01a834b975";
hash = "sha256-VnTL7MLhB/WEHm9930OvM84I5Vp4AaAI6qh7I4QRkVw=";
};
meta = {

View file

@ -1048,11 +1048,11 @@
"vendorHash": null
},
"oracle_oci": {
"hash": "sha256-KrsIw2GQNA3Nlhui4Ib8HwuBuQPCZaecKvws6A18mcI=",
"hash": "sha256-R+Khf/BCDaFf1ExD3+zUIEoL/egRw0ube83cP3opO/I=",
"homepage": "https://registry.terraform.io/providers/oracle/oci",
"owner": "oracle",
"repo": "terraform-provider-oci",
"rev": "v7.23.0",
"rev": "v7.24.0",
"spdx": "MPL-2.0",
"vendorHash": null
},

View file

@ -32,6 +32,6 @@ buildLua rec {
changelog = "https://github.com/marzzzello/mpv_thumbnail_script/releases/tag/${version}";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -41,6 +41,6 @@ buildGoModule rec {
homepage = "https://github.com/dnnrly/abbreviate";
changelog = "https://github.com/dnnrly/abbreviate/releases/tag/${src.rev}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -31,7 +31,7 @@ buildGoModule (finalAttrs: {
homepage = "https://github.com/jonaslu/ain";
changelog = "https://github.com/jonaslu/ain/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "ain";
};
})

View file

@ -27,6 +27,6 @@ buildGoModule rec {
mainProgram = "anew";
homepage = "https://github.com/tomnomnom/anew";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -22,6 +22,6 @@ rustPlatform.buildRustPackage rec {
mainProgram = "anewer";
homepage = "https://github.com/ysf/anewer";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -28,6 +28,6 @@ buildGoModule rec {
description = "Scriptable interpreter written in golang";
homepage = "https://github.com/mattn/anko";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -69,6 +69,6 @@ rustPlatform.buildRustPackage rec {
# or
asl20
];
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -42,7 +42,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/finefindus/artem";
changelog = "https://github.com/finefindus/artem/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "artem";
};
}

View file

@ -26,7 +26,7 @@ buildGoModule {
description = "Displays your webcam on the terminal";
homepage = "https://github.com/muesli/asciicam";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "asciicam";
};
}

View file

@ -24,7 +24,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/asciinema/agg";
changelog = "https://github.com/asciinema/agg/releases/tag/${src.rev}";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "agg";
};
}

View file

@ -21,7 +21,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/jpeddicord/askalono";
changelog = "https://github.com/jpeddicord/askalono/blob/${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "askalono";
};
}

View file

@ -27,7 +27,7 @@ buildGoModule rec {
homepage = "https://github.com/Ullaakut/astronomer";
changelog = "https://github.com/Ullaakut/astronomer/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "astronomer";
};
}

View file

@ -9,11 +9,11 @@
stdenv.mkDerivation rec {
pname = "astyle";
version = "3.6.12";
version = "3.6.13";
src = fetchurl {
url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.bz2";
hash = "sha256-Gd6wahq25QELlsKBuuNQVg2XicvIluMD82EBeYMv0r4=";
hash = "sha256-BIt0sUxuAff66OY7dn2jMwOrOdkCKv4zBVzkueVvFi0=";
};
nativeBuildInputs = [ cmake ];

View file

@ -28,7 +28,7 @@ rustPlatform.buildRustPackage {
asl20
mit
];
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "ag";
};
}

View file

@ -59,7 +59,7 @@ buildGoModule (finalAttrs: {
homepage = "https://github.com/netr0m/az-pim-cli";
changelog = "https://github.com/netr0m/az-pim-cli/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.awwpotato ];
maintainers = [ lib.maintainers.da157 ];
mainProgram = "az-pim-cli";
};
})

View file

@ -22,7 +22,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/Canop/backdown";
changelog = "https://github.com/Canop/backdown/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "backdown";
};
}

View file

@ -50,7 +50,6 @@ rustPlatform.buildRustPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
Br1ght0ne
figsoda
];
platforms = lib.platforms.unix;
mainProgram = "bandwhich";

View file

@ -28,7 +28,7 @@ rustPlatform.buildRustPackage rec {
description = "Simple timetracker for the command line";
homepage = "https://github.com/nikolassv/bartib";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "bartib";
};
}

View file

@ -49,6 +49,6 @@ rustPlatform.buildRustPackage rec {
asl20 # or
mit
];
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -63,7 +63,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
changelog = "https://github.com/biomejs/biome/blob/${finalAttrs.src.rev}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
figsoda
isabelroses
wrbbz
];

View file

@ -42,7 +42,7 @@ buildGoModule rec {
homepage = "https://github.com/codesenberg/bombardier";
changelog = "https://github.com/codesenberg/bombardier/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "bombardier";
};
}

View file

@ -3,7 +3,6 @@
fetchFromGitHub,
lib,
python3,
fetchpatch,
cmake,
lingeling,
btor2tools,
@ -13,23 +12,19 @@
stdenv.mkDerivation rec {
pname = "boolector";
version = "3.2.3";
version = "3.2.4";
src = fetchFromGitHub {
owner = "boolector";
repo = "boolector";
tag = version;
hash = "sha256-CdfpXUbU1+yEmrNyl+hvHlJfpzzzx356naim6vRafDg=";
hash = "sha256-CKhaPaWUB6Fz0LfnCl81LVmTebCWzTvZLKeC0KH3by4=";
};
patches = [
# present in master - remove after 3.2.3
(fetchpatch {
name = "update-unit-tests-to-cpp-14.patch";
url = "https://github.com/Boolector/boolector/commit/cc13f371c0c5093d98638ddd213dc835ef3aadf3.patch";
hash = "sha256-h8DBhAvUu+wXBwmvwRhHnJv3XrbEpBpvX9D1FI/+avc=";
})
];
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace-fail "cmake_minimum_required(VERSION 3.3)" "cmake_minimum_required(VERSION 3.10)"
'';
nativeBuildInputs = [
cmake

View file

@ -59,7 +59,6 @@ rustPlatform.buildRustPackage rec {
mainProgram = "btm";
maintainers = with lib.maintainers; [
berbiche
figsoda
gepbird
];
};

View file

@ -38,7 +38,6 @@ rustPlatform.buildRustPackage rec {
license = licenses.mit;
maintainers = with maintainers; [
dit7ya
figsoda
];
platforms = platforms.linux;
broken = stdenv.hostPlatform.isAarch64;

View file

@ -97,6 +97,6 @@ python3Packages.buildPythonApplication rec {
homepage = "https://juftin.com/browsr";
changelog = "https://github.com/juftin/browsr/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -60,7 +60,7 @@ python3Packages.buildPythonApplication rec {
mainProgram = "calligraphy";
maintainers = with lib.maintainers; [
aleksana
awwpotato
da157
];
platforms = lib.platforms.linux;
};

View file

@ -37,7 +37,6 @@ rustPlatform.buildRustPackage rec {
];
maintainers = with lib.maintainers; [
evanjs
figsoda
matthiasbeyer
];
mainProgram = "cargo-about";

View file

@ -23,7 +23,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -43,7 +43,6 @@ rustPlatform.buildRustPackage rec {
];
maintainers = with lib.maintainers; [
basvandijk
figsoda
jk
];
};

View file

@ -39,6 +39,6 @@ rustPlatform.buildRustPackage rec {
mit
unlicense
];
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -68,6 +68,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/cargo-bins/cargo-binstall";
changelog = "https://github.com/cargo-bins/cargo-binstall/releases/tag/v${version}";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -27,7 +27,6 @@ rustPlatform.buildRustPackage rec {
asl20
];
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -39,6 +39,6 @@ rustPlatform.buildRustPackage {
asl20
mit
];
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -26,7 +26,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -40,7 +40,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with lib.maintainers; [
figsoda
matthiasbeyer
janlikar
];

View file

@ -53,7 +53,7 @@ rustPlatform.buildRustPackage rec {
mit
asl20
];
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "cargo-codspeed";
};
}

View file

@ -35,7 +35,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/bytecodealliance/cargo-component";
changelog = "https://github.com/bytecodealliance/cargo-component/releases/tag/${src.rev}";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "cargo-component";
};
}

View file

@ -26,6 +26,6 @@ rustPlatform.buildRustPackage rec {
asl20
mit
];
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -44,7 +44,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with lib.maintainers; [
figsoda
matthiasbeyer
jk
];

View file

@ -24,7 +24,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://git.sr.ht/~jplatte/cargo-depgraph/tree/${src.rev}/item/CHANGELOG.md";
license = licenses.gpl3Plus;
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -55,7 +55,6 @@ rustPlatform.buildRustPackage rec {
asl20
];
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -24,7 +24,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/the-lean-crate/cargo-diet/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -60,7 +60,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with maintainers; [
figsoda
matthiasbeyer
mistydemeo
];

View file

@ -40,7 +40,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/Keruspe/cargo-duplicates";
license = licenses.mit;
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -39,7 +39,6 @@ rustPlatform.buildRustPackage rec {
];
maintainers = with lib.maintainers; [
Br1ght0ne
figsoda
gerschtli
jb55
killercup

View file

@ -26,7 +26,6 @@ rustPlatform.buildRustPackage rec {
asl20
];
maintainers = with lib.maintainers; [
figsoda
xrelkd
];
mainProgram = "cargo-expand";

View file

@ -78,7 +78,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
mit
];
maintainers = with lib.maintainers; [
figsoda
turbomack
matthiasbeyer
];

View file

@ -40,6 +40,6 @@ rustPlatform.buildRustPackage {
mit # or
asl20
];
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -27,6 +27,6 @@ rustPlatform.buildRustPackage rec {
asl20 # or
mit
];
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -45,7 +45,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
asl20
];
maintainers = with lib.maintainers; [
figsoda
macalinao
nartsiss
];

View file

@ -37,7 +37,6 @@ rustPlatform.buildRustPackage rec {
asl20
];
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -35,7 +35,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/mitsuhiko/insta/blob/${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
figsoda
oxalica
matthiasbeyer
];

View file

@ -22,7 +22,6 @@ rustPlatform.buildRustPackage rec {
license = with licenses; [ mit ];
maintainers = with maintainers; [
basvandijk
figsoda
matthiasbeyer
];
};

View file

@ -27,7 +27,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -46,6 +46,6 @@ rustPlatform.buildRustPackage rec {
asl20
mit
];
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -27,7 +27,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with lib.maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -27,7 +27,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/bnjbvr/cargo-machete/blob/${src.rev}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -47,7 +47,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/sagiegurari/cargo-make/blob/${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [
figsoda
xrelkd
];
mainProgram = "cargo-make";

View file

@ -52,7 +52,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/regexident/cargo-modules/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.mpl20;
maintainers = with lib.maintainers; [
figsoda
rvarago
matthiasbeyer
];

View file

@ -26,6 +26,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/sourcefrog/cargo-mutants";
changelog = "https://github.com/sourcefrog/cargo-mutants/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -46,7 +46,6 @@ rustPlatform.buildRustPackage rec {
];
maintainers = with maintainers; [
ekleog
figsoda
matthiasbeyer
];
};

View file

@ -28,6 +28,6 @@ rustPlatform.buildRustPackage rec {
mainProgram = "cargo-play";
homepage = "https://github.com/fanzeyi/cargo-play";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -52,7 +52,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with lib.maintainers; [
figsoda
gerschtli
];
};

View file

@ -68,7 +68,6 @@ rustPlatform.buildRustPackage rec {
asl20
];
maintainers = with lib.maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -46,7 +46,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with lib.maintainers; [
figsoda
oxalica
matthiasbeyer
];

View file

@ -43,6 +43,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://shuttle.rs";
changelog = "https://github.com/shuttle-hq/shuttle/releases/tag/${src.rev}";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -27,7 +27,6 @@ rustPlatform.buildRustPackage rec {
asl20
];
maintainers = with lib.maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -28,7 +28,6 @@ rustPlatform.buildRustPackage rec {
zlib
]; # any of three
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -25,7 +25,6 @@ rustPlatform.buildRustPackage rec {
mit
];
maintainers = with lib.maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -43,7 +43,6 @@ rustPlatform.buildRustPackage rec {
asl20
];
maintainers = with maintainers; [
figsoda
hugoreeves
];
};

View file

@ -27,7 +27,6 @@ rustPlatform.buildRustPackage rec {
asl20
];
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -67,7 +67,6 @@ rustPlatform.buildRustPackage rec {
gpl3Only
];
maintainers = with lib.maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -39,7 +39,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/timonpost/cargo-unused-features";
license = licenses.mit;
maintainers = with maintainers; [
figsoda
matthiasbeyer
];
mainProgram = "unused-features";

View file

@ -29,7 +29,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
mit
];
maintainers = with lib.maintainers; [
figsoda
jk
matthiasbeyer
];

View file

@ -44,7 +44,6 @@ rustPlatform.buildRustPackage rec {
changelog = "https://github.com/pksunkara/cargo-workspaces/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
figsoda
macalinao
matthiasbeyer
];

View file

@ -32,6 +32,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/messense/cargo-zigbuild";
changelog = "https://github.com/messense/cargo-zigbuild/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -44,7 +44,7 @@ buildGoModule {
description = "GTK4 frontend for catnip";
homepage = "https://github.com/diamondburned/catnip-gtk4";
license = licenses.gpl3Only;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "catnip-gtk4";
};
}

View file

@ -46,7 +46,7 @@ buildGoModule rec {
homepage = "https://github.com/noriah/catnip";
changelog = "https://github.com/noriah/catnip/releases/tag/${src.rev}";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "catnip";
};
}

View file

@ -35,6 +35,6 @@ rustPlatform.buildRustPackage rec {
mit # or
asl20
];
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -21,7 +21,7 @@ rustPlatform.buildRustPackage rec {
description = "Configurable cd wrapper that lets you define your environment per directory";
homepage = "https://github.com/synoet/cdwe";
license = licenses.mit;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "cdwe";
};
}

View file

@ -38,6 +38,6 @@ buildGoModule rec {
homepage = "https://github.com/google/cel-go";
changelog = "https://github.com/google/cel-go/releases/tag/${src.rev}";
license = licenses.asl20;
maintainers = with maintainers; [ figsoda ];
maintainers = [ ];
};
}

View file

@ -43,7 +43,6 @@ buildGoModule rec {
changelog = "https://github.com/miniscruff/changie/blob/v${version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
figsoda
matthiasbeyer
];
};

View file

@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/brycx/checkpwn";
changelog = "https://github.com/brycx/checkpwn/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ figsoda ];
maintainers = [ ];
mainProgram = "checkpwn";
};
}

Some files were not shown because too many files have changed in this diff Show more