···126126 # your system. Help is available in the configuration.nix(5) man page
127127 # and in the NixOS manual (accessible by running `nixos-help`).
128128129129- { config, pkgs, ... }:
129129+ { config, lib, pkgs, ... }:
130130131131 {
132132 imports =
+1-1
nixos/modules/services/audio/jmusicbot.nix
···4444 };
4545 };
46464747- meta.maintainers = with maintainers; [ SuperSandro2000 ];
4747+ meta.maintainers = with maintainers; [ ];
4848}
+7-5
nixos/modules/services/backup/tarsnap.nix
···3232 services.tarsnap = {
3333 enable = mkEnableOption (lib.mdDoc "periodic tarsnap backups");
34343535+ package = mkPackageOption pkgs "tarsnap" { };
3636+3537 keyfile = mkOption {
3638 type = types.str;
3739 default = "/root/tarsnap.key";
···307309 requires = [ "network-online.target" ];
308310 after = [ "network-online.target" ];
309311310310- path = with pkgs; [ iputils tarsnap util-linux ];
312312+ path = with pkgs; [ iputils gcfg.package util-linux ];
311313312314 # In order for the persistent tarsnap timer to work reliably, we have to
313315 # make sure that the tarsnap server is reachable after systemd starts up
···318320 '';
319321320322 script = let
321321- tarsnap = ''tarsnap --configfile "/etc/tarsnap/${name}.conf"'';
323323+ tarsnap = ''${lib.getExe gcfg.package} --configfile "/etc/tarsnap/${name}.conf"'';
322324 run = ''${tarsnap} -c -f "${name}-$(date +"%Y%m%d%H%M%S")" \
323325 ${optionalString cfg.verbose "-v"} \
324326 ${optionalString cfg.explicitSymlinks "-H"} \
···355357 description = "Tarsnap restore '${name}'";
356358 requires = [ "network-online.target" ];
357359358358- path = with pkgs; [ iputils tarsnap util-linux ];
360360+ path = with pkgs; [ iputils gcfg.package util-linux ];
359361360362 script = let
361361- tarsnap = ''tarsnap --configfile "/etc/tarsnap/${name}.conf"'';
363363+ tarsnap = ''${lib.getExe gcfg.package} --configfile "/etc/tarsnap/${name}.conf"'';
362364 lastArchive = "$(${tarsnap} --list-archives | sort | tail -1)";
363365 run = ''${tarsnap} -x -f "${lastArchive}" ${optionalString cfg.verbose "-v"}'';
364366 cachedir = escapeShellArg cfg.cachedir;
···402404 { text = configFile name cfg;
403405 }) gcfg.archives;
404406405405- environment.systemPackages = [ pkgs.tarsnap ];
407407+ environment.systemPackages = [ gcfg.package ];
406408 };
407409}
+2
nixos/modules/services/web-apps/cloudlog.nix
···308308 pools.cloudlog = {
309309 inherit (cfg) user;
310310 group = config.services.nginx.group;
311311+ # cloudlog is currently broken on php 8.2
312312+ phpPackage = pkgs.php81;
311313 settings = {
312314 "listen.owner" = config.services.nginx.user;
313315 "listen.group" = config.services.nginx.group;
···9797 meta = {
9898 description = "Use any remote machine with a SSH server as your development environment.";
9999 license = lib.licenses.unfree;
100100- maintainers = [ lib.maintainers.SuperSandro2000 lib.maintainers.tbenst ];
100100+ maintainers = [ lib.maintainers.tbenst ];
101101 };
102102}
···309309 # To fix the build as we don't provide libffi_pic.a
310310 # (ld.lld: error: unable to find library -l:libffi_pic.a):
311311 use_system_libffi = true;
312312- } // lib.optionalAttrs (chromiumVersionAtLeast "115") {
313312 # Use nixpkgs Rust compiler instead of the one shipped by Chromium.
314313 # We do intentionally not set rustc_version as nixpkgs will never do incremental
315314 # rebuilds, thus leaving this empty is fine.
···100100 description = "A clang wrapper library with an OpenCL-oriented API and the ability to compile OpenCL C kernels to SPIR-V modules";
101101 license = licenses.ncsa;
102102 platforms = platforms.all;
103103- maintainers = with maintainers; [ SuperSandro2000 ];
103103+ maintainers = with maintainers; [ ];
104104 };
105105 };
106106in
···2424 description = "Allows you to specify timeouts when calling any existing function. Also provides support for stoppable-threads";
2525 homepage = "https://github.com/kata198/func_timeout";
2626 license = licenses.lgpl3Only;
2727- maintainers = with maintainers; [ SuperSandro2000 ];
2727+ maintainers = with maintainers; [ ];
2828 };
2929}
···7878 between python scripts. All major ciphers and hash methods are
7979 supported. SFTP client and server mode are both supported too.
8080 '';
8181- maintainers = with maintainers; [ SuperSandro2000 ];
8181+ maintainers = with maintainers; [ ];
8282 };
8383}
···2727 description = "Get a public suffix for a domain name using the Public Suffix List";
2828 homepage = "https://github.com/nexB/python-publicsuffix2";
2929 license = licenses.mpl20;
3030- maintainers = with maintainers; [ SuperSandro2000 ];
3030+ maintainers = with maintainers; [ ];
3131 };
3232}
···3939 description = "Collection of functions to generate hashes for signing on Ethereum";
4040 homepage = "https://github.com/rmeissner/py-eth-sig-utils";
4141 license = licenses.mit;
4242- maintainers = with maintainers; [ SuperSandro2000 ];
4242+ maintainers = with maintainers; [ ];
4343 # TODO: upstream is stale and doesn't not work with the new `eth-abi` package any more.
4444 broken = true;
4545 };
···4949 description = "Module that acts as a WSGI application in place of a real URI for testing";
5050 homepage = "https://github.com/cdent/wsgi-intercept";
5151 license = licenses.mit;
5252- maintainers = with maintainers; [ SuperSandro2000 ];
5252+ maintainers = with maintainers; [ ];
5353 };
5454}
···2626 description = "Makes working with XML feel like you are working with JSON";
2727 homepage = "https://github.com/martinblech/xmltodict";
2828 license = licenses.mit;
2929- maintainers = with maintainers; [ SuperSandro2000 ];
2929+ maintainers = with maintainers; [ ];
3030 };
3131}
···3131 description = "Prometheus exporter for Unbound DNS resolver";
3232 homepage = "https://github.com/svartalf/unbound-telemetry";
3333 license = licenses.mit;
3434- maintainers = with maintainers; [ SuperSandro2000 ];
3434+ maintainers = with maintainers; [ ];
3535 };
3636}
-8
pkgs/servers/nextcloud/packages/27.json
···139139 "agpl"
140140 ]
141141 },
142142- "news": {
143143- "sha256": "",
144144- "url": "",
145145- "version": "",
146146- "description": "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)",
147147- "homepage": "https://github.com/nextcloud/news",
148148- "licenses": null
149149- },
150142 "notes": {
151143 "sha256": "1g4ibrymsfd2bcvmyfyrl23z2kh4bgkwrgyacvdx1glk44di6sgc",
152144 "url": "https://github.com/nextcloud-releases/notes/releases/download/v4.8.1/notes.tar.gz",
···2222 your selection will be sent to standard output.
2323 '';
2424 license = licenses.gpl2Only;
2525- maintainers = with maintainers; [ matthiasbeyer SuperSandro2000 ];
2525+ maintainers = with maintainers; [ matthiasbeyer ];
2626 platforms = platforms.unix;
2727 };
2828}
+1-1
pkgs/tools/misc/thefuck/default.nix
···3939 homepage = "https://github.com/nvbn/thefuck";
4040 description = "Magnificent app which corrects your previous console command";
4141 license = licenses.mit;
4242- maintainers = with maintainers; [ SuperSandro2000 ];
4242+ maintainers = with maintainers; [ ];
4343 };
4444}
···4444 Works with Linux and Mac OS and supports DNS tunneling.
4545 '';
4646 license = licenses.lgpl21;
4747- maintainers = with maintainers; [ domenkozar carlosdagos SuperSandro2000 ];
4747+ maintainers = with maintainers; [ domenkozar carlosdagos ];
4848 };
4949}
···3434 description = "More powerful alternative to sysctl(8) with a terminal user interface";
3535 homepage = "https://github.com/orhun/systeroid";
3636 license = licenses.asl20;
3737- maintainers = with maintainers; [ SuperSandro2000 ];
3737+ maintainers = with maintainers; [ figsoda ];
3838 };
3939}
+1-1
pkgs/tools/system/tree/default.nix
···4646 the LS_COLORS environment variable is set and output is to tty.
4747 '';
4848 platforms = platforms.all;
4949- maintainers = with maintainers; [ SuperSandro2000 ];
4949+ maintainers = with maintainers; [ ];
5050 };
5151}