Merge master into staging-next

authored by nixpkgs-ci[bot] and committed by GitHub 51bce876 701fbe6f

+693 -681
+18 -3
ci/default.nix
··· 75 75 includes = [ "*" ]; 76 76 priority = 1; 77 77 }; 78 + 79 + # TODO: Upstream this into treefmt-nix eventually: 80 + # https://github.com/numtide/treefmt-nix/issues/387 81 + settings.formatter.markdown-code-runner = { 82 + command = pkgs.lib.getExe pkgs.markdown-code-runner; 83 + options = 84 + let 85 + config = pkgs.writers.writeTOML "markdown-code-runner-config" { 86 + presets.nixfmt = { 87 + language = "nix"; 88 + command = [ (pkgs.lib.getExe pkgs.nixfmt) ]; 89 + }; 90 + }; 91 + in 92 + [ "--config=${config}" ]; 93 + includes = [ "*.md" ]; 94 + }; 78 95 }; 79 96 fs = pkgs.lib.fileset; 80 97 nixFilesSrc = fs.toSource { ··· 124 141 }; 125 142 officialRelease = false; 126 143 inherit pkgs lib-tests; 127 - # 2.28 / 2.29 take 9x longer than 2.30 or Lix. 128 - # TODO: Switch back to nixVersions.latest 129 - nix = pkgs.lix; 144 + nix = pkgs.nixVersions.latest; 130 145 }; 131 146 }
+6 -6
ci/pinned.json
··· 9 9 }, 10 10 "branch": "nixpkgs-unstable", 11 11 "submodules": false, 12 - "revision": "2baf8e1658cba84a032c3a8befb1e7b06629242a", 13 - "url": "https://github.com/NixOS/nixpkgs/archive/2baf8e1658cba84a032c3a8befb1e7b06629242a.tar.gz", 14 - "hash": "0l48zkf2zs7r53fjq46j770vpb5avxihyfypra3fv429akqnsmm1" 12 + "revision": "6a489c9482ca676ce23c0bcd7f2e1795383325fa", 13 + "url": "https://github.com/NixOS/nixpkgs/archive/6a489c9482ca676ce23c0bcd7f2e1795383325fa.tar.gz", 14 + "hash": "0vsvkhy3gb8yzq62vazhmpqixssmd4xinnll7w73l4vrqd611wlf" 15 15 }, 16 16 "treefmt-nix": { 17 17 "type": "Git", ··· 22 22 }, 23 23 "branch": "main", 24 24 "submodules": false, 25 - "revision": "421b56313c65a0815a52b424777f55acf0b56ddf", 26 - "url": "https://github.com/numtide/treefmt-nix/archive/421b56313c65a0815a52b424777f55acf0b56ddf.tar.gz", 27 - "hash": "1l57hzz704s7izkkcl3xsg77xjfza57cl0fchs24rdpdhmry2dmp" 25 + "revision": "58bd4da459f0a39e506847109a2a5cfceb837796", 26 + "url": "https://github.com/numtide/treefmt-nix/archive/58bd4da459f0a39e506847109a2a5cfceb837796.tar.gz", 27 + "hash": "01bg9b4xzlv6s5q1q78vib6l2csw02b3rk5bm5yj4gx2sk2hvmrq" 28 28 } 29 29 }, 30 30 "version": 5
-1
doc/doc-support/package.nix
··· 137 137 138 138 tests = { 139 139 manpage-urls = callPackage ../tests/manpage-urls.nix { }; 140 - check-nix-code-blocks = callPackage ../tests/check-nix-code-blocks.nix { }; 141 140 }; 142 141 }; 143 142 }
-32
doc/tests/check-nix-code-blocks.nix
··· 1 - { 2 - runCommand, 3 - markdown-code-runner, 4 - nixfmt-rfc-style, 5 - }: 6 - 7 - runCommand "manual_check-nix-code-blocks" 8 - { 9 - nativeBuildInputs = [ 10 - markdown-code-runner 11 - nixfmt-rfc-style 12 - ]; 13 - } 14 - '' 15 - set +e 16 - 17 - mdcr --check --config ${./mdcr-config.toml} ${./..} 18 - 19 - if [ $? -ne 0 ]; then 20 - cat <<EOF 21 - Error: `mdcr` command failed. Please make sure the Nix code snippets in Markdown files are correctly formatted. 22 - 23 - Run this command from the Nixpkgs repository root for automatic formatting: 24 - 25 - mdcr --log debug --config ${toString ./..}/tests/mdcr-config.toml ${toString ./..} 26 - 27 - EOF 28 - exit 1 29 - fi 30 - 31 - touch "$out" 32 - ''
-3
doc/tests/mdcr-config.toml
··· 1 - [presets.nixfmt] 2 - language = "nix" 3 - command = ["nixfmt"]
+6
maintainers/maintainer-list.nix
··· 20460 20460 github = "provokateurin"; 20461 20461 githubId = 26026535; 20462 20462 }; 20463 + ProxyVT = { 20464 + email = "tikit.us@outlook.com"; 20465 + github = "ProxyVT"; 20466 + githubId = 86965169; 20467 + name = "Ulad Tiknyus"; 20468 + }; 20463 20469 prrlvr = { 20464 20470 email = "po@prrlvr.fr"; 20465 20471 github = "prrlvr";
+9 -2
nixos/doc/manual/development/modular-services.md
··· 45 45 It is possible to write service modules that are portable. This is done by either avoiding the `systemd` option tree, or by defining process-manager-specific definitions in an optional way: 46 46 47 47 ```nix 48 - { config, options, lib, ... }: { 48 + { 49 + config, 50 + options, 51 + lib, 52 + ... 53 + }: 54 + { 49 55 _class = "service"; 50 56 config = { 51 57 process.argv = [ (lib.getExe config.foo.program) ]; 52 - } // lib.optionalAttrs (options?systemd) { 58 + } 59 + // lib.optionalAttrs (options ? systemd) { 53 60 # ... systemd-specific definitions ... 54 61 }; 55 62 }
+2 -2
nixos/modules/services/mail/mailman.md
··· 19 19 local_recipient_maps = [ "hash:/var/lib/mailman/data/postfix_lmtp" ]; 20 20 relay_domains = [ "hash:/var/lib/mailman/data/postfix_domains" ]; 21 21 smtpd_tls_chain_files = [ 22 - config.security.acme.certs."lists.example.org".directory + "/full.pem" 23 - config.security.acme.certs."lists.example.org".directory + "/key.pem" 22 + (config.security.acme.certs."lists.example.org".directory + "/full.pem") 23 + (config.security.acme.certs."lists.example.org".directory + "/key.pem") 24 24 ]; 25 25 }; 26 26 };
+2
pkgs/applications/backup/timeshift/default.nix
··· 3 3 btrfs-progs, 4 4 coreutils, 5 5 cron, 6 + debianutils, 6 7 grubPackage, 7 8 mount, 8 9 psmisc, ··· 17 18 btrfs-progs 18 19 coreutils 19 20 cron 21 + debianutils 20 22 grubPackage 21 23 mount 22 24 psmisc
+3 -5
pkgs/applications/backup/timeshift/unwrapped.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "timeshift"; 21 - version = "24.06.6"; 21 + version = "25.07.4"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "linuxmint"; 25 25 repo = "timeshift"; 26 26 rev = version; 27 - hash = "sha256-umMekxP9bvV01KzfIh2Zxa9Xb+tR5x+tG9dOnBIOkjY="; 27 + hash = "sha256-yrLpEhSt7QB0qWCXjIjTVeXKRpgue2pVdV+6hSixeuA="; 28 28 }; 29 29 30 30 postPatch = '' ··· 37 37 --replace-fail "/usr/share" "$out/share" 38 38 39 39 # Substitute app_command to look for the `timeshift-gtk` in $out. 40 - # Substitute the `pkexec ...` as a hack to run a GUI application like Timeshift as root without setting up the corresponding pkexec policy. 41 40 substituteInPlace ./src/timeshift-launcher \ 42 - --replace-fail "app_command='timeshift-gtk'" "app_command=$out/bin/timeshift-gtk" \ 43 - --replace-fail ${lib.escapeShellArg ''pkexec ''${app_command}''} ${lib.escapeShellArg ''pkexec env DISPLAY="$DISPLAY" XAUTHORITY="$XAUTHORITY" "''${app_command}"''} 41 + --replace-fail "app_command='timeshift-gtk'" "app_command=$out/bin/timeshift-gtk" 44 42 ''; 45 43 46 44 nativeBuildInputs = [
+2 -2
pkgs/applications/editors/android-studio/default.nix
··· 16 16 inherit tiling_wm; 17 17 }; 18 18 stableVersion = { 19 - version = "2025.1.1.14"; # "Android Studio Narwhal | 2025.1.1 Patch 1" 20 - sha256Hash = "sha256-rTZOvLl1Lqc0zXNiTmVoMnLEAwWOEDW5MJg8ysiiyBo="; 19 + version = "2025.1.2.11"; # "Android Studio Narwhal Feature Drop | 2025.1.2" 20 + sha256Hash = "sha256-jzh0xrEZU4zdlse8tlVV/uqBEz4lH2k2XSHd13d3vng="; 21 21 }; 22 22 betaVersion = { 23 23 version = "2025.1.2.10"; # "Android Studio Narwhal Feature Drop | 2025.1.2 RC 1"
+3 -3
pkgs/applications/emulators/libretro/cores/beetle-psx.nix
··· 8 8 }: 9 9 mkLibretroCore { 10 10 core = "mednafen-psx" + lib.optionalString withHw "-hw"; 11 - version = "0-unstable-2025-07-18"; 11 + version = "0-unstable-2025-08-01"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "libretro"; 15 15 repo = "beetle-psx-libretro"; 16 - rev = "ae0daef1e6f6d5aa36c3d358c7e52c7d007e3b04"; 17 - hash = "sha256-2hq5wbFi0FoxPYza0zxL1FcF+dtu/HRNmIPRUhDNRu8="; 16 + rev = "6eafe85d672ace484bd6b29eeb94eb84f0b41ee1"; 17 + hash = "sha256-+gja4vMD+o78BxCR1SY4wLks6zOjKfU7M3a7cYg+2lc="; 18 18 }; 19 19 20 20 extraBuildInputs = lib.optionals withHw [
+8 -8
pkgs/applications/networking/cluster/k3s/1_30/images-versions.json
··· 1 1 { 2 2 "airgap-images-amd64": { 3 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.14%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 - "sha256": "0517c1a3bec942b78ab456643b614700296aba1bd0ca2399883aadeb22b6de5d" 3 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.14%2Bk3s2/k3s-airgap-images-amd64.tar.zst", 4 + "sha256": "9bda99cde833c4e13fb4d35fa46fd57d4b1a2eefc33e00fa352ce686c871c842" 5 5 }, 6 6 "airgap-images-arm": { 7 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.14%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 - "sha256": "d8f77b6121d40ea19c6f0658d82158a782507730ba183ebe76643d90d67f736f" 7 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.14%2Bk3s2/k3s-airgap-images-arm.tar.zst", 8 + "sha256": "d40a78ff14b40547bca6d05db3d7e767b272bb9257628ebd3905d1659bc49bd5" 9 9 }, 10 10 "airgap-images-arm64": { 11 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.14%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 - "sha256": "7edb77c4c586f661b9bf156aea4f5d35b5b390a315bae11140f425cd3ed729eb" 11 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.14%2Bk3s2/k3s-airgap-images-arm64.tar.zst", 12 + "sha256": "6561f91f14c8419c9d1c20fb9af7948757d87bd91855b376058d9f2e16010452" 13 13 }, 14 14 "images-list": { 15 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.14%2Bk3s1/k3s-images.txt", 16 - "sha256": "ebe55bbef8ec772071bf736c9671e444aa31ac259e86bfb65180d2405b314c5e" 15 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.30.14%2Bk3s2/k3s-images.txt", 16 + "sha256": "1f87ad26acac5e553279a64942c0e3eeef5c026cc2f82661d358990848672584" 17 17 } 18 18 }
+4 -4
pkgs/applications/networking/cluster/k3s/1_30/versions.nix
··· 1 1 { 2 - k3sVersion = "1.30.14+k3s1"; 3 - k3sCommit = "a7f3d379effef5e0979996339172adb4f87d78df"; 4 - k3sRepoSha256 = "0kgsfv9bva440a79xgwwdjvhqswzx91mzgf8qishvlwrrw1w0vcm"; 5 - k3sVendorHash = "sha256-y1UCvafEdFozMlWWd0Yunu4oIkLsHnV4IMTq1RLJ87M="; 2 + k3sVersion = "1.30.14+k3s2"; 3 + k3sCommit = "071b1ead43641c6803e0b9fce6473baeb12357cf"; 4 + k3sRepoSha256 = "0lldw9kgzpr1073zsr5y4jxmh1c8ah4giyxzb10rfcwx06mglmir"; 5 + k3sVendorHash = "sha256-qEvdBT3noOtKdIdHDJZChowXzQMpVpY/l1ioTJCGVJ4="; 6 6 chartVersions = import ./chart-versions.nix; 7 7 imagesVersions = builtins.fromJSON (builtins.readFile ./images-versions.json); 8 8 k3sRootVersion = "0.14.1";
+8 -8
pkgs/applications/networking/cluster/k3s/1_31/images-versions.json
··· 1 1 { 2 2 "airgap-images-amd64": { 3 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.31.10%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 - "sha256": "86fd5e5cceee3ab6743b1257ed39e62ef73b20475c12495888589e68199210a3" 3 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.31.11%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 + "sha256": "c98ad7590af33ef7e148920eb809dfd0f8145a623fdd8d32c6efeecab6088412" 5 5 }, 6 6 "airgap-images-arm": { 7 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.31.10%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 - "sha256": "0bb5712817ea3c98c69b51eb5925e37ad47a5b2851a0fd72868502a70ef5c3e6" 7 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.31.11%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 + "sha256": "c1bd7557836538592dbd59f798e7a4b91d7aef74c8f9f71631060c96a5288dd6" 9 9 }, 10 10 "airgap-images-arm64": { 11 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.31.10%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 - "sha256": "4e34adcadba448524851d8b1ea98bc918105eb7b1717c7d8cb8866749373b060" 11 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.31.11%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 + "sha256": "97f0db38f57a2dc63167795620ba34a89348d874ecc91fbf3d8d962dc1392e47" 13 13 }, 14 14 "images-list": { 15 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.31.10%2Bk3s1/k3s-images.txt", 16 - "sha256": "ebe55bbef8ec772071bf736c9671e444aa31ac259e86bfb65180d2405b314c5e" 15 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.31.11%2Bk3s1/k3s-images.txt", 16 + "sha256": "1f87ad26acac5e553279a64942c0e3eeef5c026cc2f82661d358990848672584" 17 17 } 18 18 }
+6 -6
pkgs/applications/networking/cluster/k3s/1_31/versions.nix
··· 1 1 { 2 - k3sVersion = "1.31.10+k3s1"; 3 - k3sCommit = "c02ce139f6409f455775004d235d98fc9bee849b"; 4 - k3sRepoSha256 = "1ap91j0vwgayis1g7j8rh4dxq4g5fn1kkf1dfa2wg0kxfkcldp0x"; 5 - k3sVendorHash = "sha256-URczHgCfkg2XoX9XNxW7GxPQcfMraLkFCTEbGafyTEI="; 2 + k3sVersion = "1.31.11+k3s1"; 3 + k3sCommit = "17cfde1c82427535f0d3b6fe15caef1a0e62e82f"; 4 + k3sRepoSha256 = "17dmk8r1rjv2wv4kfyrsdyb9xp696ckq79lzjkvh89x8g31b6p1h"; 5 + k3sVendorHash = "sha256-ogyFEWnTBYjpz9clO3v5DyO23mHPhUS+JC587kLJ5Ck="; 6 6 chartVersions = import ./chart-versions.nix; 7 7 imagesVersions = builtins.fromJSON (builtins.readFile ./images-versions.json); 8 8 k3sRootVersion = "0.14.1"; 9 9 k3sRootSha256 = "0svbi42agqxqh5q2ri7xmaw2a2c70s7q5y587ls0qkflw5vx4sl7"; 10 10 k3sCNIVersion = "1.7.1-k3s1"; 11 11 k3sCNISha256 = "0k1qfmsi5bqgwd5ap8ndimw09hsxn0cqf4m5ad5a4mgl6akw6dqz"; 12 - containerdVersion = "2.0.5-k3s1.32"; 13 - containerdSha256 = "1la7ygx5caqfqk025wyrxmhjb0xbpkzwnxv52338p33g68sb3yb0"; 12 + containerdVersion = "2.0.5-k3s2.32"; 13 + containerdSha256 = "1q285ijgxhf4w9xgqqg7yi29mb4jqpifk6bqkjih456qxxkiyk2z"; 14 14 criCtlVersion = "1.31.0-k3s2"; 15 15 }
+8 -8
pkgs/applications/networking/cluster/k3s/1_32/images-versions.json
··· 1 1 { 2 2 "airgap-images-amd64": { 3 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.6%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 - "sha256": "11350d97016e084bff9d0410e3abfb0ed5dd5920378565584e88996b0a6e2da4" 3 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.7%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 + "sha256": "965f5767c08cffc96bf0967813e7c3fec4c41309e9952a480f0a50865bebd039" 5 5 }, 6 6 "airgap-images-arm": { 7 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.6%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 - "sha256": "1aa4286b30b5418df7b94782b70bcf79644da6c2d77bc5ab643da9c69e0290ac" 7 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.7%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 + "sha256": "57ab9c306cc96f8dd925bc788c80e49c2d13ee7a222a12235fb525529ad25ac0" 9 9 }, 10 10 "airgap-images-arm64": { 11 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.6%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 - "sha256": "cff2d5270b5702b5813f662af7e1f0a741ea3a1052cc81629de6eee1d5a767bd" 11 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.7%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 + "sha256": "1aa05a55492ba0872fa8a0ff518d6e947869bea32dc2b8e5223bdcf53450c7f9" 13 13 }, 14 14 "images-list": { 15 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.6%2Bk3s1/k3s-images.txt", 16 - "sha256": "637ccb5f5a8f4a7d13991cb3060f05b8c7c46e7351e0edae351f9ad23bb51631" 15 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.32.7%2Bk3s1/k3s-images.txt", 16 + "sha256": "e786e9a6f0331a92a2257a12995028761bfee1b5bfaac866025b64162e69bfe0" 17 17 } 18 18 }
+6 -6
pkgs/applications/networking/cluster/k3s/1_32/versions.nix
··· 1 1 { 2 - k3sVersion = "1.32.6+k3s1"; 3 - k3sCommit = "eb603acd1530edcaf79a4a8ed3da54e9e03d9967"; 4 - k3sRepoSha256 = "05py458rdrys1hkw8rg62c98lnwjij5zby8n2zkl1kbfqy12adln"; 5 - k3sVendorHash = "sha256-K8vlX8rucbAOCxHbgrWHsMBWiRc/98IJVCYS8UD+ZsI="; 2 + k3sVersion = "1.32.7+k3s1"; 3 + k3sCommit = "ab99e9da82c7072e4d9efbfa9464e343846fae72"; 4 + k3sRepoSha256 = "0srs8nrmnqsxlyhbbd7i18vbk5c55c16xg278958wi3lbwang0b2"; 5 + k3sVendorHash = "sha256-vKTujaFATguUtIorfa7bY8lSQsx6RhFx0sdWencR2nc="; 6 6 chartVersions = import ./chart-versions.nix; 7 7 imagesVersions = builtins.fromJSON (builtins.readFile ./images-versions.json); 8 8 k3sRootVersion = "0.14.1"; 9 9 k3sRootSha256 = "0svbi42agqxqh5q2ri7xmaw2a2c70s7q5y587ls0qkflw5vx4sl7"; 10 10 k3sCNIVersion = "1.7.1-k3s1"; 11 11 k3sCNISha256 = "0k1qfmsi5bqgwd5ap8ndimw09hsxn0cqf4m5ad5a4mgl6akw6dqz"; 12 - containerdVersion = "2.0.5-k3s1.32"; 13 - containerdSha256 = "1la7ygx5caqfqk025wyrxmhjb0xbpkzwnxv52338p33g68sb3yb0"; 12 + containerdVersion = "2.0.5-k3s2.32"; 13 + containerdSha256 = "1q285ijgxhf4w9xgqqg7yi29mb4jqpifk6bqkjih456qxxkiyk2z"; 14 14 criCtlVersion = "1.31.0-k3s2"; 15 15 }
+8 -8
pkgs/applications/networking/cluster/k3s/1_33/images-versions.json
··· 1 1 { 2 2 "airgap-images-amd64": { 3 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.33.2%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 - "sha256": "aa52e035f7e2fff17f4cb59cdaa60d117770bfa7b5c67be655c1d1fa4f261137" 3 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.33.3%2Bk3s1/k3s-airgap-images-amd64.tar.zst", 4 + "sha256": "51b6ddeafa465e542f0707272736100916886dd49abcb1420ee52878dd3638a9" 5 5 }, 6 6 "airgap-images-arm": { 7 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.33.2%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 - "sha256": "670743ad088ada4a72966e30cbf10c7c3b0cc1fe7775f709647820c32b8d3b05" 7 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.33.3%2Bk3s1/k3s-airgap-images-arm.tar.zst", 8 + "sha256": "339dd2b33b40f03bf95ee2e5dcb8e543ab6852e156cb8aaebe3885717a2966b5" 9 9 }, 10 10 "airgap-images-arm64": { 11 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.33.2%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 - "sha256": "3f2b8c54702018362c24266daaa39b582742c8612cf16ac53c04fb778193884b" 11 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.33.3%2Bk3s1/k3s-airgap-images-arm64.tar.zst", 12 + "sha256": "c12ec7b122f34eb1f89310b05e66b500a2f49522d7cd4ceb3475a675cab6ebc6" 13 13 }, 14 14 "images-list": { 15 - "url": "https://github.com/k3s-io/k3s/releases/download/v1.33.2%2Bk3s1/k3s-images.txt", 16 - "sha256": "637ccb5f5a8f4a7d13991cb3060f05b8c7c46e7351e0edae351f9ad23bb51631" 15 + "url": "https://github.com/k3s-io/k3s/releases/download/v1.33.3%2Bk3s1/k3s-images.txt", 16 + "sha256": "e786e9a6f0331a92a2257a12995028761bfee1b5bfaac866025b64162e69bfe0" 17 17 } 18 18 }
+6 -6
pkgs/applications/networking/cluster/k3s/1_33/versions.nix
··· 1 1 { 2 - k3sVersion = "1.33.2+k3s1"; 3 - k3sCommit = "6e38c8b55284c0d68f64a9e603fb645a32ecd232"; 4 - k3sRepoSha256 = "1s2ibbq2ivy1w3dkqlwnipg6cphiji0ax96fagfxgzwyjhxkyvxh"; 5 - k3sVendorHash = "sha256-MLntaqh1uwJ4cfvHW4lJxUzxtlq87DWCfhU4X6aRbxI="; 2 + k3sVersion = "1.33.3+k3s1"; 3 + k3sCommit = "236cbf257332b293f444abe6f24d699ff628173e"; 4 + k3sRepoSha256 = "163brwnz4af1rjv5pcghlzjnwr27b087y73bv6pri0fyqd3mwiim"; 5 + k3sVendorHash = "sha256-rU+rpExb9LVIROPj3MN924r7Hk8sK/5P8JSssOoIWTU="; 6 6 chartVersions = import ./chart-versions.nix; 7 7 imagesVersions = builtins.fromJSON (builtins.readFile ./images-versions.json); 8 8 k3sRootVersion = "0.14.1"; 9 9 k3sRootSha256 = "0svbi42agqxqh5q2ri7xmaw2a2c70s7q5y587ls0qkflw5vx4sl7"; 10 10 k3sCNIVersion = "1.7.1-k3s1"; 11 11 k3sCNISha256 = "0k1qfmsi5bqgwd5ap8ndimw09hsxn0cqf4m5ad5a4mgl6akw6dqz"; 12 - containerdVersion = "2.0.5-k3s1"; 13 - containerdSha256 = "1c3hv22zx8y94zwmv5r59bnwgqyhxd10zkinm0jrcvny32ijqdfj"; 12 + containerdVersion = "2.0.5-k3s2"; 13 + containerdSha256 = "0011p1905jsswz1zqzkylzjfvi50mc60ifgjnjxwnjrk2rnwbmbz"; 14 14 criCtlVersion = "1.31.0-k3s2"; 15 15 }
+4 -1
pkgs/build-support/fetchurl/default.nix
··· 203 203 else 204 204 throw "unknown mirror:// site ${mirrorName}"; 205 205 in 206 - if mirrorName == null then url else "${lib.head mirrorList}${lib.elemAt mirrorSplit 1}"; 206 + if mirrorSplit == null || mirrorName == null then 207 + url 208 + else 209 + "${lib.head mirrorList}${lib.elemAt mirrorSplit 1}"; 207 210 in 208 211 209 212 assert
+4 -4
pkgs/by-name/bl/bloop/package.nix
··· 11 11 12 12 stdenv.mkDerivation rec { 13 13 pname = "bloop"; 14 - version = "2.0.12"; 14 + version = "2.0.13"; 15 15 16 16 platform = 17 17 if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then ··· 42 42 url = "https://github.com/scalacenter/bloop/releases/download/v${version}/bloop-${platform}"; 43 43 sha256 = 44 44 if stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isx86_64 then 45 - "sha256-vsPzoZLEeBLVDkKpFzJ2qCfGxZNRedlGI96X3uSmqkw=" 45 + "sha256-d6Fz87qvjIHhcU3sL6PalZGbkt1hZIMJEbiqJtRb2/0=" 46 46 else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64 then 47 - "sha256-JNX+uyGynl/QokSB1gwY75c/im8+UZwM/pg7X+rFLbU=" 47 + "sha256-LuX8LFYNzrcqJl9RTLLjQTDsdQg2KmJ+ijKwmi34E3A=" 48 48 else if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 then 49 - "sha256-Ry9VRrJe6ThKAKQNgD1RSsT7mVxoPpP1Tzq3bwcPxTM=" 49 + "sha256-jH7zHVns7pDlrRRAGO2nZ5VW71Wyuz0a0oBmXZ4fOAA=" 50 50 else 51 51 throw "unsupported platform"; 52 52 };
+3 -3
pkgs/by-name/ca/cargo-nextest/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "cargo-nextest"; 10 - version = "0.9.101"; 10 + version = "0.9.102"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "nextest-rs"; 14 14 repo = "nextest"; 15 15 rev = "cargo-nextest-${version}"; 16 - hash = "sha256-yaRwHQopkkZ8gLEhuJuzAiY/enWNdL3B+POGV2ykOWA="; 16 + hash = "sha256-NaWEJEmE8LW1qankVu2Z8eU2yj4/P4DKDLrCEDXPfOc="; 17 17 }; 18 18 19 - cargoHash = "sha256-F26/IDq3/Il6BBCkKUy59T47sI20DAabeSjt3Kdqu+Y="; 19 + cargoHash = "sha256-plZYGm/Sh+pKx1srRPXpZPTZ4k9k/rWZreJqJKFmiG4="; 20 20 21 21 cargoBuildFlags = [ 22 22 "-p"
+3 -3
pkgs/by-name/gr/grimblast/package.nix
··· 18 18 19 19 stdenvNoCC.mkDerivation (finalAttrs: { 20 20 pname = "grimblast"; 21 - version = "0.1-unstable-2025-07-18"; 21 + version = "0.1-unstable-2025-07-23"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "hyprwm"; 25 25 repo = "contrib"; 26 - rev = "481175e17e155f19a3b31416530b6edf725e7034"; 27 - hash = "sha256-usBNOT/uzFdsKDe5Ik+C36zqL+BfT7Lp2rqKWrpQuqk="; 26 + rev = "6839b23345b71db17cd408373de4f5605bf589b8"; 27 + hash = "sha256-PFAJoEqQWMlo1J+yZb+4HixmhbRVmmNl58e/AkLYDDI="; 28 28 }; 29 29 30 30 strictDeps = true;
+1 -1
pkgs/by-name/ha/harbor-cli/package.nix
··· 15 15 src = fetchFromGitHub { 16 16 owner = "goharbor"; 17 17 repo = "harbor-cli"; 18 - rev = "v${finalAttrs.version}"; 18 + tag = "v${finalAttrs.version}"; 19 19 hash = "sha256-7Fi4FeWsLwTtNZhD8TfSBTMr/LKzUm6UO4aWC0eJFtQ="; 20 20 }; 21 21
+3 -3
pkgs/by-name/jj/jjui/package.nix
··· 7 7 }: 8 8 buildGoModule (finalAttrs: { 9 9 pname = "jjui"; 10 - version = "0.9.0"; 10 + version = "0.9.1"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "idursun"; 14 14 repo = "jjui"; 15 15 tag = "v${finalAttrs.version}"; 16 - hash = "sha256-FTFryzlU7PsrU2SkOdxYLunVrRKUauAwmzIkJe3xKlk="; 16 + hash = "sha256-XWsHkfakSVQZtmN21exUc62is6qT3jw/1FF9RNaW0Uo="; 17 17 }; 18 18 19 - vendorHash = "sha256-oswFlMuoaTHfgpr2+o8EX80hl82H9JewPFk3khm8Il4="; 19 + vendorHash = "sha256-2rlfR5HLFJyLVSRiUGTCwQDFWRBt4jmL6sdZcq7blaE="; 20 20 21 21 ldflags = [ "-X main.Version=${finalAttrs.version}" ]; 22 22
+16 -56
pkgs/by-name/la/ladybird/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 - cacert, 6 5 unicode-emoji, 7 6 unicode-character-database, 8 7 unicode-idna, 9 8 publicsuffix-list, 10 9 cmake, 11 - copyDesktopItems, 12 - makeDesktopItem, 13 10 ninja, 14 11 pkg-config, 15 12 curl, 16 13 libavif, 17 - libGL, 14 + angle, # libEGL 18 15 libjxl, 19 16 libpulseaudio, 20 17 libwebp, ··· 23 20 python3, 24 21 qt6Packages, 25 22 woff2, 23 + fast-float, 26 24 ffmpeg, 27 25 fontconfig, 28 26 simdutf, ··· 33 31 libtommath, 34 32 }: 35 33 36 - let 37 - # Note: The cacert version is synthetic and must match the version in the package's CMake 38 - cacert_version = "2025-05-20"; 39 - in 40 34 stdenv.mkDerivation (finalAttrs: { 41 35 pname = "ladybird"; 42 - version = "0-unstable-2025-06-27"; 36 + version = "0-unstable-2025-08-04"; 43 37 44 38 src = fetchFromGitHub { 45 39 owner = "LadybirdWebBrowser"; 46 40 repo = "ladybird"; 47 - rev = "831ba5d6550fd9dfaf90153876ff42396f7165ac"; 48 - hash = "sha256-7feXPFKExjuOGbitlAkSEEzYNEZb6hGSDUZW1EJGIW8="; 41 + rev = "e4b2e7b131140072416d4301d5f60dea6d79b86d"; 42 + hash = "sha256-d3IRIzukntabRqWbOjjx8WgaiTMnFpFJT2tbMt5ws40="; 49 43 }; 50 44 51 45 postPatch = '' ··· 62 56 # Note that the versions of the input data packages must match the 63 57 # expected version in the package's CMake. 64 58 65 - # Check that the versions match 66 - grep -F 'set(CACERT_VERSION "${cacert_version}")' Meta/CMake/ca_certificates_data.cmake || (echo cacert_version mismatch && exit 1) 67 - 68 59 mkdir -p build/Caches 69 60 70 61 cp -r ${unicode-character-database}/share/unicode build/Caches/UCD ··· 73 64 cp ${unicode-idna}/share/unicode/idna/IdnaMappingTable.txt build/Caches/UCD 74 65 echo -n ${unicode-character-database.version} > build/Caches/UCD/version.txt 75 66 chmod -w build/Caches/UCD 76 - 77 - mkdir build/Caches/CACERT 78 - cp ${cacert}/etc/ssl/certs/ca-bundle.crt build/Caches/CACERT/cacert-${cacert_version}.pem 79 - echo -n ${cacert_version} > build/Caches/CACERT/version.txt 80 67 81 68 mkdir build/Caches/PublicSuffix 82 69 cp ${publicsuffix-list}/share/publicsuffix/public_suffix_list.dat build/Caches/PublicSuffix ··· 84 71 85 72 nativeBuildInputs = [ 86 73 cmake 87 - copyDesktopItems 88 74 ninja 89 75 pkg-config 90 76 python3 ··· 94 80 95 81 buildInputs = [ 96 82 curl 83 + fast-float 97 84 ffmpeg 98 85 fontconfig 99 86 libavif 100 - libGL 87 + angle # libEGL 101 88 libjxl 102 89 libwebp 103 90 libxcrypt ··· 110 97 # https://github.com/LadybirdBrowser/ladybird/commit/af3d46dc06829dad65309306be5ea6fbc6a587ec 111 98 # https://github.com/LadybirdBrowser/ladybird/commit/4d7b7178f9d50fff97101ea18277ebc9b60e2c7c 112 99 # Remove when/if this gets upstreamed in skia. 113 - "extra_cflags+=[\"-DSKCMS_API=__attribute__((visibility(\\\"default\\\")))\"]" 100 + "extra_cflags+=[\"-DSKCMS_API=[[gnu::visibility(\\\"default\\\")]]\"]" 114 101 ]; 115 102 })) 116 103 woff2 ··· 127 114 # Takes an enormous amount of resources, even with mold 128 115 (lib.cmakeBool "ENABLE_LTO_FOR_RELEASE" false) 129 116 # Disable network operations 130 - "-DSERENITY_CACHE_DIR=Caches" 117 + "-DLADYBIRD_CACHE_DIR=Caches" 131 118 "-DENABLE_NETWORK_DOWNLOADS=OFF" 132 119 ] 133 120 ++ lib.optionals stdenv.hostPlatform.isLinux [ ··· 141 128 # https://github.com/LadybirdBrowser/ladybird/issues/371#issuecomment-2616415434 142 129 env.NIX_LDFLAGS = "-lGL -lfontconfig"; 143 130 144 - postInstall = '' 145 - for size in 48x48 128x128; do 146 - mkdir -p $out/share/icons/hicolor/$size/apps 147 - ln -s $out/share/Lagom/icons/$size/app-browser.png \ 148 - $out/share/icons/hicolor/$size/apps/ladybird.png 149 - done 150 - '' 151 - + lib.optionalString stdenv.hostPlatform.isDarwin '' 131 + postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' 152 132 mkdir -p $out/Applications $out/bin 153 133 mv $out/bundle/Ladybird.app $out/Applications 154 134 ''; 155 135 156 - desktopItems = [ 157 - (makeDesktopItem { 158 - name = "ladybird"; 159 - desktopName = "Ladybird"; 160 - exec = "Ladybird -- %U"; 161 - icon = "ladybird"; 162 - categories = [ 163 - "Network" 164 - "WebBrowser" 165 - ]; 166 - mimeTypes = [ 167 - "text/html" 168 - "application/xhtml+xml" 169 - "x-scheme-handler/http" 170 - "x-scheme-handler/https" 171 - ]; 172 - actions.new-window = { 173 - name = "New Window"; 174 - exec = "Ladybird --new-window -- %U"; 175 - }; 176 - }) 177 - ]; 178 - 179 136 # Only Ladybird and WebContent need wrapped, if Qt is enabled. 180 137 # On linux we end up wraping some non-Qt apps, like headless-browser. 181 138 dontWrapQtApps = stdenv.hostPlatform.isDarwin; ··· 186 143 187 144 passthru.updateScript = unstableGitUpdater { }; 188 145 189 - meta = with lib; { 146 + meta = { 190 147 description = "Browser using the SerenityOS LibWeb engine with a Qt or Cocoa GUI"; 191 148 homepage = "https://ladybird.org"; 192 - license = licenses.bsd2; 193 - maintainers = with maintainers; [ fgaz ]; 149 + license = lib.licenses.bsd2; 150 + maintainers = with lib.maintainers; [ 151 + fgaz 152 + jk 153 + ]; 194 154 platforms = [ 195 155 "x86_64-linux" 196 156 "aarch64-linux"
+2 -2
pkgs/by-name/la/lagrange/package.nix
··· 22 22 23 23 stdenv.mkDerivation (finalAttrs: { 24 24 pname = "lagrange"; 25 - version = "1.18.5"; 25 + version = "1.18.6"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "skyjake"; 29 29 repo = "lagrange"; 30 30 tag = "v${finalAttrs.version}"; 31 - hash = "sha256-NlnT8dGh05dDjSMxjaBnW7x/KjLgf2Ma0nbaiR7MpiY="; 31 + hash = "sha256-KII0Rnas0H3iODEn89DD5BN96Ao7Aq0cTC4uhtuvNt4="; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+2 -2
pkgs/by-name/li/libgphoto2/package.nix
··· 18 18 19 19 stdenv.mkDerivation rec { 20 20 pname = "libgphoto2"; 21 - version = "2.5.31"; 21 + version = "2.5.32"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "gphoto"; 25 25 repo = "libgphoto2"; 26 26 rev = "libgphoto2-${builtins.replaceStrings [ "." ] [ "_" ] version}-release"; 27 - sha256 = "sha256-UmyDKEaPP9VJqi8f+y6JZcTlQomhMTN+/C//ODYx6/w="; 27 + sha256 = "sha256-gUw3D/bHnKoiTInJVAzMCs5urWz4UHWywTLZUuRROqw="; 28 28 }; 29 29 30 30 depsBuildBuild = [ pkg-config ];
+2 -6
pkgs/by-name/li/lightdm-slick-greeter/package.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "lightdm-slick-greeter"; 25 - version = "2.2.1"; 25 + version = "2.2.2"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "linuxmint"; 29 29 repo = "slick-greeter"; 30 30 rev = version; 31 - hash = "sha256-AErY8Gy1AkYY/vpXoSE8zhyJd/nboMw+9BO3j6N7CNc="; 31 + hash = "sha256-32H2Q/JdT5v0xrdsZfSJobJ4Dxx63LPgbiB9OKIyc1U="; 32 32 }; 33 33 34 34 nativeBuildInputs = [ ··· 68 68 # We prefer stable path here. 69 69 substituteInPlace data/x.dm.slick-greeter.gschema.xml \ 70 70 --replace-fail "/usr/share/onboard" "/run/current-system/sw/share/onboard" 71 - 72 - # This image is really just a fallback. 73 - substituteInPlace src/user-prompt-box.vala \ 74 - --replace-fail "/usr/share/cinnamon/faces/" "/run/current-system/sw/share/cinnamon/faces/" 75 71 76 72 patchShebangs files/usr/bin/* 77 73 '';
+3 -3
pkgs/by-name/lu/lux-cli/package.nix
··· 17 17 rustPlatform.buildRustPackage (finalAttrs: { 18 18 pname = "lux-cli"; 19 19 20 - version = "0.11.1"; 20 + version = "0.13.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "nvim-neorocks"; 24 24 repo = "lux"; 25 25 tag = "v${finalAttrs.version}"; 26 - hash = "sha256-yjd8nqrypgdS2UtAANv1TtuGtZPaWm7LhVrHPghf5hg="; 26 + hash = "sha256-tx4sgh8G5R3odpBBVl0qLFWnTcmk1YYfGYkAJtHL9wE="; 27 27 }; 28 28 29 29 buildAndTestSubdir = "lux-cli"; 30 30 31 - cargoHash = "sha256-iKZ4FJ0IL1lnKuYTmFvx8umoB0z8M8xnvgb/GMfGKkI="; 31 + cargoHash = "sha256-dLhfDDoz2jFShk3ksxmQ8FEKc9JE/NPF4zSUV5kvgj8="; 32 32 33 33 nativeInstallCheckInputs = [ 34 34 versionCheckHook
+43
pkgs/by-name/mp/mpd-small/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + mpd, 5 + }: 6 + 7 + mpd.override { 8 + features = [ 9 + "webdav" 10 + "curl" 11 + "mms" 12 + "bzip2" 13 + "zzip" 14 + "nfs" 15 + "audiofile" 16 + "faad" 17 + "flac" 18 + "gme" 19 + "mpg123" 20 + "opus" 21 + "vorbis" 22 + "vorbisenc" 23 + "lame" 24 + "libsamplerate" 25 + "shout" 26 + "libmpdclient" 27 + "id3tag" 28 + "expat" 29 + "pcre" 30 + "sqlite" 31 + "qobuz" 32 + ] 33 + ++ lib.optionals stdenv.hostPlatform.isLinux [ 34 + "alsa" 35 + "systemd" 36 + "syslog" 37 + "io_uring" 38 + ] 39 + ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ 40 + "mad" 41 + "jack" 42 + ]; 43 + }
+289
pkgs/by-name/mp/mpd/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + meson, 6 + ninja, 7 + pkg-config, 8 + glib, 9 + systemd, 10 + fmt, 11 + buildPackages, 12 + # Inputs 13 + curl, 14 + libcdio, 15 + libcdio-paranoia, 16 + libmms, 17 + libnfs, 18 + liburing, 19 + samba, 20 + # Archive support 21 + bzip2, 22 + zziplib, 23 + # Codecs 24 + audiofile, 25 + faad2, 26 + ffmpeg, 27 + flac, 28 + fluidsynth, 29 + game-music-emu, 30 + libmad, 31 + libmikmod, 32 + mpg123, 33 + libopus, 34 + libvorbis, 35 + lame, 36 + # Filters 37 + libsamplerate, 38 + soxr, 39 + # Outputs 40 + alsa-lib, 41 + libao, 42 + libjack2, 43 + libpulseaudio, 44 + libshout, 45 + pipewire, 46 + # Misc 47 + icu, 48 + sqlite, 49 + avahi, 50 + dbus, 51 + pcre2, 52 + libgcrypt, 53 + expat, 54 + nlohmann_json, 55 + zlib, 56 + libupnp, 57 + # Client support 58 + libmpdclient, 59 + # Tag support 60 + libid3tag, 61 + nixosTests, 62 + # For documentation 63 + doxygen, 64 + python3Packages, # for sphinx-build 65 + # For tests 66 + gtest, 67 + zip, 68 + # Features list 69 + features ? null, 70 + }: 71 + 72 + let 73 + concatAttrVals = nameList: set: lib.concatMap (x: set.${x} or [ ]) nameList; 74 + 75 + featureDependencies = { 76 + # Storage plugins 77 + udisks = [ dbus ]; 78 + webdav = [ 79 + curl 80 + expat 81 + ]; 82 + # Input plugins 83 + cdio_paranoia = [ 84 + libcdio 85 + libcdio-paranoia 86 + ]; 87 + curl = [ curl ]; 88 + io_uring = [ liburing ]; 89 + mms = [ libmms ]; 90 + nfs = [ libnfs ]; 91 + smbclient = [ samba ]; 92 + # Archive support 93 + bzip2 = [ bzip2 ]; 94 + zzip = [ zziplib ]; 95 + # Decoder plugins 96 + audiofile = [ audiofile ]; 97 + faad = [ faad2 ]; 98 + ffmpeg = [ ffmpeg ]; 99 + flac = [ flac ]; 100 + fluidsynth = [ fluidsynth ]; 101 + gme = [ game-music-emu ]; 102 + mad = [ libmad ]; 103 + mikmod = [ libmikmod ]; 104 + mpg123 = [ 105 + libid3tag 106 + mpg123 107 + ]; 108 + opus = [ libopus ]; 109 + vorbis = [ libvorbis ]; 110 + # Encoder plugins 111 + vorbisenc = [ libvorbis ]; 112 + lame = [ lame ]; 113 + # Filter plugins 114 + libsamplerate = [ libsamplerate ]; 115 + soxr = [ soxr ]; 116 + # Output plugins 117 + alsa = [ alsa-lib ]; 118 + ao = [ libao ]; 119 + jack = [ libjack2 ]; 120 + pipewire = [ pipewire ]; 121 + pulse = [ libpulseaudio ]; 122 + shout = [ libshout ]; 123 + # Commercial services 124 + qobuz = [ 125 + curl 126 + libgcrypt 127 + nlohmann_json 128 + ]; 129 + # Client support 130 + libmpdclient = [ libmpdclient ]; 131 + # Tag support 132 + id3tag = [ 133 + libid3tag 134 + zlib 135 + ]; 136 + # Misc 137 + dbus = [ dbus ]; 138 + expat = [ expat ]; 139 + icu = [ icu ]; 140 + pcre = [ pcre2 ]; 141 + sqlite = [ sqlite ]; 142 + syslog = [ ]; 143 + systemd = [ systemd ]; 144 + zeroconf = [ 145 + avahi 146 + dbus 147 + ]; 148 + }; 149 + 150 + nativeFeatureDependencies = { 151 + documentation = [ 152 + doxygen 153 + python3Packages.sphinx 154 + ]; 155 + }; 156 + 157 + # Disable platform specific features if needed 158 + # using libmad to decode mp3 files on darwin is causing a segfault -- there 159 + # is probably a solution, but I'm disabling it for now 160 + platformMask = 161 + lib.optionals stdenv.hostPlatform.isDarwin [ 162 + "mad" 163 + "pulse" 164 + "jack" 165 + "smbclient" 166 + ] 167 + ++ lib.optionals (!stdenv.hostPlatform.isLinux) [ 168 + "alsa" 169 + "pipewire" 170 + "io_uring" 171 + "systemd" 172 + "syslog" 173 + ]; 174 + 175 + knownFeatures = 176 + builtins.attrNames featureDependencies ++ builtins.attrNames nativeFeatureDependencies; 177 + platformFeatures = lib.subtractLists platformMask knownFeatures; 178 + 179 + features_ = 180 + if (features == null) then 181 + platformFeatures 182 + else 183 + let 184 + unknown = lib.subtractLists knownFeatures features; 185 + in 186 + if (unknown != [ ]) then 187 + throw "Unknown feature(s): ${lib.concatStringsSep " " unknown}" 188 + else 189 + let 190 + unsupported = lib.subtractLists platformFeatures features; 191 + in 192 + if (unsupported != [ ]) then 193 + throw "Feature(s) ${lib.concatStringsSep " " unsupported} are not supported on ${stdenv.hostPlatform.system}" 194 + else 195 + features; 196 + 197 + in 198 + stdenv.mkDerivation (finalAttrs: { 199 + pname = "mpd"; 200 + version = "0.24.5"; 201 + 202 + src = fetchFromGitHub { 203 + owner = "MusicPlayerDaemon"; 204 + repo = "MPD"; 205 + rev = "v${finalAttrs.version}"; 206 + sha256 = "sha256-MgepOQeOl+n65+7b8zXe2u0fCHFAviSqL1aNu2iSXiM="; 207 + }; 208 + 209 + buildInputs = [ 210 + glib 211 + fmt 212 + # According to the configurePhase of meson, gtest is considered a 213 + # runtime dependency. Quoting: 214 + # 215 + # Run-time dependency GTest found: YES 1.10.0 216 + gtest 217 + libupnp 218 + ] 219 + ++ concatAttrVals features_ featureDependencies; 220 + 221 + nativeBuildInputs = [ 222 + meson 223 + ninja 224 + pkg-config 225 + ] 226 + ++ concatAttrVals features_ nativeFeatureDependencies; 227 + 228 + depsBuildBuild = [ buildPackages.stdenv.cc ]; 229 + 230 + postPatch = 231 + lib.optionalString 232 + (stdenv.hostPlatform.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinSdkVersion "12.0") 233 + '' 234 + substituteInPlace src/output/plugins/OSXOutputPlugin.cxx \ 235 + --replace kAudioObjectPropertyElement{Main,Master} \ 236 + --replace kAudioHardwareServiceDeviceProperty_Virtual{Main,Master}Volume 237 + ''; 238 + 239 + # Otherwise, the meson log says: 240 + # 241 + # Program zip found: NO 242 + nativeCheckInputs = [ zip ]; 243 + 244 + doCheck = true; 245 + 246 + mesonAutoFeatures = "disabled"; 247 + 248 + outputs = [ 249 + "out" 250 + "doc" 251 + ] 252 + ++ lib.optional (builtins.elem "documentation" features_) "man"; 253 + 254 + CXXFLAGS = lib.optionals stdenv.hostPlatform.isDarwin [ 255 + "-D__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=0" 256 + ]; 257 + 258 + mesonFlags = [ 259 + "-Dtest=true" 260 + "-Dmanpages=true" 261 + "-Dhtml_manual=true" 262 + ] 263 + ++ map (x: "-D${x}=enabled") features_ 264 + ++ map (x: "-D${x}=disabled") (lib.subtractLists features_ knownFeatures) 265 + ++ lib.optional (builtins.elem "zeroconf" features_) ( 266 + "-Dzeroconf=" + (if stdenv.hostPlatform.isDarwin then "bonjour" else "avahi") 267 + ) 268 + ++ lib.optional (builtins.elem "systemd" features_) "-Dsystemd_system_unit_dir=etc/systemd/system" 269 + ++ lib.optional (builtins.elem "qobuz" features_) "-Dnlohmann_json=enabled"; 270 + 271 + passthru.tests.nixos = nixosTests.mpd; 272 + 273 + meta = { 274 + description = "Flexible, powerful daemon for playing music"; 275 + homepage = "https://www.musicpd.org/"; 276 + license = lib.licenses.gpl2Only; 277 + maintainers = with lib.maintainers; [ 278 + tobim 279 + ]; 280 + platforms = lib.platforms.unix; 281 + mainProgram = "mpd"; 282 + 283 + longDescription = '' 284 + Music Player Daemon (MPD) is a flexible, powerful daemon for playing 285 + music. Through plugins and libraries it can play a variety of sound 286 + files while being controlled by its network protocol. 287 + ''; 288 + }; 289 + })
+1 -1
pkgs/by-name/ok/okteto/package.nix
··· 14 14 src = fetchFromGitHub { 15 15 owner = "okteto"; 16 16 repo = "okteto"; 17 - rev = finalAttrs.version; 17 + tag = finalAttrs.version; 18 18 hash = "sha256-gGtQrhetIWV7ZvnmPYcGzz718uGyAdRiraiKODrJS4w="; 19 19 }; 20 20
+2 -2
pkgs/by-name/ol/ollama/package.nix
··· 116 116 goBuild (finalAttrs: { 117 117 pname = "ollama"; 118 118 # don't forget to invalidate all hashes each update 119 - version = "0.10.0"; 119 + version = "0.11.0"; 120 120 121 121 src = fetchFromGitHub { 122 122 owner = "ollama"; 123 123 repo = "ollama"; 124 124 tag = "v${finalAttrs.version}"; 125 - hash = "sha256-BoT4WUapxakETHAlHP64okcReMIhQ+PzKaSVpELvrcI="; 125 + hash = "sha256-fBoSt/chnxnlD6/HsWeMX9TR7Du7RCOmWcqCKamyK7A="; 126 126 fetchSubmodules = true; 127 127 }; 128 128
+5 -5
pkgs/by-name/ph/phoenixd/package.nix
··· 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 13 pname = "phoenixd"; 14 - version = "0.6.1"; 14 + version = "0.6.2"; 15 15 16 16 src = 17 17 let ··· 28 28 fetchurl { 29 29 url = "https://github.com/ACINQ/phoenixd/releases/download/v${finalAttrs.version}/phoenixd-${finalAttrs.version}-${suffix}.zip"; 30 30 hash = selectSystem { 31 - aarch64-darwin = "sha256-kPM82YcgTfcXnkE8ihEVKERAlFDSqZQZVmhPkThjtDk="; 32 - x86_64-darwin = "sha256-mQ44LOm5tSBSSazkp1RW7Krncfo/O5VOZHtg7m6Uf0Y="; 33 - x86_64-linux = "sha256-j6PhXo4q6UZY6hNylZJCBtFE03UcKHgWZbg7+2pO1N4="; 34 - aarch64-linux = "sha256-IH/QngEUv2YKzIK1tJORFNZ/gM9a+0VYiqcvVrJhqT8="; 31 + aarch64-darwin = "sha256-M1zcd1ZyqnRVTaH0pGUPPKcke5nx2Hd45t911j6EObQ="; 32 + x86_64-darwin = "sha256-sYl51UC9AwCUzshF91npR4dZ6gmaF6n9+zLFm9IeSLQ="; 33 + x86_64-linux = "sha256-qJKCKCquCTAE3Oc4esLYWXiKJk+NUuCVyD3MjWcbXEo="; 34 + aarch64-linux = "sha256-H9KvrNJ/jBuZbJlNsnM5HTF/OCYgdScgaBi0G4gRkEY="; 35 35 }; 36 36 }; 37 37
+2 -2
pkgs/by-name/po/portfolio/package.nix
··· 34 34 in 35 35 stdenvNoCC.mkDerivation (finalAttrs: { 36 36 pname = "PortfolioPerformance"; 37 - version = "0.77.3"; 37 + version = "0.78.0"; 38 38 39 39 src = fetchurl { 40 40 url = "https://github.com/buchen/portfolio/releases/download/${finalAttrs.version}/PortfolioPerformance-${finalAttrs.version}-linux.gtk.x86_64.tar.gz"; 41 - hash = "sha256-e+1W2jT2YUM+udegvvupUv8RR+nHZSK/NMjMeu01uR8="; 41 + hash = "sha256-f5xPXBzwa9VOutiG5uYQ5FqC6Avd+VAIyDlLW7db82Y="; 42 42 }; 43 43 44 44 nativeBuildInputs = [
+2 -2
pkgs/by-name/rs/rshim-user-space/package.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "rshim-user-space"; 19 - version = "2.4.2"; 19 + version = "2.4.4"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "Mellanox"; 23 23 repo = "rshim-user-space"; 24 24 rev = "rshim-${version}"; 25 - hash = "sha256-J/gCACqpUY+KraVOLWpd+UVyZ1f2o77EfpAgUVtZL9w="; 25 + hash = "sha256-w2+1tUDWYmgDC0ycWGdtVfdbkZCmtvwXm47qK5PCCfg="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+2 -2
pkgs/by-name/sn/snac2/package.nix
··· 10 10 11 11 stdenv.mkDerivation (finalAttrs: { 12 12 pname = "snac2"; 13 - version = "2.80"; 13 + version = "2.81"; 14 14 15 15 src = fetchFromGitea { 16 16 domain = "codeberg.org"; 17 17 owner = "grunfink"; 18 18 repo = "snac2"; 19 19 tag = finalAttrs.version; 20 - hash = "sha256-8f9JesQgdRwholsa0p1TP0L4vPd1HHLEMwfxVlGm99o="; 20 + hash = "sha256-ozK+T8V4KNqNhkLYw4yJd0u56I3wsxl9ctWFmfJplos="; 21 21 }; 22 22 23 23 buildInputs = [
+1 -1
pkgs/by-name/vs/vsce/package.nix
··· 17 17 src = fetchFromGitHub { 18 18 owner = "microsoft"; 19 19 repo = "vscode-vsce"; 20 - rev = "v${finalAttrs.version}"; 20 + tag = "v${finalAttrs.version}"; 21 21 hash = "sha256-6Tt7IewbCLHG8DVoD8PV6VmrNu3MCUHITgYFq9smvOo="; 22 22 }; 23 23
+2
pkgs/desktops/xfce/default.nix
··· 111 111 112 112 #### PANEL PLUGINS 113 113 114 + xfce4-alsa-plugin = callPackage ./panel-plugins/xfce4-alsa-plugin { }; 115 + 114 116 xfce4-battery-plugin = callPackage ./panel-plugins/xfce4-battery-plugin { }; 115 117 116 118 xfce4-clipman-plugin = callPackage ./panel-plugins/xfce4-clipman-plugin { };
+51
pkgs/desktops/xfce/panel-plugins/xfce4-alsa-plugin/default.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + meson, 6 + vala, 7 + pkg-config, 8 + gettext, 9 + ninja, 10 + alsa-lib, 11 + xfce4-panel, 12 + nix-update-script, 13 + }: 14 + 15 + stdenv.mkDerivation (finalAttrs: { 16 + pname = "xfce4-alsa-plugin"; 17 + version = "0.4.0"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "equeim"; 21 + repo = "xfce4-alsa-plugin"; 22 + tag = finalAttrs.version; 23 + hash = "sha256-95uVHDyXji8dut7qfE5V/uBBt6DPYF/YfudHe7HJcE8="; 24 + }; 25 + 26 + strictDeps = true; 27 + 28 + nativeBuildInputs = [ 29 + meson 30 + vala 31 + pkg-config 32 + gettext 33 + ninja 34 + ]; 35 + 36 + buildInputs = [ 37 + alsa-lib 38 + xfce4-panel 39 + ]; 40 + 41 + passthru.updateScript = nix-update-script { }; 42 + 43 + meta = { 44 + homepage = "https://github.com/equeim/xfce4-alsa-plugin"; 45 + description = "Simple ALSA volume control for xfce4-panel"; 46 + license = lib.licenses.gpl3Plus; 47 + platforms = lib.platforms.linux; 48 + maintainers = with lib.maintainers; [ ProxyVT ]; 49 + teams = [ lib.teams.xfce ]; 50 + }; 51 + })
+2
pkgs/development/coq-modules/mathcomp-algebra-tactics/default.nix
··· 32 32 lib.switch 33 33 [ coq.coq-version mathcomp-algebra.version ] 34 34 [ 35 + (case (range "8.20" "9.1") (isGe "2.4") "1.2.6") 35 36 (case (range "8.20" "9.1") (isGe "2.4") "1.2.5") 36 37 (case (range "8.16" "9.0") (isGe "2.0") "1.2.4") 37 38 (case (range "8.16" "8.18") (isGe "2.0") "1.2.2") ··· 46 47 release."1.2.3".sha256 = "sha256-6uc1VEfDv+fExEfBR2c0/Q/KjrkX0TbEMCLgeYcpkls="; 47 48 release."1.2.4".sha256 = "sha256-BRxt0LGPz2u3kJRjcderaZqCfs8M8qKAAwNSWmIck7Q="; 48 49 release."1.2.5".sha256 = "sha256-wTfe+g7ljWs1S+g02VQutnJGLVIOzNX1lm1HTMXeUUA="; 50 + release."1.2.6".sha256 = "sha256-D7EEiLeCJMgxsYvlAFyL7QZyx/KJAKesVE+vyfzqzkU="; 49 51 50 52 propagatedBuildInputs = [ 51 53 mathcomp-ssreflect
+2 -1
pkgs/development/ocaml-modules/elpi/default.nix
··· 18 18 coqPackages, 19 19 version ? 20 20 if lib.versionAtLeast ocaml.version "4.13" then 21 - "2.0.7" 21 + "3.0.1" 22 22 else if lib.versionAtLeast ocaml.version "4.08" then 23 23 "1.20.0" 24 24 else ··· 34 34 35 35 let 36 36 fetched = coqPackages.metaFetch ({ 37 + release."3.0.1".sha256 = "sha256-r4B0xn6UCVslVW4dHiqq8NBMGfNz44kZy48KDWeGquc="; 37 38 release."2.0.7".sha256 = "sha256-gCM+vZK6vWlhSO1VMjiWHse23mvxVwRarhxwkIQK7e0="; 38 39 release."2.0.6".sha256 = "sha256-tRUYXQZ0VXrjIZBZ1skdzieUsww4rSNEe5ik+iKpk3U="; 39 40 release."2.0.5".sha256 = "sha256-cHgERFqrfSg5WtUX3UxR6L+QkzS7+t6n4V+wweiEacc=";
+18 -9
pkgs/development/ocaml-modules/jsont/default.nix
··· 1 1 { 2 2 lib, 3 3 fetchzip, 4 + topkg, 4 5 buildTopkgPackage, 6 + withBrr ? true, 5 7 brr, 8 + withBytesrw ? true, 6 9 bytesrw, 10 + withCmdliner ? true, 7 11 cmdliner, 8 12 }: 9 13 ··· 18 22 hash = "sha256-dXHl+bLuIrlrQ5Np37+uVuETFBb3j8XeDVEK9izoQFk="; 19 23 }; 20 24 21 - # docs say these dependendencies are optional, but buildTopkgPackage doesn’t 22 - # handle missing dependencies 25 + buildInputs = lib.optional withCmdliner cmdliner; 26 + 27 + propagatedBuildInputs = lib.optional withBrr brr ++ lib.optional withBytesrw bytesrw; 28 + 29 + buildPhase = "${topkg.run} build ${ 30 + lib.escapeShellArgs [ 31 + "--with-brr" 32 + (lib.boolToString withBrr) 23 33 24 - buildInputs = [ 25 - cmdliner 26 - ]; 34 + "--with-bytesrw" 35 + (lib.boolToString withBytesrw) 27 36 28 - propagatedBuildInputs = [ 29 - brr 30 - bytesrw 31 - ]; 37 + "--with-cmdliner" 38 + (lib.boolToString withCmdliner) 39 + ] 40 + }"; 32 41 33 42 meta = { 34 43 description = "Declarative JSON data manipulation";
+2 -2
pkgs/development/python-modules/auditwheel/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "auditwheel"; 20 - version = "6.4.0"; 20 + version = "6.4.2"; 21 21 pyproject = true; 22 22 23 23 disabled = pythonOlder "3.9"; 24 24 25 25 src = fetchPypi { 26 26 inherit pname version; 27 - hash = "sha256-IJkMyyQW/bgZg+9lTRDfcvnyWziOMBBbw9l7Btauyvs="; 27 + hash = "sha256-t6Ya/JGDtrXGYd5ZylhvnHIARFpAnFjN8gSdb3FjbVE="; 28 28 }; 29 29 30 30 build-system = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/coredis/default.nix
··· 18 18 19 19 buildPythonPackage rec { 20 20 pname = "coredis"; 21 - version = "4.23.1"; 21 + version = "4.24.0"; 22 22 pyproject = true; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "alisaifee"; 26 26 repo = "coredis"; 27 27 tag = version; 28 - hash = "sha256-5Ho9X2VCOwKo079M2ReJ93jqEpG2ZV6vKM5/qrgzjxM="; 28 + hash = "sha256-vqgxj366x+TphGxUBXUHJpEM0zAdr6Ia4pDPKGWUx14="; 29 29 }; 30 30 31 31 postPatch = ''
+3 -3
pkgs/development/python-modules/dateparser/default.nix
··· 22 22 23 23 buildPythonPackage rec { 24 24 pname = "dateparser"; 25 - version = "1.2.1"; 25 + version = "1.2.2"; 26 26 27 27 disabled = pythonOlder "3.7"; 28 28 ··· 32 32 owner = "scrapinghub"; 33 33 repo = "dateparser"; 34 34 tag = "v${version}"; 35 - hash = "sha256-O0FsLWbH0kGjwGCTklBMVVqosxXlXRyS9aAcggtBLsA="; 35 + hash = "sha256-cUbY6c0JFzs1oZJOTnMXz3uCah2f50g8/3uWQXtwiGY="; 36 36 }; 37 37 38 38 nativeBuildInputs = [ setuptools ]; ··· 83 83 pythonImportsCheck = [ "dateparser" ]; 84 84 85 85 meta = with lib; { 86 - changelog = "https://github.com/scrapinghub/dateparser/blob/${src.rev}/HISTORY.rst"; 86 + changelog = "https://github.com/scrapinghub/dateparser/blob/${src.tag}/HISTORY.rst"; 87 87 description = "Date parsing library designed to parse dates from HTML pages"; 88 88 homepage = "https://github.com/scrapinghub/dateparser"; 89 89 license = licenses.bsd3;
+2 -2
pkgs/development/python-modules/oci/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "oci"; 16 - version = "2.154.1"; 16 + version = "2.157.0"; 17 17 pyproject = true; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "oracle"; 21 21 repo = "oci-python-sdk"; 22 22 tag = "v${version}"; 23 - hash = "sha256-jkB7P0T12ybSqR73Z2wcBcGCep7eFlX5MYNX4E2qnMY="; 23 + hash = "sha256-Ly94Tiyk0yeH9EPMfR3jkeZNhQBjeiS5rbY5IFBeYOs="; 24 24 }; 25 25 26 26 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/retrying/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "retrying"; 11 - version = "1.3.4"; 11 + version = "1.4.1"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.7"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - hash = "sha256-NF2oxXZb2YKx0ZFd65EC/T0fetFr2EqXALhfZNJOjz4="; 18 + hash = "sha256-TSBuDtKv9e8vPNhnq7lRHp6PMRJ8Wsog8dUkbkdpA7A="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [ six ];
+2 -2
pkgs/development/python-modules/transitions/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "transitions"; 18 - version = "0.9.2"; 18 + version = "0.9.3"; 19 19 pyproject = true; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-L4SQ29vUGTZs7xUWAyqwbQfMtYOe9UkF6EKkcmktQgQ="; 23 + hash = "sha256-iB+3W7FlTtVdhgYLsGfyxxb44VX1e7c/1ETlNxOq/sg="; 24 24 }; 25 25 26 26 build-system = [ setuptools ];
+2
pkgs/development/rocq-modules/hierarchy-builder/default.nix
··· 17 17 in 18 18 with lib.versions; 19 19 lib.switch rocq-core.rocq-version [ 20 + (case (range "9.0" "9.1") "1.10.0") 20 21 (case (range "9.0" "9.1") "1.9.1") 21 22 ] null; 23 + release."1.10.0".sha256 = "sha256-c52nS8I0tia7Q8lZTFJyHVPVabW9xv55m7w6B7y3+e8="; 22 24 release."1.9.1".sha256 = "sha256-AiS0ezMyfIYlXnuNsVLz1GlKQZzJX+ilkrKkbo0GrF0="; 23 25 releaseRev = v: "v${v}"; 24 26
+3
pkgs/development/rocq-modules/rocq-elpi/default.nix
··· 17 17 in 18 18 with lib.versions; 19 19 lib.switch rocq-core.rocq-version [ 20 + (case (range "9.0" "9.1") "3.0.1") 20 21 (case (range "9.0" "9.1") "2.0.7") 21 22 ] { }; 22 23 elpi = rocq-core.ocamlPackages.elpi.override { version = default-elpi-version; }; ··· 35 36 in 36 37 with lib.versions; 37 38 lib.switch rocq-core.rocq-version [ 39 + (case (range "9.0" "9.1") "3.0.0") 38 40 (case (range "9.0" "9.1") "2.6.0") 39 41 (case ("9.0") "2.5.2") 40 42 ] null; 43 + release."3.0.0".sha256 = "sha256-YMe2is7duGcvAHjM4joUE90EloibjSxqfZThsJhstdU="; 41 44 release."2.6.0".sha256 = "sha256-23BHq1NFUkI3ayXnGUwiGFySLyY3EuH4RyMgAhQqI4g="; 42 45 release."2.5.2".sha256 = "sha256-lLzjPrbVB3rrqox528YiheUb0u89R84Xmrgkn0oplOs="; 43 46 releaseRev = v: "v${v}";
-334
pkgs/servers/mpd/default.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchFromGitHub, 5 - meson, 6 - ninja, 7 - pkg-config, 8 - glib, 9 - systemd, 10 - fmt, 11 - buildPackages, 12 - # Inputs 13 - curl, 14 - libcdio, 15 - libcdio-paranoia, 16 - libmms, 17 - libnfs, 18 - liburing, 19 - samba, 20 - # Archive support 21 - bzip2, 22 - zziplib, 23 - # Codecs 24 - audiofile, 25 - faad2, 26 - ffmpeg, 27 - flac, 28 - fluidsynth, 29 - game-music-emu, 30 - libmad, 31 - libmikmod, 32 - mpg123, 33 - libopus, 34 - libvorbis, 35 - lame, 36 - # Filters 37 - libsamplerate, 38 - soxr, 39 - # Outputs 40 - alsa-lib, 41 - libao, 42 - libjack2, 43 - libpulseaudio, 44 - libshout, 45 - pipewire, 46 - # Misc 47 - icu, 48 - sqlite, 49 - avahi, 50 - dbus, 51 - pcre2, 52 - libgcrypt, 53 - expat, 54 - nlohmann_json, 55 - zlib, 56 - libupnp, 57 - # Client support 58 - libmpdclient, 59 - # Tag support 60 - libid3tag, 61 - nixosTests, 62 - # For documentation 63 - doxygen, 64 - python3Packages, # for sphinx-build 65 - # For tests 66 - gtest, 67 - zip, 68 - }: 69 - 70 - let 71 - concatAttrVals = nameList: set: lib.concatMap (x: set.${x} or [ ]) nameList; 72 - 73 - featureDependencies = { 74 - # Storage plugins 75 - udisks = [ dbus ]; 76 - webdav = [ 77 - curl 78 - expat 79 - ]; 80 - # Input plugins 81 - cdio_paranoia = [ 82 - libcdio 83 - libcdio-paranoia 84 - ]; 85 - curl = [ curl ]; 86 - io_uring = [ liburing ]; 87 - mms = [ libmms ]; 88 - nfs = [ libnfs ]; 89 - smbclient = [ samba ]; 90 - # Archive support 91 - bzip2 = [ bzip2 ]; 92 - zzip = [ zziplib ]; 93 - # Decoder plugins 94 - audiofile = [ audiofile ]; 95 - faad = [ faad2 ]; 96 - ffmpeg = [ ffmpeg ]; 97 - flac = [ flac ]; 98 - fluidsynth = [ fluidsynth ]; 99 - gme = [ game-music-emu ]; 100 - mad = [ libmad ]; 101 - mikmod = [ libmikmod ]; 102 - mpg123 = [ 103 - libid3tag 104 - mpg123 105 - ]; 106 - opus = [ libopus ]; 107 - vorbis = [ libvorbis ]; 108 - # Encoder plugins 109 - vorbisenc = [ libvorbis ]; 110 - lame = [ lame ]; 111 - # Filter plugins 112 - libsamplerate = [ libsamplerate ]; 113 - soxr = [ soxr ]; 114 - # Output plugins 115 - alsa = [ alsa-lib ]; 116 - ao = [ libao ]; 117 - jack = [ libjack2 ]; 118 - pipewire = [ pipewire ]; 119 - pulse = [ libpulseaudio ]; 120 - shout = [ libshout ]; 121 - # Commercial services 122 - qobuz = [ 123 - curl 124 - libgcrypt 125 - nlohmann_json 126 - ]; 127 - # Client support 128 - libmpdclient = [ libmpdclient ]; 129 - # Tag support 130 - id3tag = [ 131 - libid3tag 132 - zlib 133 - ]; 134 - # Misc 135 - dbus = [ dbus ]; 136 - expat = [ expat ]; 137 - icu = [ icu ]; 138 - pcre = [ pcre2 ]; 139 - sqlite = [ sqlite ]; 140 - syslog = [ ]; 141 - systemd = [ systemd ]; 142 - zeroconf = [ 143 - avahi 144 - dbus 145 - ]; 146 - }; 147 - 148 - nativeFeatureDependencies = { 149 - documentation = [ 150 - doxygen 151 - python3Packages.sphinx 152 - ]; 153 - }; 154 - 155 - run = 156 - { 157 - features ? null, 158 - }: 159 - let 160 - # Disable platform specific features if needed 161 - # using libmad to decode mp3 files on darwin is causing a segfault -- there 162 - # is probably a solution, but I'm disabling it for now 163 - platformMask = 164 - lib.optionals stdenv.hostPlatform.isDarwin [ 165 - "mad" 166 - "pulse" 167 - "jack" 168 - "smbclient" 169 - ] 170 - ++ lib.optionals (!stdenv.hostPlatform.isLinux) [ 171 - "alsa" 172 - "pipewire" 173 - "io_uring" 174 - "systemd" 175 - "syslog" 176 - ]; 177 - 178 - knownFeatures = 179 - builtins.attrNames featureDependencies ++ builtins.attrNames nativeFeatureDependencies; 180 - platformFeatures = lib.subtractLists platformMask knownFeatures; 181 - 182 - features_ = 183 - if (features == null) then 184 - platformFeatures 185 - else 186 - let 187 - unknown = lib.subtractLists knownFeatures features; 188 - in 189 - if (unknown != [ ]) then 190 - throw "Unknown feature(s): ${lib.concatStringsSep " " unknown}" 191 - else 192 - let 193 - unsupported = lib.subtractLists platformFeatures features; 194 - in 195 - if (unsupported != [ ]) then 196 - throw "Feature(s) ${lib.concatStringsSep " " unsupported} are not supported on ${stdenv.hostPlatform.system}" 197 - else 198 - features; 199 - 200 - in 201 - stdenv.mkDerivation rec { 202 - pname = "mpd"; 203 - version = "0.24.5"; 204 - 205 - src = fetchFromGitHub { 206 - owner = "MusicPlayerDaemon"; 207 - repo = "MPD"; 208 - rev = "v${version}"; 209 - sha256 = "sha256-MgepOQeOl+n65+7b8zXe2u0fCHFAviSqL1aNu2iSXiM="; 210 - }; 211 - 212 - buildInputs = [ 213 - glib 214 - fmt 215 - # According to the configurePhase of meson, gtest is considered a 216 - # runtime dependency. Quoting: 217 - # 218 - # Run-time dependency GTest found: YES 1.10.0 219 - gtest 220 - libupnp 221 - ] 222 - ++ concatAttrVals features_ featureDependencies; 223 - 224 - nativeBuildInputs = [ 225 - meson 226 - ninja 227 - pkg-config 228 - ] 229 - ++ concatAttrVals features_ nativeFeatureDependencies; 230 - 231 - depsBuildBuild = [ buildPackages.stdenv.cc ]; 232 - 233 - postPatch = 234 - lib.optionalString 235 - (stdenv.hostPlatform.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinSdkVersion "12.0") 236 - '' 237 - substituteInPlace src/output/plugins/OSXOutputPlugin.cxx \ 238 - --replace kAudioObjectPropertyElement{Main,Master} \ 239 - --replace kAudioHardwareServiceDeviceProperty_Virtual{Main,Master}Volume 240 - ''; 241 - 242 - # Otherwise, the meson log says: 243 - # 244 - # Program zip found: NO 245 - nativeCheckInputs = [ zip ]; 246 - 247 - doCheck = true; 248 - 249 - mesonAutoFeatures = "disabled"; 250 - 251 - outputs = [ 252 - "out" 253 - "doc" 254 - ] 255 - ++ lib.optional (builtins.elem "documentation" features_) "man"; 256 - 257 - CXXFLAGS = lib.optionals stdenv.hostPlatform.isDarwin [ 258 - "-D__ASSERT_MACROS_DEFINE_VERSIONS_WITHOUT_UNDERSCORES=0" 259 - ]; 260 - 261 - mesonFlags = [ 262 - "-Dtest=true" 263 - "-Dmanpages=true" 264 - "-Dhtml_manual=true" 265 - ] 266 - ++ map (x: "-D${x}=enabled") features_ 267 - ++ map (x: "-D${x}=disabled") (lib.subtractLists features_ knownFeatures) 268 - ++ lib.optional (builtins.elem "zeroconf" features_) ( 269 - "-Dzeroconf=" + (if stdenv.hostPlatform.isDarwin then "bonjour" else "avahi") 270 - ) 271 - ++ lib.optional (builtins.elem "systemd" features_) "-Dsystemd_system_unit_dir=etc/systemd/system" 272 - ++ lib.optional (builtins.elem "qobuz" features_) "-Dnlohmann_json=enabled"; 273 - 274 - passthru.tests.nixos = nixosTests.mpd; 275 - 276 - meta = with lib; { 277 - description = "Flexible, powerful daemon for playing music"; 278 - homepage = "https://www.musicpd.org/"; 279 - license = licenses.gpl2Only; 280 - maintainers = with maintainers; [ 281 - tobim 282 - ]; 283 - platforms = platforms.unix; 284 - mainProgram = "mpd"; 285 - 286 - longDescription = '' 287 - Music Player Daemon (MPD) is a flexible, powerful daemon for playing 288 - music. Through plugins and libraries it can play a variety of sound 289 - files while being controlled by its network protocol. 290 - ''; 291 - }; 292 - }; 293 - in 294 - { 295 - mpd = run { }; 296 - mpd-small = run { 297 - features = [ 298 - "webdav" 299 - "curl" 300 - "mms" 301 - "bzip2" 302 - "zzip" 303 - "nfs" 304 - "audiofile" 305 - "faad" 306 - "flac" 307 - "gme" 308 - "mpg123" 309 - "opus" 310 - "vorbis" 311 - "vorbisenc" 312 - "lame" 313 - "libsamplerate" 314 - "shout" 315 - "libmpdclient" 316 - "id3tag" 317 - "expat" 318 - "pcre" 319 - "sqlite" 320 - "qobuz" 321 - ] 322 - ++ lib.optionals stdenv.hostPlatform.isLinux [ 323 - "alsa" 324 - "systemd" 325 - "syslog" 326 - "io_uring" 327 - ] 328 - ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ 329 - "mad" 330 - "jack" 331 - ]; 332 - }; 333 - mpdWithFeatures = run; 334 - }
+52 -52
pkgs/servers/nextcloud/packages/30.json
··· 10 10 ] 11 11 }, 12 12 "bookmarks": { 13 - "hash": "sha256-NVe9eOL6dcL4hYYV7dsoR8ZKXFHkEGAo5sj9DXuDJEI=", 14 - "url": "https://github.com/nextcloud/bookmarks/releases/download/v15.1.1/bookmarks-15.1.1.tar.gz", 15 - "version": "15.1.1", 13 + "hash": "sha256-67Bl8UacPdTJ3YYIFZScChPHgb12v6jRAQXhXooX1hg=", 14 + "url": "https://github.com/nextcloud/bookmarks/releases/download/v15.1.3/bookmarks-15.1.3.tar.gz", 15 + "version": "15.1.3", 16 16 "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- ☠ Find broken links and duplicates\n- 📲 Synchronize with all your browsers and devices\n- 📔 Store archived versions of your links in case they are depublished\n- 🔍 Full-text search on site contents\n- 👪 Share bookmarks with other users, groups and teams or via public links\n- ⚛ Generate RSS feeds of your collections\n- 📈 Stats on how often you access which links\n- 🔒 Automatic backups of your bookmarks collection\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 17 17 "homepage": "https://github.com/nextcloud/bookmarks", 18 18 "licenses": [ ··· 20 20 ] 21 21 }, 22 22 "calendar": { 23 - "hash": "sha256-Wm7RWDe/6jcOEGp2eR1k7x05ilB6kW1u1aRdN7HI4Wk=", 24 - "url": "https://github.com/nextcloud-releases/calendar/releases/download/v5.3.5/calendar-v5.3.5.tar.gz", 25 - "version": "5.3.5", 23 + "hash": "sha256-R5L0EAoLGr1CfzhtHO4FfUstqR+EDsOIdgFYccgnEMc=", 24 + "url": "https://github.com/nextcloud-releases/calendar/releases/download/v5.3.8/calendar-v5.3.8.tar.gz", 25 + "version": "5.3.8", 26 26 "description": "A Calendar app for Nextcloud. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Like Contacts, Talk, Tasks, Deck and Circles\n* 🌐 **WebCal Support!** Want to see your favorite team's matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 **Search!** Find your events at ease\n* ☑️ **Tasks!** See tasks or Deck cards with a due date directly in the calendar\n* 🔈 **Talk rooms!** Create an associated Talk room when booking a meeting with just one click\n* 📆 **Appointment booking** Send people a link so they can book an appointment with you [using this app](https://apps.nextcloud.com/apps/appointments)\n* 📎 **Attachments!** Add, upload and view event attachments\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.", 27 27 "homepage": "https://github.com/nextcloud/calendar/", 28 28 "licenses": [ ··· 30 30 ] 31 31 }, 32 32 "collectives": { 33 - "hash": "sha256-RCpIfoSmYahIo03IumJwEn/06ZeqOhJ/ov5WKGvwcUA=", 34 - "url": "https://github.com/nextcloud/collectives/releases/download/v2.18.0/collectives-2.18.0.tar.gz", 35 - "version": "2.18.0", 33 + "hash": "sha256-H7Fc3tBOTGjOlhmzImqik7ZC9IorWwrTKsxUkz4E8H0=", 34 + "url": "https://github.com/nextcloud/collectives/releases/download/v3.0.3/collectives-3.0.3.tar.gz", 35 + "version": "3.0.3", 36 36 "description": "Collectives is a Nextcloud App for activist and community projects to organize together.\nCome and gather in collectives to build shared knowledge.\n\n* 👥 **Collective and non-hierarchical workflow by heart**: Collectives are\n tied to a [Nextcloud Team](https://github.com/nextcloud/circles) and\n owned by the collective.\n* 📝 **Collaborative page editing** like known from Etherpad thanks to the\n [Text app](https://github.com/nextcloud/text).\n* 🔤 **Well-known [Markdown](https://en.wikipedia.org/wiki/Markdown) syntax**\n for page formatting.\n\n## Installation\n\nIn your Nextcloud instance, simply navigate to **»Apps«**, find the\n**»Teams«** and **»Collectives«** apps and enable them.", 37 37 "homepage": "https://github.com/nextcloud/collectives", 38 38 "licenses": [ ··· 40 40 ] 41 41 }, 42 42 "contacts": { 43 - "hash": "sha256-52FNlLIc4Xr/8mKzEJW8YJ7RbfaeSpMaIxGhBFp0WFc=", 44 - "url": "https://github.com/nextcloud-releases/contacts/releases/download/v7.1.5/contacts-v7.1.5.tar.gz", 45 - "version": "7.1.5", 43 + "hash": "sha256-AAlfPeFWCO894/R5fLsXSSW2VKacVCH07JsGLIJWVms=", 44 + "url": "https://github.com/nextcloud-releases/contacts/releases/download/v7.2.3/contacts-v7.2.3.tar.gz", 45 + "version": "7.2.3", 46 46 "description": "The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Mail and Calendar – more to come.\n* 🎉 **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.\n* 👥 **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!\n* 🙈 **We’re not reinventing the wheel!** Based on the great and open SabreDAV library.", 47 47 "homepage": "https://github.com/nextcloud/contacts#readme", 48 48 "licenses": [ ··· 80 80 ] 81 81 }, 82 82 "deck": { 83 - "hash": "sha256-A2n68T7x4la4VrMwsBMIWk6LWM4nge9FtQhl5eLp8jQ=", 84 - "url": "https://github.com/nextcloud-releases/deck/releases/download/v1.14.5/deck-v1.14.5.tar.gz", 85 - "version": "1.14.5", 83 + "hash": "sha256-cB2EaqyaSG+cE+51Q86au0cSl5/VEZeTW2exqajmKBY=", 84 + "url": "https://github.com/nextcloud-releases/deck/releases/download/v1.14.6/deck-v1.14.6.tar.gz", 85 + "version": "1.14.6", 86 86 "description": "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized", 87 87 "homepage": "https://github.com/nextcloud/deck", 88 88 "licenses": [ ··· 150 150 ] 151 151 }, 152 152 "groupfolders": { 153 - "hash": "sha256-FpGpZB5hv0gSXRDTYpCo0MPNOat27ZsyuXxVIYBs+pg=", 154 - "url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v18.1.3/groupfolders-v18.1.3.tar.gz", 155 - "version": "18.1.3", 156 - "description": "Admin configured folders shared with everyone in a group.\n\nFolders can be configured from *Group folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.", 153 + "hash": "sha256-OUZsjf5i/ihzihybiM+HNQwiYOOw+/QgnIOsm+ipuOk=", 154 + "url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v18.1.4/groupfolders-v18.1.4.tar.gz", 155 + "version": "18.1.4", 156 + "description": "Admin configured folders shared with everyone in a team.\n\nFolders can be configured from *Team folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more teams, control their write/sharing permissions and assign a quota for the folder.", 157 157 "homepage": "https://github.com/nextcloud/groupfolders", 158 158 "licenses": [ 159 159 "agpl" ··· 170 170 ] 171 171 }, 172 172 "integration_deepl": { 173 - "hash": "sha256-FKlu1tlA/GxAHKFu4kfq8CsDvBrnMnLKDizisgb0IOQ=", 174 - "url": "https://github.com/nextcloud-releases/integration_deepl/releases/download/v1.3.1/integration_deepl-v1.3.1.tar.gz", 175 - "version": "1.3.1", 173 + "hash": "sha256-WjTg/+ckoZ/xFrfN0LaLvWIM/JbbnfvVO4EbnRnvB60=", 174 + "url": "https://github.com/nextcloud-releases/integration_deepl/releases/download/v2.0.0/integration_deepl-v2.0.0.tar.gz", 175 + "version": "2.0.0", 176 176 "description": "Deepl integration providing an translations through deepl.com with Nextcloud\n\nThis app integrates with [Nextcloud Assistant](https://apps.nextcloud.com/apps/assistant) to offer translation services We recommend to install Assistant additionally and activate Deepl as translation provider in the Artifical Intelligence admin settings.\n\nThis app also integrates with the translation API of Nextcloud server to offer translation services without Assistant. Currently this is available in Text and Talk.\n\nTo run translations and any other Task Processing tasks synchronously, run the following command in a background process (10 is the interval in seconds when the process should relaunch to use the latest php changes):\n\n```sh\nset -e; while true; do occ background-job:worker -v -t 10 \"OC\\TaskProcessing\\SynchronousBackgroundJob\"; done\n```\n\n## Ethical AI Rating\n### Rating: 🔴\n\nNegative:\n* the software for training and inferencing of this model is proprietary, limiting running it locally or training by yourself\n* the trained model is not freely available, so the model can not be ran on-premises\n* the training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 177 177 "homepage": "https://github.com/nextcloud/integration_deepl", 178 178 "licenses": [ ··· 180 180 ] 181 181 }, 182 182 "integration_openai": { 183 - "hash": "sha256-LUfgHGN2gddCsATRBgWMJO8EsaOqqRYVZXCL4EKc6Vw=", 184 - "url": "https://github.com/nextcloud-releases/integration_openai/releases/download/v3.5.0/integration_openai-v3.5.0.tar.gz", 185 - "version": "3.5.0", 186 - "description": "⚠️ The smart pickers have been removed from this app\nas they are now included in the [Assistant app](https://apps.nextcloud.com/apps/assistant).\n\nThis app implements:\n\n* Text generation providers: Free prompt, Summarize, Headline, Context Write, Chat, and Reformulate (using any available large language model)\n* A Translation provider (using any available language model)\n* A SpeechToText provider (using Whisper)\n* An image generation provider\n\n⚠️ Context Write, Summarize, Headline and Reformulate have mainly been tested with OpenAI.\nThey might work when connecting to other services, without any guarantee.\n\nInstead of connecting to the OpenAI API for these, you can also connect to a self-hosted [LocalAI](https://localai.io) instance or [Ollama](https://ollama.com/) instance\nor to any service that implements an API similar to the OpenAI one, for example:\n[IONOS AI Model Hub](https://docs.ionos.com/cloud/ai/ai-model-hub), [Plusserver](https://www.plusserver.com/en/ai-platform/) or [MistralAI](https://mistral.ai).\n\n⚠️ This app is mainly tested with OpenAI. We do not guarantee it works perfectly\nwith other services that implement OpenAI-compatible APIs with slight differences.\n\n## Improve AI task pickup speed\n\nTo avoid task processing execution delay, setup at 4 background job workers in the main server (where Nextcloud is installed). The setup process is documented here: https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed\n\n## Ethical AI Rating\n### Rating for Text generation using ChatGPT via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be run on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n\n### Rating for Translation using ChatGPT via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be run on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n### Rating for Image generation using DALL·E via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inferencing of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be ran on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via the OpenAI API: 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can run on-premise\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n### Rating for Text generation via LocalAI: 🟢\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n* The training data is freely available, making it possible to check or correct for bias or optimise the performance and CO2 usage.\n\n\n### Rating for Image generation using Stable Diffusion via LocalAI : 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via LocalAI: 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 183 + "hash": "sha256-VAvpbiTzbbQPsohQygdXRfPqPkxf7rEBuYELb0ADZqA=", 184 + "url": "https://github.com/nextcloud-releases/integration_openai/releases/download/v3.7.1/integration_openai-v3.7.1.tar.gz", 185 + "version": "3.7.1", 186 + "description": "⚠️ The smart pickers have been removed from this app\nas they are now included in the [Assistant app](https://apps.nextcloud.com/apps/assistant).\n\nThis app implements:\n\n* Text generation providers: Free prompt, Summarize, Headline, Context Write, Chat, and Reformulate (using any available large language model)\n* A Translation provider (using any available language model)\n* A SpeechToText provider (using Whisper)\n* An image generation provider\n\n⚠️ Context Write, Summarize, Headline and Reformulate have mainly been tested with OpenAI.\nThey might work when connecting to other services, without any guarantee.\n\nInstead of connecting to the OpenAI API for these, you can also connect to a self-hosted [LocalAI](https://localai.io) instance or [Ollama](https://ollama.com/) instance\nor to any service that implements an API similar to the OpenAI one, for example:\n[IONOS AI Model Hub](https://docs.ionos.com/cloud/ai/ai-model-hub), [Plusserver](https://www.plusserver.com/en/ai-platform/) or [MistralAI](https://mistral.ai).\n\n⚠️ This app is mainly tested with OpenAI. We do not guarantee it works perfectly\nwith other services that implement OpenAI-compatible APIs with slight differences.\n\n## Improve AI task pickup speed\n\nTo avoid task processing execution delay, setup at 4 background job workers in the main server (where Nextcloud is installed). The setup process is documented here: https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed\n\n## Ethical AI Rating\n### Rating for Text generation using ChatGPT via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be run on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n\n### Rating for Translation using ChatGPT via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be run on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n### Rating for Image generation using DALL·E via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inferencing of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be ran on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via the OpenAI API: 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can run on-premise\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n### Rating for Text-To-Speech via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inferencing of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be ran on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n### Rating for Text generation via LocalAI: 🟢\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n* The training data is freely available, making it possible to check or correct for bias or optimise the performance and CO2 usage.\n\n\n### Rating for Image generation using Stable Diffusion via LocalAI : 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via LocalAI: 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 187 187 "homepage": "https://github.com/nextcloud/integration_openai", 188 188 "licenses": [ 189 189 "agpl" ··· 200 200 ] 201 201 }, 202 202 "mail": { 203 - "hash": "sha256-FSpr/PVZlx4t+1cGmyoES/9i0c2nyRTPLTodLM2JP04=", 204 - "url": "https://github.com/nextcloud-releases/mail/releases/download/v5.1.7/mail-v5.1.7.tar.gz", 205 - "version": "5.1.7", 203 + "hash": "sha256-ZO7OfGtHckgY02djPHRH1dZW1gu5R/2Te+v9k3lKpeM=", 204 + "url": "https://github.com/nextcloud-releases/mail/releases/download/v5.1.10/mail-v5.1.10.tar.gz", 205 + "version": "5.1.10", 206 206 "description": "**💌 A mail app for Nextcloud**\n\n- **🚀 Integration with other Nextcloud apps!** Currently Contacts, Calendar & Files – more to come.\n- **📥 Multiple mail accounts!** Personal and company account? No problem, and a nice unified inbox. Connect any IMAP account.\n- **🔒 Send & receive encrypted mails!** Using the great [Mailvelope](https://mailvelope.com) browser extension.\n- **🙈 We’re not reinventing the wheel!** Based on the great [Horde](https://www.horde.org) libraries.\n- **📬 Want to host your own mail server?** We do not have to reimplement this as you could set up [Mail-in-a-Box](https://mailinabox.email)!\n\n## Ethical AI Rating\n\n### Priority Inbox\n\nPositive:\n* The software for training and inferencing of this model is open source.\n* The model is created and trained on-premises based on the user's own data.\n* The training data is accessible to the user, making it possible to check or correct for bias or optimise the performance and CO2 usage.\n\n### Thread Summaries (opt-in)\n\n**Rating:** 🟢/🟡/🟠/🔴\n\nThe rating depends on the installed text processing backend. See [the rating overview](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html) for details.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 207 207 "homepage": "https://github.com/nextcloud/mail#readme", 208 208 "licenses": [ ··· 210 210 ] 211 211 }, 212 212 "maps": { 213 - "hash": "sha256-E0S/CwXyye19lcuiONEQCyHJqlL0ZG1A9Q7oOTEZH1g=", 214 - "url": "https://github.com/nextcloud/maps/releases/download/v1.6.0-3-nightly/maps-1.6.0-3-nightly.tar.gz", 213 + "hash": "sha256-IupRymjs955TiUutzoTTMeESNfBmAp51l+oBaZwfdN0=", 214 + "url": "https://github.com/nextcloud/maps/releases/download/v1.6.0/maps-1.6.0.tar.gz", 215 215 "version": "1.6.0", 216 216 "description": "**The whole world fits inside your cloud!**\n\n- **🗺 Beautiful map:** Using [OpenStreetMap](https://www.openstreetmap.org) and [Leaflet](https://leafletjs.com), you can choose between standard map, satellite, topographical, dark mode or even watercolor! 🎨\n- **⭐ Favorites:** Save your favorite places, privately! Sync with [GNOME Maps](https://github.com/nextcloud/maps/issues/30) and mobile apps is planned.\n- **🧭 Routing:** Possible using either [OSRM](http://project-osrm.org), [GraphHopper](https://www.graphhopper.com) or [Mapbox](https://www.mapbox.com).\n- **🖼 Photos on the map:** No more boring slideshows, just show directly where you were!\n- **🙋 Contacts on the map:** See where your friends live and plan your next visit.\n- **📱 Devices:** Lost your phone? Check the map!\n- **〰 Tracks:** Load GPS tracks or past trips. Recording with [PhoneTrack](https://f-droid.org/en/packages/net.eneiluj.nextcloud.phonetrack/) or [OwnTracks](https://owntracks.org) is planned.", 217 217 "homepage": "https://github.com/nextcloud/maps", ··· 230 230 ] 231 231 }, 232 232 "news": { 233 - "hash": "sha256-Y1+hcRxewWyctG5nS7GjN+zWCBrxoroeb01HLzqAR08=", 234 - "url": "https://github.com/nextcloud/news/releases/download/26.0.2/news.tar.gz", 235 - "version": "26.0.2", 233 + "hash": "sha256-8U2EOK8mXPEk70IU8GLXYU0EoZU7O4fhFkzhGpauvZc=", 234 + "url": "https://github.com/nextcloud/news/releases/download/26.1.0/news.tar.gz", 235 + "version": "26.1.0", 236 236 "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)", 237 237 "homepage": "https://github.com/nextcloud/news", 238 238 "licenses": [ ··· 250 250 ] 251 251 }, 252 252 "notes": { 253 - "hash": "sha256-/Zym7bNotcdradtR3cG+rIaAH9jZs+/3PCP7zXS6WJo=", 254 - "url": "https://github.com/nextcloud-releases/notes/releases/download/v4.12.1/notes-v4.12.1.tar.gz", 255 - "version": "4.12.1", 253 + "hash": "sha256-WpxRJ45N+aO+cOp5u6+uwlijzofpmdcUg07ax3p3WDA=", 254 + "url": "https://github.com/nextcloud-releases/notes/releases/download/v4.12.2/notes-v4.12.2.tar.gz", 255 + "version": "4.12.2", 256 256 "description": "The Notes app is a distraction free notes taking app for [Nextcloud](https://www.nextcloud.com/). It provides categories for better organization and supports formatting using [Markdown](https://en.wikipedia.org/wiki/Markdown) syntax. Notes are saved as files in your Nextcloud, so you can view and edit them with every Nextcloud client. Furthermore, a separate [REST API](https://github.com/nextcloud/notes/blob/master/docs/api/README.md) allows for an easy integration into apps ([Android](https://github.com/nextcloud/notes-android), [iOS](https://github.com/nextcloud/notes-ios), as well as [3rd-party apps](https://github.com/nextcloud/notes/wiki#3rd-party-clients) which allow convenient access to your Nextcloud notes). Further features include marking notes as favorites.", 257 257 "homepage": "https://github.com/nextcloud/notes", 258 258 "licenses": [ ··· 290 290 ] 291 291 }, 292 292 "polls": { 293 - "hash": "sha256-j+Aq3Hu7i52o5HqMROTHeb/955N7Qw4TMFPEevR+bYQ=", 294 - "url": "https://github.com/nextcloud-releases/polls/releases/download/v7.4.4/polls-v7.4.4.tar.gz", 295 - "version": "7.4.4", 293 + "hash": "sha256-pGXydde3kLTHgA3vgq2NG1YsyWkda/z8frMFbHdxetQ=", 294 + "url": "https://github.com/nextcloud-releases/polls/releases/download/v8.1.4/polls-v8.1.4.tar.gz", 295 + "version": "8.1.4", 296 296 "description": "A polls app, similar to Doodle/DuD-Poll with the possibility to restrict access (members, certain groups/users, hidden and public).", 297 297 "homepage": "https://github.com/nextcloud/polls", 298 298 "licenses": [ ··· 300 300 ] 301 301 }, 302 302 "previewgenerator": { 303 - "hash": "sha256-dPUvtVFtSqlG9M1RXZ8u7nL3wgK5yFU2/pL9pFLjisc=", 304 - "url": "https://github.com/nextcloud-releases/previewgenerator/releases/download/v5.8.0/previewgenerator-v5.8.0.tar.gz", 305 - "version": "5.8.0", 303 + "hash": "sha256-+vJ1h/wxOOwmWmj6gSfXv7UgsRjwelboFQwHpE53efY=", 304 + "url": "https://github.com/nextcloud-releases/previewgenerator/releases/download/v5.9.0/previewgenerator-v5.9.0.tar.gz", 305 + "version": "5.9.0", 306 306 "description": "The Preview Generator app allows admins to pre-generate previews. The app listens to edit events and stores this information. Once a cron job is triggered it will generate start preview generation. This means that you can better utilize your system by pre-generating previews when your system is normally idle and thus putting less load on your machine when the requests are actually served.\n\nThe app does not replace on demand preview generation so if a preview is requested before it is pre-generated it will still be shown.\nThe first time you install this app, before using a cron job, you properly want to generate all previews via:\n**./occ preview:generate-all -vvv**\n\n**Important**: To enable pre-generation of previews you must add **php /var/www/nextcloud/occ preview:pre-generate** to a system cron job that runs at times of your choosing.", 307 307 "homepage": "https://github.com/nextcloud/previewgenerator", 308 308 "licenses": [ ··· 340 340 ] 341 341 }, 342 342 "richdocuments": { 343 - "hash": "sha256-vvZZE76NLNgrqwufVV/FVp09W8udJvY6iWzxxMuLCU0=", 344 - "url": "https://github.com/nextcloud-releases/richdocuments/releases/download/v8.5.7/richdocuments-v8.5.7.tar.gz", 345 - "version": "8.5.7", 343 + "hash": "sha256-PVGFCzWPbP9bR433XvpNu5TVFFUmJ/Ewzo0Zo9wg4gU=", 344 + "url": "https://github.com/nextcloud-releases/richdocuments/releases/download/v8.5.9/richdocuments-v8.5.9.tar.gz", 345 + "version": "8.5.9", 346 346 "description": "This application can connect to a Collabora Online (or other) server (WOPI-like Client). Nextcloud is the WOPI Host. Please read the documentation to learn more about that.\n\nYou can also edit your documents off-line with the Collabora Office app from the **[Android](https://play.google.com/store/apps/details?id=com.collabora.libreoffice)** and **[iOS](https://apps.apple.com/us/app/collabora-office/id1440482071)** store.", 347 347 "homepage": "https://collaboraoffice.com/", 348 348 "licenses": [ ··· 360 360 ] 361 361 }, 362 362 "spreed": { 363 - "hash": "sha256-McNUCYvP7bKwZHrfqKMq5w5aEvA4ulS+ifFqUIl4i48=", 364 - "url": "https://github.com/nextcloud-releases/spreed/releases/download/v20.1.8/spreed-v20.1.8.tar.gz", 365 - "version": "20.1.8", 363 + "hash": "sha256-+1CdYMgyDDTUJJ/q4lqs1PMtNhkHVF/miFkbfc5j5aA=", 364 + "url": "https://github.com/nextcloud-releases/spreed/releases/download/v20.1.9/spreed-v20.1.9.tar.gz", 365 + "version": "20.1.9", 366 366 "description": "Chat, video & audio-conferencing using WebRTC\n\n* 💬 **Chat** Nextcloud Talk comes with a simple text chat, allowing you to share or upload files from your Nextcloud Files app or local device and mention other participants.\n* 👥 **Private, group, public and password protected calls!** Invite someone, a whole group or send a public link to invite to a call.\n* 🌐 **Federated chats** Chat with other Nextcloud users on their servers\n* 💻 **Screen sharing!** Share your screen with the participants of your call.\n* 🚀 **Integration with other Nextcloud apps** like Files, Calendar, User status, Dashboard, Flow, Maps, Smart picker, Contacts, Deck, and many more.\n* 🌉 **Sync with other chat solutions** With [Matterbridge](https://github.com/42wim/matterbridge/) being integrated in Talk, you can easily sync a lot of other chat solutions to Nextcloud Talk and vice-versa.", 367 367 "homepage": "https://github.com/nextcloud/spreed", 368 368 "licenses": [ ··· 430 430 ] 431 431 }, 432 432 "user_oidc": { 433 - "hash": "sha256-nXDWfRP9n9eH+JGg1a++kD5uLMsXh5BHAaTAOgLI9W4=", 434 - "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v7.2.0/user_oidc-v7.2.0.tar.gz", 435 - "version": "7.2.0", 433 + "hash": "sha256-5ny76JXlGKnzmoaFyKU3l5I50oc03yy6WtiIcUZwKnk=", 434 + "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v7.3.0/user_oidc-v7.3.0.tar.gz", 435 + "version": "7.3.0", 436 436 "description": "Allows flexible configuration of an OIDC server as Nextcloud login user backend.", 437 437 "homepage": "https://github.com/nextcloud/user_oidc", 438 438 "licenses": [
+52 -52
pkgs/servers/nextcloud/packages/31.json
··· 10 10 ] 11 11 }, 12 12 "bookmarks": { 13 - "hash": "sha256-NVe9eOL6dcL4hYYV7dsoR8ZKXFHkEGAo5sj9DXuDJEI=", 14 - "url": "https://github.com/nextcloud/bookmarks/releases/download/v15.1.1/bookmarks-15.1.1.tar.gz", 15 - "version": "15.1.1", 13 + "hash": "sha256-67Bl8UacPdTJ3YYIFZScChPHgb12v6jRAQXhXooX1hg=", 14 + "url": "https://github.com/nextcloud/bookmarks/releases/download/v15.1.3/bookmarks-15.1.3.tar.gz", 15 + "version": "15.1.3", 16 16 "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- ☠ Find broken links and duplicates\n- 📲 Synchronize with all your browsers and devices\n- 📔 Store archived versions of your links in case they are depublished\n- 🔍 Full-text search on site contents\n- 👪 Share bookmarks with other users, groups and teams or via public links\n- ⚛ Generate RSS feeds of your collections\n- 📈 Stats on how often you access which links\n- 🔒 Automatic backups of your bookmarks collection\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 17 17 "homepage": "https://github.com/nextcloud/bookmarks", 18 18 "licenses": [ ··· 20 20 ] 21 21 }, 22 22 "calendar": { 23 - "hash": "sha256-Wm7RWDe/6jcOEGp2eR1k7x05ilB6kW1u1aRdN7HI4Wk=", 24 - "url": "https://github.com/nextcloud-releases/calendar/releases/download/v5.3.5/calendar-v5.3.5.tar.gz", 25 - "version": "5.3.5", 23 + "hash": "sha256-R5L0EAoLGr1CfzhtHO4FfUstqR+EDsOIdgFYccgnEMc=", 24 + "url": "https://github.com/nextcloud-releases/calendar/releases/download/v5.3.8/calendar-v5.3.8.tar.gz", 25 + "version": "5.3.8", 26 26 "description": "A Calendar app for Nextcloud. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Like Contacts, Talk, Tasks, Deck and Circles\n* 🌐 **WebCal Support!** Want to see your favorite team's matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 **Search!** Find your events at ease\n* ☑️ **Tasks!** See tasks or Deck cards with a due date directly in the calendar\n* 🔈 **Talk rooms!** Create an associated Talk room when booking a meeting with just one click\n* 📆 **Appointment booking** Send people a link so they can book an appointment with you [using this app](https://apps.nextcloud.com/apps/appointments)\n* 📎 **Attachments!** Add, upload and view event attachments\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.", 27 27 "homepage": "https://github.com/nextcloud/calendar/", 28 28 "licenses": [ ··· 30 30 ] 31 31 }, 32 32 "collectives": { 33 - "hash": "sha256-RCpIfoSmYahIo03IumJwEn/06ZeqOhJ/ov5WKGvwcUA=", 34 - "url": "https://github.com/nextcloud/collectives/releases/download/v2.18.0/collectives-2.18.0.tar.gz", 35 - "version": "2.18.0", 33 + "hash": "sha256-H7Fc3tBOTGjOlhmzImqik7ZC9IorWwrTKsxUkz4E8H0=", 34 + "url": "https://github.com/nextcloud/collectives/releases/download/v3.0.3/collectives-3.0.3.tar.gz", 35 + "version": "3.0.3", 36 36 "description": "Collectives is a Nextcloud App for activist and community projects to organize together.\nCome and gather in collectives to build shared knowledge.\n\n* 👥 **Collective and non-hierarchical workflow by heart**: Collectives are\n tied to a [Nextcloud Team](https://github.com/nextcloud/circles) and\n owned by the collective.\n* 📝 **Collaborative page editing** like known from Etherpad thanks to the\n [Text app](https://github.com/nextcloud/text).\n* 🔤 **Well-known [Markdown](https://en.wikipedia.org/wiki/Markdown) syntax**\n for page formatting.\n\n## Installation\n\nIn your Nextcloud instance, simply navigate to **»Apps«**, find the\n**»Teams«** and **»Collectives«** apps and enable them.", 37 37 "homepage": "https://github.com/nextcloud/collectives", 38 38 "licenses": [ ··· 40 40 ] 41 41 }, 42 42 "contacts": { 43 - "hash": "sha256-52FNlLIc4Xr/8mKzEJW8YJ7RbfaeSpMaIxGhBFp0WFc=", 44 - "url": "https://github.com/nextcloud-releases/contacts/releases/download/v7.1.5/contacts-v7.1.5.tar.gz", 45 - "version": "7.1.5", 43 + "hash": "sha256-AAlfPeFWCO894/R5fLsXSSW2VKacVCH07JsGLIJWVms=", 44 + "url": "https://github.com/nextcloud-releases/contacts/releases/download/v7.2.3/contacts-v7.2.3.tar.gz", 45 + "version": "7.2.3", 46 46 "description": "The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Mail and Calendar – more to come.\n* 🎉 **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.\n* 👥 **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!\n* 🙈 **We’re not reinventing the wheel!** Based on the great and open SabreDAV library.", 47 47 "homepage": "https://github.com/nextcloud/contacts#readme", 48 48 "licenses": [ ··· 80 80 ] 81 81 }, 82 82 "deck": { 83 - "hash": "sha256-VUdHoLYyCg7DsNu2LYZelmcHM4B0cfkH8PwcTK844mo=", 84 - "url": "https://github.com/nextcloud-releases/deck/releases/download/v1.15.1/deck-v1.15.1.tar.gz", 85 - "version": "1.15.1", 83 + "hash": "sha256-y0kZrmWO6sI4IP+5j+gi8UuxgIwNPXMRDFfETjsRtFg=", 84 + "url": "https://github.com/nextcloud-releases/deck/releases/download/v1.15.2/deck-v1.15.2.tar.gz", 85 + "version": "1.15.2", 86 86 "description": "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized", 87 87 "homepage": "https://github.com/nextcloud/deck", 88 88 "licenses": [ ··· 150 150 ] 151 151 }, 152 152 "groupfolders": { 153 - "hash": "sha256-KqbPvcHOYJA8bjWbh6X/7RM78FGCqFJIOS8FgugJyJk=", 154 - "url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v19.1.2/groupfolders-v19.1.2.tar.gz", 155 - "version": "19.1.2", 156 - "description": "Admin configured folders shared with everyone in a group.\n\nFolders can be configured from *Group folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.", 153 + "hash": "sha256-0z6zxuBNvEhPAtCUUDtb0BOMSS+xT/rN7H2PQQ/BLPE=", 154 + "url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v19.1.3/groupfolders-v19.1.3.tar.gz", 155 + "version": "19.1.3", 156 + "description": "Admin configured folders shared with everyone in a team.\n\nFolders can be configured from *Team folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more teams, control their write/sharing permissions and assign a quota for the folder.", 157 157 "homepage": "https://github.com/nextcloud/groupfolders", 158 158 "licenses": [ 159 159 "agpl" ··· 170 170 ] 171 171 }, 172 172 "integration_deepl": { 173 - "hash": "sha256-FKlu1tlA/GxAHKFu4kfq8CsDvBrnMnLKDizisgb0IOQ=", 174 - "url": "https://github.com/nextcloud-releases/integration_deepl/releases/download/v1.3.1/integration_deepl-v1.3.1.tar.gz", 175 - "version": "1.3.1", 173 + "hash": "sha256-WjTg/+ckoZ/xFrfN0LaLvWIM/JbbnfvVO4EbnRnvB60=", 174 + "url": "https://github.com/nextcloud-releases/integration_deepl/releases/download/v2.0.0/integration_deepl-v2.0.0.tar.gz", 175 + "version": "2.0.0", 176 176 "description": "Deepl integration providing an translations through deepl.com with Nextcloud\n\nThis app integrates with [Nextcloud Assistant](https://apps.nextcloud.com/apps/assistant) to offer translation services We recommend to install Assistant additionally and activate Deepl as translation provider in the Artifical Intelligence admin settings.\n\nThis app also integrates with the translation API of Nextcloud server to offer translation services without Assistant. Currently this is available in Text and Talk.\n\nTo run translations and any other Task Processing tasks synchronously, run the following command in a background process (10 is the interval in seconds when the process should relaunch to use the latest php changes):\n\n```sh\nset -e; while true; do occ background-job:worker -v -t 10 \"OC\\TaskProcessing\\SynchronousBackgroundJob\"; done\n```\n\n## Ethical AI Rating\n### Rating: 🔴\n\nNegative:\n* the software for training and inferencing of this model is proprietary, limiting running it locally or training by yourself\n* the trained model is not freely available, so the model can not be ran on-premises\n* the training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 177 177 "homepage": "https://github.com/nextcloud/integration_deepl", 178 178 "licenses": [ ··· 180 180 ] 181 181 }, 182 182 "integration_openai": { 183 - "hash": "sha256-LUfgHGN2gddCsATRBgWMJO8EsaOqqRYVZXCL4EKc6Vw=", 184 - "url": "https://github.com/nextcloud-releases/integration_openai/releases/download/v3.5.0/integration_openai-v3.5.0.tar.gz", 185 - "version": "3.5.0", 186 - "description": "⚠️ The smart pickers have been removed from this app\nas they are now included in the [Assistant app](https://apps.nextcloud.com/apps/assistant).\n\nThis app implements:\n\n* Text generation providers: Free prompt, Summarize, Headline, Context Write, Chat, and Reformulate (using any available large language model)\n* A Translation provider (using any available language model)\n* A SpeechToText provider (using Whisper)\n* An image generation provider\n\n⚠️ Context Write, Summarize, Headline and Reformulate have mainly been tested with OpenAI.\nThey might work when connecting to other services, without any guarantee.\n\nInstead of connecting to the OpenAI API for these, you can also connect to a self-hosted [LocalAI](https://localai.io) instance or [Ollama](https://ollama.com/) instance\nor to any service that implements an API similar to the OpenAI one, for example:\n[IONOS AI Model Hub](https://docs.ionos.com/cloud/ai/ai-model-hub), [Plusserver](https://www.plusserver.com/en/ai-platform/) or [MistralAI](https://mistral.ai).\n\n⚠️ This app is mainly tested with OpenAI. We do not guarantee it works perfectly\nwith other services that implement OpenAI-compatible APIs with slight differences.\n\n## Improve AI task pickup speed\n\nTo avoid task processing execution delay, setup at 4 background job workers in the main server (where Nextcloud is installed). The setup process is documented here: https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed\n\n## Ethical AI Rating\n### Rating for Text generation using ChatGPT via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be run on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n\n### Rating for Translation using ChatGPT via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be run on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n### Rating for Image generation using DALL·E via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inferencing of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be ran on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via the OpenAI API: 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can run on-premise\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n### Rating for Text generation via LocalAI: 🟢\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n* The training data is freely available, making it possible to check or correct for bias or optimise the performance and CO2 usage.\n\n\n### Rating for Image generation using Stable Diffusion via LocalAI : 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via LocalAI: 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 183 + "hash": "sha256-VAvpbiTzbbQPsohQygdXRfPqPkxf7rEBuYELb0ADZqA=", 184 + "url": "https://github.com/nextcloud-releases/integration_openai/releases/download/v3.7.1/integration_openai-v3.7.1.tar.gz", 185 + "version": "3.7.1", 186 + "description": "⚠️ The smart pickers have been removed from this app\nas they are now included in the [Assistant app](https://apps.nextcloud.com/apps/assistant).\n\nThis app implements:\n\n* Text generation providers: Free prompt, Summarize, Headline, Context Write, Chat, and Reformulate (using any available large language model)\n* A Translation provider (using any available language model)\n* A SpeechToText provider (using Whisper)\n* An image generation provider\n\n⚠️ Context Write, Summarize, Headline and Reformulate have mainly been tested with OpenAI.\nThey might work when connecting to other services, without any guarantee.\n\nInstead of connecting to the OpenAI API for these, you can also connect to a self-hosted [LocalAI](https://localai.io) instance or [Ollama](https://ollama.com/) instance\nor to any service that implements an API similar to the OpenAI one, for example:\n[IONOS AI Model Hub](https://docs.ionos.com/cloud/ai/ai-model-hub), [Plusserver](https://www.plusserver.com/en/ai-platform/) or [MistralAI](https://mistral.ai).\n\n⚠️ This app is mainly tested with OpenAI. We do not guarantee it works perfectly\nwith other services that implement OpenAI-compatible APIs with slight differences.\n\n## Improve AI task pickup speed\n\nTo avoid task processing execution delay, setup at 4 background job workers in the main server (where Nextcloud is installed). The setup process is documented here: https://docs.nextcloud.com/server/latest/admin_manual/ai/overview.html#improve-ai-task-pickup-speed\n\n## Ethical AI Rating\n### Rating for Text generation using ChatGPT via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be run on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n\n### Rating for Translation using ChatGPT via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inference of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be run on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model's performance and CO2 usage.\n\n### Rating for Image generation using DALL·E via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inferencing of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be ran on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via the OpenAI API: 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can run on-premise\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n### Rating for Text-To-Speech via the OpenAI API: 🔴\n\nNegative:\n* The software for training and inferencing of this model is proprietary, limiting running it locally or training by yourself\n* The trained model is not freely available, so the model can not be ran on-premises\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n### Rating for Text generation via LocalAI: 🟢\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n* The training data is freely available, making it possible to check or correct for bias or optimise the performance and CO2 usage.\n\n\n### Rating for Image generation using Stable Diffusion via LocalAI : 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\n\n### Rating for Speech-To-Text using Whisper via LocalAI: 🟡\n\nPositive:\n* The software for training and inferencing of this model is open source\n* The trained model is freely available, and thus can be ran on-premises\n\nNegative:\n* The training data is not freely available, limiting the ability of external parties to check and correct for bias or optimise the model’s performance and CO2 usage.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 187 187 "homepage": "https://github.com/nextcloud/integration_openai", 188 188 "licenses": [ 189 189 "agpl" ··· 200 200 ] 201 201 }, 202 202 "mail": { 203 - "hash": "sha256-FSpr/PVZlx4t+1cGmyoES/9i0c2nyRTPLTodLM2JP04=", 204 - "url": "https://github.com/nextcloud-releases/mail/releases/download/v5.1.7/mail-v5.1.7.tar.gz", 205 - "version": "5.1.7", 203 + "hash": "sha256-ZO7OfGtHckgY02djPHRH1dZW1gu5R/2Te+v9k3lKpeM=", 204 + "url": "https://github.com/nextcloud-releases/mail/releases/download/v5.1.10/mail-v5.1.10.tar.gz", 205 + "version": "5.1.10", 206 206 "description": "**💌 A mail app for Nextcloud**\n\n- **🚀 Integration with other Nextcloud apps!** Currently Contacts, Calendar & Files – more to come.\n- **📥 Multiple mail accounts!** Personal and company account? No problem, and a nice unified inbox. Connect any IMAP account.\n- **🔒 Send & receive encrypted mails!** Using the great [Mailvelope](https://mailvelope.com) browser extension.\n- **🙈 We’re not reinventing the wheel!** Based on the great [Horde](https://www.horde.org) libraries.\n- **📬 Want to host your own mail server?** We do not have to reimplement this as you could set up [Mail-in-a-Box](https://mailinabox.email)!\n\n## Ethical AI Rating\n\n### Priority Inbox\n\nPositive:\n* The software for training and inferencing of this model is open source.\n* The model is created and trained on-premises based on the user's own data.\n* The training data is accessible to the user, making it possible to check or correct for bias or optimise the performance and CO2 usage.\n\n### Thread Summaries (opt-in)\n\n**Rating:** 🟢/🟡/🟠/🔴\n\nThe rating depends on the installed text processing backend. See [the rating overview](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html) for details.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 207 207 "homepage": "https://github.com/nextcloud/mail#readme", 208 208 "licenses": [ ··· 210 210 ] 211 211 }, 212 212 "maps": { 213 - "hash": "sha256-E0S/CwXyye19lcuiONEQCyHJqlL0ZG1A9Q7oOTEZH1g=", 214 - "url": "https://github.com/nextcloud/maps/releases/download/v1.6.0-3-nightly/maps-1.6.0-3-nightly.tar.gz", 213 + "hash": "sha256-IupRymjs955TiUutzoTTMeESNfBmAp51l+oBaZwfdN0=", 214 + "url": "https://github.com/nextcloud/maps/releases/download/v1.6.0/maps-1.6.0.tar.gz", 215 215 "version": "1.6.0", 216 216 "description": "**The whole world fits inside your cloud!**\n\n- **🗺 Beautiful map:** Using [OpenStreetMap](https://www.openstreetmap.org) and [Leaflet](https://leafletjs.com), you can choose between standard map, satellite, topographical, dark mode or even watercolor! 🎨\n- **⭐ Favorites:** Save your favorite places, privately! Sync with [GNOME Maps](https://github.com/nextcloud/maps/issues/30) and mobile apps is planned.\n- **🧭 Routing:** Possible using either [OSRM](http://project-osrm.org), [GraphHopper](https://www.graphhopper.com) or [Mapbox](https://www.mapbox.com).\n- **🖼 Photos on the map:** No more boring slideshows, just show directly where you were!\n- **🙋 Contacts on the map:** See where your friends live and plan your next visit.\n- **📱 Devices:** Lost your phone? Check the map!\n- **〰 Tracks:** Load GPS tracks or past trips. Recording with [PhoneTrack](https://f-droid.org/en/packages/net.eneiluj.nextcloud.phonetrack/) or [OwnTracks](https://owntracks.org) is planned.", 217 217 "homepage": "https://github.com/nextcloud/maps", ··· 230 230 ] 231 231 }, 232 232 "news": { 233 - "hash": "sha256-Y1+hcRxewWyctG5nS7GjN+zWCBrxoroeb01HLzqAR08=", 234 - "url": "https://github.com/nextcloud/news/releases/download/26.0.2/news.tar.gz", 235 - "version": "26.0.2", 233 + "hash": "sha256-8U2EOK8mXPEk70IU8GLXYU0EoZU7O4fhFkzhGpauvZc=", 234 + "url": "https://github.com/nextcloud/news/releases/download/26.1.0/news.tar.gz", 235 + "version": "26.1.0", 236 236 "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)", 237 237 "homepage": "https://github.com/nextcloud/news", 238 238 "licenses": [ ··· 250 250 ] 251 251 }, 252 252 "notes": { 253 - "hash": "sha256-/Zym7bNotcdradtR3cG+rIaAH9jZs+/3PCP7zXS6WJo=", 254 - "url": "https://github.com/nextcloud-releases/notes/releases/download/v4.12.1/notes-v4.12.1.tar.gz", 255 - "version": "4.12.1", 253 + "hash": "sha256-WpxRJ45N+aO+cOp5u6+uwlijzofpmdcUg07ax3p3WDA=", 254 + "url": "https://github.com/nextcloud-releases/notes/releases/download/v4.12.2/notes-v4.12.2.tar.gz", 255 + "version": "4.12.2", 256 256 "description": "The Notes app is a distraction free notes taking app for [Nextcloud](https://www.nextcloud.com/). It provides categories for better organization and supports formatting using [Markdown](https://en.wikipedia.org/wiki/Markdown) syntax. Notes are saved as files in your Nextcloud, so you can view and edit them with every Nextcloud client. Furthermore, a separate [REST API](https://github.com/nextcloud/notes/blob/master/docs/api/README.md) allows for an easy integration into apps ([Android](https://github.com/nextcloud/notes-android), [iOS](https://github.com/nextcloud/notes-ios), as well as [3rd-party apps](https://github.com/nextcloud/notes/wiki#3rd-party-clients) which allow convenient access to your Nextcloud notes). Further features include marking notes as favorites.", 257 257 "homepage": "https://github.com/nextcloud/notes", 258 258 "licenses": [ ··· 290 290 ] 291 291 }, 292 292 "polls": { 293 - "hash": "sha256-iv3Jjx/p2uGhxYctaMaaB/5c3oroauE8iOEH2eWi4+A=", 294 - "url": "https://github.com/nextcloud-releases/polls/releases/download/v8.0.6/polls-v8.0.6.tar.gz", 295 - "version": "8.0.6", 293 + "hash": "sha256-pGXydde3kLTHgA3vgq2NG1YsyWkda/z8frMFbHdxetQ=", 294 + "url": "https://github.com/nextcloud-releases/polls/releases/download/v8.1.4/polls-v8.1.4.tar.gz", 295 + "version": "8.1.4", 296 296 "description": "A polls app, similar to Doodle/DuD-Poll with the possibility to restrict access (members, certain groups/users, hidden and public).", 297 297 "homepage": "https://github.com/nextcloud/polls", 298 298 "licenses": [ ··· 300 300 ] 301 301 }, 302 302 "previewgenerator": { 303 - "hash": "sha256-dPUvtVFtSqlG9M1RXZ8u7nL3wgK5yFU2/pL9pFLjisc=", 304 - "url": "https://github.com/nextcloud-releases/previewgenerator/releases/download/v5.8.0/previewgenerator-v5.8.0.tar.gz", 305 - "version": "5.8.0", 303 + "hash": "sha256-+vJ1h/wxOOwmWmj6gSfXv7UgsRjwelboFQwHpE53efY=", 304 + "url": "https://github.com/nextcloud-releases/previewgenerator/releases/download/v5.9.0/previewgenerator-v5.9.0.tar.gz", 305 + "version": "5.9.0", 306 306 "description": "The Preview Generator app allows admins to pre-generate previews. The app listens to edit events and stores this information. Once a cron job is triggered it will generate start preview generation. This means that you can better utilize your system by pre-generating previews when your system is normally idle and thus putting less load on your machine when the requests are actually served.\n\nThe app does not replace on demand preview generation so if a preview is requested before it is pre-generated it will still be shown.\nThe first time you install this app, before using a cron job, you properly want to generate all previews via:\n**./occ preview:generate-all -vvv**\n\n**Important**: To enable pre-generation of previews you must add **php /var/www/nextcloud/occ preview:pre-generate** to a system cron job that runs at times of your choosing.", 307 307 "homepage": "https://github.com/nextcloud/previewgenerator", 308 308 "licenses": [ ··· 340 340 ] 341 341 }, 342 342 "richdocuments": { 343 - "hash": "sha256-qJt7nkXhW3t0c8m+MHStWt2FnSNUNiMbDLeDOpU8VVA=", 344 - "url": "https://github.com/nextcloud-releases/richdocuments/releases/download/v8.7.1/richdocuments-v8.7.1.tar.gz", 345 - "version": "8.7.1", 343 + "hash": "sha256-jFjn74izMbj3aHTswUvwl1k7nA+WrBuIrSrRLqK7/28=", 344 + "url": "https://github.com/nextcloud-releases/richdocuments/releases/download/v8.7.3/richdocuments-v8.7.3.tar.gz", 345 + "version": "8.7.3", 346 346 "description": "This application can connect to a Collabora Online (or other) server (WOPI-like Client). Nextcloud is the WOPI Host. Please read the documentation to learn more about that.\n\nYou can also edit your documents off-line with the Collabora Office app from the **[Android](https://play.google.com/store/apps/details?id=com.collabora.libreoffice)** and **[iOS](https://apps.apple.com/us/app/collabora-office/id1440482071)** store.", 347 347 "homepage": "https://collaboraoffice.com/", 348 348 "licenses": [ ··· 360 360 ] 361 361 }, 362 362 "spreed": { 363 - "hash": "sha256-tumLEoJAGvcFgN8dQbmwxPofOQ825mySOa5qNg6wzgs=", 364 - "url": "https://github.com/nextcloud-releases/spreed/releases/download/v21.1.1/spreed-v21.1.1.tar.gz", 365 - "version": "21.1.1", 363 + "hash": "sha256-eg2d2Mb4rMey2H4plSLdsqjPrIWQP5cStA7ISkT0VDs=", 364 + "url": "https://github.com/nextcloud-releases/spreed/releases/download/v21.1.2/spreed-v21.1.2.tar.gz", 365 + "version": "21.1.2", 366 366 "description": "Chat, video & audio-conferencing using WebRTC\n\n* 💬 **Chat** Nextcloud Talk comes with a simple text chat, allowing you to share or upload files from your Nextcloud Files app or local device and mention other participants.\n* 👥 **Private, group, public and password protected calls!** Invite someone, a whole group or send a public link to invite to a call.\n* 🌐 **Federated chats** Chat with other Nextcloud users on their servers\n* 💻 **Screen sharing!** Share your screen with the participants of your call.\n* 🚀 **Integration with other Nextcloud apps** like Files, Calendar, User status, Dashboard, Flow, Maps, Smart picker, Contacts, Deck, and many more.\n* 🌉 **Sync with other chat solutions** With [Matterbridge](https://github.com/42wim/matterbridge/) being integrated in Talk, you can easily sync a lot of other chat solutions to Nextcloud Talk and vice-versa.", 367 367 "homepage": "https://github.com/nextcloud/spreed", 368 368 "licenses": [ ··· 430 430 ] 431 431 }, 432 432 "user_oidc": { 433 - "hash": "sha256-nXDWfRP9n9eH+JGg1a++kD5uLMsXh5BHAaTAOgLI9W4=", 434 - "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v7.2.0/user_oidc-v7.2.0.tar.gz", 435 - "version": "7.2.0", 433 + "hash": "sha256-5ny76JXlGKnzmoaFyKU3l5I50oc03yy6WtiIcUZwKnk=", 434 + "url": "https://github.com/nextcloud-releases/user_oidc/releases/download/v7.3.0/user_oidc-v7.3.0.tar.gz", 435 + "version": "7.3.0", 436 436 "description": "Allows flexible configuration of an OIDC server as Nextcloud login user backend.", 437 437 "homepage": "https://github.com/nextcloud/user_oidc", 438 438 "licenses": [
+1
pkgs/top-level/aliases.nix
··· 1333 1333 mpc-cli = mpc; # Added 2024-10-14 1334 1334 mpc_cli = mpc; # Added 2024-10-14 1335 1335 mpd_clientlib = throw "'mpd_clientlib' has been renamed to/replaced by 'libmpdclient'"; # Converted to throw 2024-10-17 1336 + mpdWithFeatures = lib.warnOnInstantiate "mpdWithFeatures has been replaced by mpd.override" mpd.override; # Added 2025-08-08 1336 1337 mpdevil = plattenalbum; # Added 2024-05-22 1337 1338 mpg321 = throw "'mpg321' has been removed due to it being unmaintained by upstream. Consider using mpg123 instead."; # Added 2024-05-10 1338 1339 mq-cli = throw "'mq-cli' has been removed due to lack of upstream maintenance"; # Added 2025-01-25
-8
pkgs/top-level/all-packages.nix
··· 10220 10220 10221 10221 mkchromecast = libsForQt5.callPackage ../applications/networking/mkchromecast { }; 10222 10222 10223 - inherit 10224 - (callPackages ../servers/mpd { 10225 - }) 10226 - mpd 10227 - mpd-small 10228 - mpdWithFeatures 10229 - ; 10230 - 10231 10223 mtprotoproxy = python3.pkgs.callPackage ../servers/mtprotoproxy { }; 10232 10224 10233 10225 moodle = callPackage ../servers/web-apps/moodle { };