nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge staging-next into staging

authored by

nixpkgs-ci[bot] and committed by
GitHub
dbd63f19 9e56333a

+485 -202
+2
nixos/doc/manual/release-notes/rl-2505.section.md
··· 232 232 233 233 - `minetest` has been renamed to `luanti` to match the upstream name change but aliases have been added. The new name hasn't resulted in many changes as of yet but older references to minetest should be sunset. See the [new name announcement](https://blog.minetest.net/2024/10/13/Introducing-Our-New-Name/) for more details. 234 234 235 + - `poac` has been renamed to `cabinpkg` to match the upstream name change but an alias has been added. See the [new name announcement](https://github.com/orgs/cabinpkg/discussions/1052) for more details. 236 + 235 237 - `racket_7_9` has been removed, as it is insecure. It is recommended to use Racket 8 instead. 236 238 237 239 - `rofi` has been updated from 1.7.5 to 1.7.6 which introduces some breaking changes to binary plugins, and also contains a lot of new features and bug fixes. This is highlighted because the patch version bump does not indicate the volume of changes by itself. See the [upstream release notes](https://github.com/davatorium/rofi/releases/tag/1.7.6) for the full list of changes.
+1 -1
nixos/modules/programs/wayland/cardboard.nix
··· 9 9 cfg = config.programs.cardboard; 10 10 in 11 11 { 12 - meta.maintainers = with lib.maintainers; [ AndersonTorres ]; 12 + meta.maintainers = with lib.maintainers; [ ]; 13 13 14 14 options.programs.cardboard = { 15 15 enable = lib.mkEnableOption "cardboard";
+1 -1
nixos/modules/programs/wayland/labwc.nix
··· 9 9 cfg = config.programs.labwc; 10 10 in 11 11 { 12 - meta.maintainers = with lib.maintainers; [ AndersonTorres ]; 12 + meta.maintainers = with lib.maintainers; [ ]; 13 13 14 14 options.programs.labwc = { 15 15 enable = lib.mkEnableOption "labwc";
+1 -1
nixos/modules/services/networking/connman.nix
··· 16 16 enableIwd = cfg.wifi.backend == "iwd"; 17 17 in 18 18 { 19 - meta.maintainers = with lib.maintainers; [ AndersonTorres ]; 19 + meta.maintainers = with lib.maintainers; [ ]; 20 20 21 21 imports = [ 22 22 (lib.mkRenamedOptionModule [ "networking" "connman" ] [ "services" "connman" ])
+1 -1
nixos/modules/services/system/earlyoom.nix
··· 23 23 in 24 24 { 25 25 meta = { 26 - maintainers = with lib.maintainers; [ AndersonTorres ]; 26 + maintainers = with lib.maintainers; [ ]; 27 27 }; 28 28 29 29 options.services.earlyoom = {
-1
nixos/modules/services/x11/xscreensaver.nix
··· 43 43 44 44 meta.maintainers = with lib.maintainers; [ 45 45 vancluever 46 - AndersonTorres 47 46 ]; 48 47 }
-1
nixos/tests/earlyoom.nix
··· 5 5 meta = { 6 6 maintainers = with lib.maintainers; [ 7 7 ncfavier 8 - AndersonTorres 9 8 oxalica 10 9 ]; 11 10 };
-1
nixos/tests/xscreensaver.nix
··· 4 4 name = "pass-secret-service"; 5 5 meta.maintainers = with lib.maintainers; [ 6 6 vancluever 7 - AndersonTorres 8 7 ]; 9 8 10 9 nodes = {
+1 -6
pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix
··· 9 9 f, 10 10 fetchFromGitHub, 11 11 git, 12 - gitUpdater, 13 12 melpaBuild, 14 13 package-build, 15 14 s, ··· 58 59 install -D -t $out/bin bin/cask 59 60 ''; 60 61 61 - passthru.updateScript = gitUpdater { 62 - rev-prefix = "v"; 63 - }; 64 - 65 62 meta = { 66 63 homepage = "https://github.com/cask/cask"; 67 64 description = "Project management for Emacs"; ··· 68 73 ''; 69 74 license = lib.licenses.gpl3Plus; 70 75 mainProgram = "cask"; 71 - maintainers = with lib.maintainers; [ AndersonTorres ]; 76 + maintainers = with lib.maintainers; [ ]; 72 77 }; 73 78 })
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix
··· 2 2 lib, 3 3 fetchFromGitHub, 4 4 melpaBuild, 5 - unstableGitUpdater, 6 5 }: 7 6 8 7 melpaBuild { ··· 18 19 # https://github.com/NixOS/nixpkgs/issues/335408 19 20 ignoreCompilationError = true; 20 21 21 - passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; 22 - 23 22 meta = { 24 23 homepage = "http://ethanschoonover.com/solarized"; 25 24 description = "Precision colors for machines and people; Emacs implementation"; 26 25 license = lib.licenses.mit; 27 - maintainers = with lib.maintainers; [ AndersonTorres ]; 26 + maintainers = with lib.maintainers; [ ]; 28 27 }; 29 28 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix
··· 4 4 libffi, 5 5 melpaBuild, 6 6 pkg-config, 7 - unstableGitUpdater, 8 7 }: 9 8 10 9 melpaBuild { ··· 28 29 make CXX=$CXX 29 30 ''; 30 31 31 - passthru.updateScript = unstableGitUpdater { }; 32 - 33 32 meta = { 34 33 homepage = "https://github.com/skeeto/elisp-ffi"; 35 34 description = "Emacs Lisp Foreign Function Interface"; ··· 38 41 values on to Emacs. 39 42 ''; 40 43 license = lib.licenses.unlicense; 41 - maintainers = with lib.maintainers; [ AndersonTorres ]; 44 + maintainers = with lib.maintainers; [ ]; 42 45 }; 43 46 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix
··· 2 2 lib, 3 3 fetchFromGitHub, 4 4 melpaBuild, 5 - unstableGitUpdater, 6 5 }: 7 6 8 7 melpaBuild { ··· 16 17 hash = "sha256-er+knxqAejgKAtOnhqHfsGN286biHFdeMIUlbW7JyYw="; 17 18 }; 18 19 19 - passthru.updateScript = unstableGitUpdater { }; 20 - 21 20 meta = { 22 21 homepage = "https://github.com/emacsmirror/font-lock-plus"; 23 22 description = "Enhancements to standard library font-lock.el"; 24 23 license = lib.licenses.gpl2Plus; 25 - maintainers = with lib.maintainers; [ AndersonTorres ]; 24 + maintainers = with lib.maintainers; [ ]; 26 25 }; 27 26 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix
··· 2 2 lib, 3 3 fetchFromGitHub, 4 4 melpaBuild, 5 - unstableGitUpdater, 6 5 }: 7 6 8 7 melpaBuild { ··· 15 16 hash = "sha256-3QDw4W3FbFvb2zpkDHAo9BJKxs3LaehyvUVJPKqS9RE="; 16 17 }; 17 18 18 - passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; 19 - 20 19 meta = { 21 20 homepage = "https://github.com/ichernyshovvv/grid.el"; 22 21 description = "Library to put text data into boxes and manipulate them"; 23 22 license = lib.licenses.gpl3Plus; 24 - maintainers = with lib.maintainers; [ AndersonTorres ]; 23 + maintainers = with lib.maintainers; [ ]; 25 24 }; 26 25 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix
··· 2 2 lib, 3 3 fetchFromGitHub, 4 4 melpaBuild, 5 - unstableGitUpdater, 6 5 }: 7 6 8 7 melpaBuild { ··· 15 16 hash = "sha256-pH4FQuAnYf8eNiwiLl+OOOxzdecrncay6TcHjNG16sk="; 16 17 }; 17 18 18 - passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; 19 - 20 19 meta = { 21 20 homepage = "https://emacswiki.org/emacs/Icicles"; 22 21 description = "Emacs library that enhances minibuffer completion"; 23 22 license = lib.licenses.gpl2Plus; 24 - maintainers = with lib.maintainers; [ AndersonTorres ]; 23 + maintainers = with lib.maintainers; [ ]; 25 24 }; 26 25 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/idris2-mode/package.nix
··· 30 30 homepage = "https://github.com/idris-community/idris2-mode"; 31 31 description = "Emacs mode for editing Idris 2 code"; 32 32 license = lib.licenses.gpl3Only; 33 - maintainers = with lib.maintainers; [ 34 - wuyoli 35 - AndersonTorres 36 - ]; 33 + maintainers = with lib.maintainers; [ wuyoli ]; 37 34 }; 38 35 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-plus/package.nix
··· 23 23 homepage = "https://www.emacswiki.org/emacs/IsearchPlus"; 24 24 description = "Extensions to isearch"; 25 25 license = lib.licenses.gpl2Plus; 26 - maintainers = with lib.maintainers; [ 27 - leungbk 28 - AndersonTorres 29 - ]; 26 + maintainers = with lib.maintainers; [ leungbk ]; 30 27 }; 31 28 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/isearch-prop/package.nix
··· 22 22 homepage = "https://www.emacswiki.org/emacs/IsearchPlus"; 23 23 description = "Search text- or overlay-property contexts"; 24 24 license = lib.licenses.gpl3Plus; 25 - maintainers = with lib.maintainers; [ 26 - leungbk 27 - AndersonTorres 28 - ]; 25 + maintainers = with lib.maintainers; [ leungbk ]; 29 26 }; 30 27 }
+1 -1
pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/module.nix
··· 34 34 homepage = "https://github.com/zbelial/lspce"; 35 35 description = "LSP Client for Emacs implemented as a module using Rust"; 36 36 license = lib.licenses.gpl3Only; 37 - maintainers = with lib.maintainers; [ AndersonTorres ]; 37 + maintainers = with lib.maintainers; [ ]; 38 38 }; 39 39 }
-5
pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/package.nix
··· 4 4 f, 5 5 markdown-mode, 6 6 melpaBuild, 7 - nix-update-script, 8 7 yasnippet, 9 8 }: 10 9 ··· 25 26 26 27 passthru = { 27 28 inherit lspce-module; 28 - updateScript = nix-update-script { 29 - attrPath = "emacsPackages.lspce.lspce-module"; 30 - extraArgs = [ "--version=branch" ]; 31 - }; 32 29 }; 33 30 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix
··· 2 2 lib, 3 3 melpaBuild, 4 4 fetchFromGitHub, 5 - gitUpdater, 6 5 }: 7 6 8 7 let ··· 18 19 hash = "sha256-/8T1VTYkKUxlNWXuuS54S5jpl4UxJBbgSuWc17a/VyM="; 19 20 }; 20 21 21 - passthru.updateScript = gitUpdater { }; 22 - 23 22 meta = { 24 23 homepage = "http://emacswiki.org/emacs/RectangleMark"; 25 24 description = "Mark a rectangle of text with highlighting"; 26 25 license = lib.licenses.gpl2Plus; 27 - maintainers = with lib.maintainers; [ AndersonTorres ]; 26 + maintainers = with lib.maintainers; [ ]; 28 27 }; 29 28 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/sunrise-commander/package.nix
··· 2 2 lib, 3 3 melpaBuild, 4 4 fetchFromGitHub, 5 - unstableGitUpdater, 6 5 }: 7 6 8 7 melpaBuild { ··· 16 17 hash = "sha256-D36qiRi5OTZrBtJ/bD/javAWizZ8NLlC/YP4rdLCSsw="; 17 18 }; 18 19 19 - passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; 20 - 21 20 meta = { 22 21 homepage = "https://github.com/sunrise-commander/sunrise-commander/"; 23 22 description = "Orthodox (two-pane) file manager for Emacs"; 24 23 license = lib.licenses.gpl3Plus; 25 - maintainers = [ lib.maintainers.AndersonTorres ]; 24 + maintainers = [ ]; 26 25 platforms = lib.platforms.all; 27 26 }; 28 27 }
+1 -4
pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix
··· 13 13 melpaBuild, 14 14 nav-flash, 15 15 porthole, 16 - unstableGitUpdater, 17 16 yasnippet, 18 17 el-patch, 19 18 }: ··· 48 49 el-patch 49 50 ]; 50 51 51 - passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; }; 52 - 53 52 meta = { 54 53 homepage = "https://github.com/jcaw/voicemacs/"; 55 54 description = "Set of utilities for controlling Emacs by voice"; 56 55 license = lib.licenses.gpl3Only; 57 - maintainers = with lib.maintainers; [ AndersonTorres ]; 56 + maintainers = with lib.maintainers; [ ]; 58 57 }; 59 58 }
+1 -1
pkgs/applications/emulators/yabause/default.nix
··· 54 54 mainProgram = "yabause"; 55 55 homepage = "https://yabause.org/"; 56 56 license = licenses.gpl2Plus; 57 - maintainers = with maintainers; [ AndersonTorres ]; 57 + maintainers = with maintainers; [ ]; 58 58 platforms = platforms.linux; 59 59 }; 60 60 }
+1 -1
pkgs/applications/networking/browsers/netsurf/buildsystem.nix
··· 21 21 homepage = "https://www.netsurf-browser.org/"; 22 22 description = "NetSurf browser shared build system"; 23 23 license = lib.licenses.mit; 24 - maintainers = with lib.maintainers; [ AndersonTorres ]; 24 + maintainers = with lib.maintainers; [ ]; 25 25 platforms = lib.platforms.unix; 26 26 }; 27 27 })
+1 -1
pkgs/applications/networking/ftp/gftp/default.nix
··· 51 51 homepage = "https://github.com/masneyb/gftp"; 52 52 description = "GTK-based multithreaded FTP client for *nix-based machines"; 53 53 license = licenses.gpl2Plus; 54 - maintainers = with maintainers; [ AndersonTorres ]; 54 + maintainers = with maintainers; [ ]; 55 55 platforms = platforms.unix; 56 56 }; 57 57 }
+56 -30
pkgs/build-support/binary-cache/make-binary-cache.py
··· 1 - 1 + from functools import partial 2 2 import json 3 + from multiprocessing import Pool 3 4 import os 5 + from pathlib import Path 4 6 import subprocess 5 7 6 - with open(os.environ["NIX_ATTRS_JSON_FILE"], "r") as f: 7 - closures = json.load(f)["closure"] 8 8 9 - os.chdir(os.environ["out"]) 9 + def dropPrefix(path, nixPrefix): 10 + return path[len(nixPrefix + "/") :] 10 11 11 - nixPrefix = os.environ["NIX_STORE"] # Usually /nix/store 12 12 13 - with open("nix-cache-info", "w") as f: 14 - f.write("StoreDir: " + nixPrefix + "\n") 13 + def processItem(item, nixPrefix, outDir): 14 + narInfoHash = dropPrefix(item["path"], nixPrefix).split("-")[0] 15 15 16 - def dropPrefix(path): 17 - return path[len(nixPrefix + "/"):] 16 + xzFile = outDir / "nar" / f"{narInfoHash}.nar.xz" 17 + with open(xzFile, "wb") as f: 18 + subprocess.run( 19 + f"nix-store --dump {item['path']} | xz -c", 20 + stdout=f, 21 + shell=True, 22 + check=True, 23 + ) 18 24 19 - for item in closures: 20 - narInfoHash = dropPrefix(item["path"]).split("-")[0] 25 + fileHash = ( 26 + subprocess.run( 27 + ["nix-hash", "--base32", "--type", "sha256", "--flat", xzFile], 28 + capture_output=True, 29 + check=True, 30 + ) 31 + .stdout.decode() 32 + .strip() 33 + ) 34 + fileSize = os.path.getsize(xzFile) 21 35 22 - xzFile = "nar/" + narInfoHash + ".nar.xz" 23 - with open(xzFile, "w") as f: 24 - subprocess.run("nix-store --dump %s | xz -c" % item["path"], stdout=f, shell=True) 36 + finalXzFileName = Path("nar") / f"{fileHash}.nar.xz" 37 + os.rename(xzFile, outDir / finalXzFileName) 25 38 26 - fileHash = subprocess.run(["nix-hash", "--base32", "--type", "sha256", "--flat", xzFile], capture_output=True).stdout.decode().strip() 27 - fileSize = os.path.getsize(xzFile) 39 + with open(outDir / f"{narInfoHash}.narinfo", "wt") as f: 40 + f.write(f"StorePath: {item['path']}\n") 41 + f.write(f"URL: {finalXzFileName}\n") 42 + f.write("Compression: xz\n") 43 + f.write(f"FileHash: sha256:{fileHash}\n") 44 + f.write(f"FileSize: {fileSize}\n") 45 + f.write(f"NarHash: {item['narHash']}\n") 46 + f.write(f"NarSize: {item['narSize']}\n") 47 + f.write(f"References: {' '.join(dropPrefix(ref, nixPrefix) for ref in item['references'])}\n") 28 48 29 - # Rename the .nar.xz file to its own hash to match "nix copy" behavior 30 - finalXzFile = "nar/" + fileHash + ".nar.xz" 31 - os.rename(xzFile, finalXzFile) 32 49 33 - with open(narInfoHash + ".narinfo", "w") as f: 34 - f.writelines((x + "\n" for x in [ 35 - "StorePath: " + item["path"], 36 - "URL: " + finalXzFile, 37 - "Compression: xz", 38 - "FileHash: sha256:" + fileHash, 39 - "FileSize: " + str(fileSize), 40 - "NarHash: " + item["narHash"], 41 - "NarSize: " + str(item["narSize"]), 42 - "References: " + " ".join(dropPrefix(ref) for ref in item["references"]), 43 - ])) 50 + def main(): 51 + outDir = Path(os.environ["out"]) 52 + nixPrefix = os.environ["NIX_STORE"] 53 + numWorkers = int(os.environ.get("NIX_BUILD_CORES", "4")) 54 + 55 + with open(os.environ["NIX_ATTRS_JSON_FILE"], "r") as f: 56 + closures = json.load(f)["closure"] 57 + 58 + os.makedirs(outDir / "nar", exist_ok=True) 59 + 60 + with open(outDir / "nix-cache-info", "w") as f: 61 + f.write(f"StoreDir: {nixPrefix}\n") 62 + 63 + with Pool(processes=numWorkers) as pool: 64 + worker = partial(processItem, nixPrefix=nixPrefix, outDir=outDir) 65 + pool.map(worker, closures) 66 + 67 + 68 + if __name__ == "__main__": 69 + main()
+3 -3
pkgs/by-name/ca/cargo-hack/package.nix
··· 6 6 7 7 rustPlatform.buildRustPackage rec { 8 8 pname = "cargo-hack"; 9 - version = "0.6.33"; 9 + version = "0.6.34"; 10 10 11 11 src = fetchCrate { 12 12 inherit pname version; 13 - hash = "sha256-/O05q4osyQ30rHKe84oBQJTFuVmPGB5KKy6UM/TzY5Q="; 13 + hash = "sha256-FAcKzLr835FxgcnWmAe1JirzlRc3fvxGXMKxnSmgCzA="; 14 14 }; 15 15 16 - cargoHash = "sha256-vkvna8+1+qQh+ZXtQ/HJa8UnstuH1sKlFc4CEUZYc5E="; 16 + cargoHash = "sha256-zWIXIoKgLVu7EZLe1IrR3Rl5szrN0zbyKJWK2BvD7kQ="; 17 17 18 18 # some necessary files are absent in the crate version 19 19 doCheck = false;
+2 -2
pkgs/by-name/cl/clj-kondo/package.nix
··· 7 7 8 8 buildGraalvmNativeImage rec { 9 9 pname = "clj-kondo"; 10 - version = "2024.11.14"; 10 + version = "2025.01.16"; 11 11 12 12 src = fetchurl { 13 13 url = "https://github.com/clj-kondo/${pname}/releases/download/v${version}/${pname}-${version}-standalone.jar"; 14 - sha256 = "sha256-/pzRKx6fqcbVwp+Eif3a1mh/awmwhhLVtFldRYibp/g="; 14 + sha256 = "sha256-3MWDrtEWBOxhZ3iD/7buszEMNHgbjY0k973VUOMBgu8="; 15 15 }; 16 16 17 17 graalvmDrv = graalvmPackages.graalvm-ce;
+2 -2
pkgs/by-name/cl/clzip/package.nix
··· 6 6 7 7 stdenv.mkDerivation (finalAttrs: { 8 8 pname = "clzip"; 9 - version = "1.14"; 9 + version = "1.15"; 10 10 11 11 src = fetchurl { 12 12 url = "mirror://savannah/lzip/clzip/clzip-${finalAttrs.version}.tar.gz"; 13 - hash = "sha256-9j/hJFuDL+B/9nnpubhofpN5q2E6Jr+wrKN1TIsWLXM="; 13 + hash = "sha256-KH6FFSaP+NFiRIeODi4tczwD2S3SsrhJFdde9N5sJh8="; 14 14 }; 15 15 16 16 meta = with lib; {
+3 -3
pkgs/by-name/fl/flake-checker/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage rec { 9 9 pname = "flake-checker"; 10 - version = "0.2.3"; 10 + version = "0.2.4"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "DeterminateSystems"; 14 14 repo = "flake-checker"; 15 15 rev = "v${version}"; 16 - hash = "sha256-kWjq25+VKL4ANqFG5UyVv/TqO2i5q400mqaUVbKg4GE="; 16 + hash = "sha256-K5E1sarWIUl4QavHBoS8sPr5Cp8ZndWjLYDLm++d7v0="; 17 17 }; 18 18 19 - cargoHash = "sha256-E2hjHTEflcSjDazSR2KBRn7jMhXhksRL/vNdWbyRsxM="; 19 + cargoHash = "sha256-TPF4usEIhgkGUJ16pxq0OhQoJJHLzeRXNQvbP8isWM4="; 20 20 21 21 buildInputs = lib.optionals stdenv.hostPlatform.isDarwin (with darwin.apple_sdk.frameworks; [ 22 22 Security
+3 -3
pkgs/by-name/li/libdeltachat/package.nix
··· 20 20 21 21 stdenv.mkDerivation rec { 22 22 pname = "libdeltachat"; 23 - version = "1.154.1"; 23 + version = "1.154.3"; 24 24 25 25 src = fetchFromGitHub { 26 26 owner = "deltachat"; 27 27 repo = "deltachat-core-rust"; 28 28 tag = "v${version}"; 29 - hash = "sha256-knlfcuZw7gPalLc/BSNvKmdweZAfd/QeBRNFX4OkOV8="; 29 + hash = "sha256-SjNFgvg6sHW40v13OuR3BL3+JdDxntDCKtbe/C/04as="; 30 30 }; 31 31 32 32 patches = [ ··· 36 36 cargoDeps = rustPlatform.fetchCargoVendor { 37 37 pname = "deltachat-core-rust"; 38 38 inherit version src; 39 - hash = "sha256-Wbuz03gNlnQCu3p9rRdeZTCtIJqFUK71e8CmEOousFI="; 39 + hash = "sha256-kbSRGuyCJlTxzKr/C+MLczqT7WNTqZ2/Z42psbBFW+w="; 40 40 }; 41 41 42 42 nativeBuildInputs = [
+2 -2
pkgs/by-name/li/libosmocore/package.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "libosmocore"; 19 - version = "1.10.0"; 19 + version = "1.10.1"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "osmocom"; 23 23 repo = "libosmocore"; 24 24 rev = version; 25 - hash = "sha256-qP5vGBgPs5y3InE3qgkVHiZgH3AW3mNyLIixgARAVRc="; 25 + hash = "sha256-CIbmCZJA/F86L1v3J1mpB15kHVDFUbhFUxaYFys8xCQ="; 26 26 }; 27 27 28 28 postPatch = ''
+2 -2
pkgs/by-name/na/namespace-cli/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "namespace-cli"; 9 - version = "0.0.399"; 9 + version = "0.0.400"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "namespacelabs"; 13 13 repo = "foundation"; 14 14 rev = "v${version}"; 15 - hash = "sha256-n1dnJOrrpfDlwdkuh7fcudZz3/W4+8Cg5E7/ecetr3U="; 15 + hash = "sha256-fsvyMel2OJZNkRJoBBZ4ibP6nX0r8ypFXGNA3A8YJ+M="; 16 16 }; 17 17 18 18 vendorHash = "sha256-b8er/iF7Dqq+BAulzE/tUebNeKmTMilc+a0yCAJ5E/0=";
+4 -4
pkgs/by-name/nw/nwg-look/package.nix
··· 13 13 14 14 buildGoModule rec { 15 15 pname = "nwg-look"; 16 - version = "0.2.7"; 16 + version = "1.0.2"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "nwg-piotr"; 20 20 repo = "nwg-look"; 21 21 rev = "v${version}"; 22 - hash = "sha256-qUNTJkNHWoJisLH0SU23UQuamEL27MMRnxw0kBxzWLk="; 22 + hash = "sha256-fvL7AGplIGlSEXlV3lCrBogAu2rD2XZKYTfHKK6Ztjc="; 23 23 }; 24 24 25 - vendorHash = "sha256-qHWy9OCxENrrWk00YoRveSjqYWIy/fe4Fyc8tc4n34E="; 25 + vendorHash = "sha256-J9Wc5MCgztzzYnjm3lAREmYLGPyuCX9Xr+qhAwf9Fzg="; 26 26 27 27 ldflags = [ "-s" "-w" ]; 28 28 ··· 64 64 65 65 meta = with lib; { 66 66 homepage = "https://github.com/nwg-piotr/nwg-look"; 67 - description = "Nwg-look is a GTK3 settings editor, designed to work properly in wlroots-based Wayland environment"; 67 + description = "GTK settings editor, designed to work properly in wlroots-based Wayland environment"; 68 68 license = licenses.mit; 69 69 platforms = platforms.linux; 70 70 maintainers = with maintainers; [ max-amb ];
+20 -16
pkgs/by-name/po/poac/package.nix pkgs/by-name/ca/cabinpkg/package.nix
··· 15 15 owner = "ToruNiina"; 16 16 repo = "toml11"; 17 17 version = "4.2.0"; 18 - rev = "refs/tags/v${version}"; 18 + tag = "v${version}"; 19 19 sha256 = "sha256-NUuEgTpq86rDcsQnpG0IsSmgLT0cXhd1y32gT57QPAw="; 20 20 }; 21 21 in 22 22 stdenv.mkDerivation rec { 23 - pname = "poac"; 24 - version = "0.10.1"; 23 + pname = "cabinpkg"; 24 + version = "0.11.0"; 25 25 26 26 src = fetchFromGitHub { 27 - owner = "poac-dev"; 28 - repo = pname; 29 - rev = "refs/tags/${version}"; 30 - sha256 = "sha256-uUVNM70HNJwrr38KB+44fNvLpWihoKyDpRj7d7kbo7k="; 27 + owner = "cabinpkg"; 28 + repo = "cabin"; 29 + tag = version; 30 + sha256 = "sha256-LIP99Shxu/lOdZ31KVA8RYawZ6dRLtXEGKZs1mUFCus="; 31 31 }; 32 32 33 33 strictDeps = true; ··· 44 44 curl 45 45 ]; 46 46 47 + # Skip git cloning toml11 47 48 preConfigure = '' 48 - #Skip git clone toml11 49 49 substituteInPlace Makefile \ 50 - --replace-fail "git clone" "\#git clone" 51 - substituteInPlace Makefile \ 52 - --replace-fail "git -C" "\#git -c" 50 + --replace-fail "git clone https://github.com/ToruNiina/toml11.git \$@" ":" \ 51 + --replace-fail "git -C \$@ reset --hard v4.2.0" ":" 53 52 ''; 54 53 55 54 preBuild = '' 56 - mkdir -p build-out/DEPS/ 57 - cp -rf ${toml11} build-out/DEPS/toml11 55 + mkdir -p build/DEPS/ 56 + cp -rf ${toml11} build/DEPS/toml11 58 57 ''; 59 58 60 - makeFlags = [ "RELEASE=1" ]; 59 + makeFlags = [ 60 + "RELEASE=1" 61 + "COMMIT_HASH=" 62 + "COMMIT_SHORT_HASH=" 63 + "COMMIT_DATE=" 64 + ]; 61 65 62 66 installFlags = [ "PREFIX=${placeholder "out"}" ]; 63 67 64 68 meta = { 65 69 broken = (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64); 66 - homepage = "https://poac.dev"; 70 + homepage = "https://cabinpkg.com"; 67 71 description = "A package manager and build system for C++"; 68 72 license = lib.licenses.asl20; 69 73 maintainers = [ lib.maintainers.qwqawawow ]; 70 74 platforms = lib.platforms.unix; 71 - mainProgram = "poac"; 75 + mainProgram = "cabin"; 72 76 }; 73 77 }
+2 -2
pkgs/by-name/po/polypane/package.nix
··· 6 6 7 7 let 8 8 pname = "polypane"; 9 - version = "22.1.1"; 9 + version = "23.0.0"; 10 10 11 11 src = fetchurl { 12 12 url = "https://github.com/firstversionist/${pname}/releases/download/v${version}/${pname}-${version}.AppImage"; 13 13 name = "${pname}-${version}.AppImage"; 14 - sha256 = "sha256-QPKbiecwh0eqbQ5PaGf+yBPUbRR4CfgxN12UOWx+Z9U="; 14 + sha256 = "sha256-YGNv3J1nAzj7BtJUxtgYQqlqisqzrGN9SpFs9RnaEh0="; 15 15 }; 16 16 17 17 appimageContents = appimageTools.extractType2 {
+2 -2
pkgs/by-name/ra/rapidfuzz-cpp/package.nix
··· 9 9 10 10 stdenv.mkDerivation (finalAttrs: { 11 11 pname = "rapidfuzz-cpp"; 12 - version = "3.3.0"; 12 + version = "3.3.1"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "rapidfuzz"; 16 16 repo = "rapidfuzz-cpp"; 17 17 rev = "v${finalAttrs.version}"; 18 - hash = "sha256-rCA4Rbf7VAcJmRH0KM0gfc3tZPSCBANf7znvoIlD9sk="; 18 + hash = "sha256-m8VSqvKF7oRZeVJHRebPePc9iOreXhdmV2rAtB3frKI="; 19 19 }; 20 20 21 21 nativeBuildInputs = [
+3 -3
pkgs/by-name/sp/spicetify-cli/package.nix
··· 8 8 9 9 buildGoModule rec { 10 10 pname = "spicetify-cli"; 11 - version = "2.38.3"; 11 + version = "2.38.7"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "spicetify"; 15 15 repo = "cli"; 16 16 rev = "v${version}"; 17 - hash = "sha256-la0zNYWzsU49Z6OKTefocN3xzoyNceaPAzG+CAFKMPc="; 17 + hash = "sha256-2fsHFl5t/Xo7W5IHGc5FWY92JvXjkln6keEn4BZerw4="; 18 18 }; 19 19 20 - vendorHash = "sha256-BT/zmeNKr2pNBSCaRtT/Dxm3uCshd1j4IW0xU7b9Yz4="; 20 + vendorHash = "sha256-a6lAVBUoSTqHnAKKvW+egmtupsuy0uB/XGtBaljju1I="; 21 21 22 22 ldflags = [ 23 23 "-s -w"
+335 -38
pkgs/by-name/ta/tabby/Cargo.lock
··· 41 41 42 42 [[package]] 43 43 name = "aim-downloader" 44 - version = "0.22.0" 44 + version = "0.23.0" 45 45 dependencies = [ 46 46 "async-stream", 47 47 "clap", ··· 1542 1542 ] 1543 1543 1544 1544 [[package]] 1545 + name = "glob" 1546 + version = "0.3.1" 1547 + source = "registry+https://github.com/rust-lang/crates.io-index" 1548 + checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b" 1549 + 1550 + [[package]] 1545 1551 name = "globset" 1546 1552 version = "0.4.14" 1547 1553 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1728 1722 1729 1723 [[package]] 1730 1724 name = "hash-ids" 1731 - version = "0.22.0" 1725 + version = "0.23.0" 1732 1726 1733 1727 [[package]] 1734 1728 name = "hashbrown" ··· 1912 1906 1913 1907 [[package]] 1914 1908 name = "http-api-bindings" 1915 - version = "0.22.0" 1909 + version = "0.23.0" 1916 1910 dependencies = [ 1917 1911 "anyhow", 1918 1912 "async-openai", ··· 2123 2117 "iana-time-zone-haiku", 2124 2118 "js-sys", 2125 2119 "wasm-bindgen", 2126 - "windows-core", 2120 + "windows-core 0.52.0", 2127 2121 ] 2128 2122 2129 2123 [[package]] ··· 2313 2307 "base64 0.21.7", 2314 2308 "js-sys", 2315 2309 "pem", 2316 - "ring", 2310 + "ring 0.17.8", 2317 2311 "serde", 2318 2312 "serde_json", 2319 2313 "simple_asn1", ··· 2520 2514 2521 2515 [[package]] 2522 2516 name = "libc" 2523 - version = "0.2.155" 2517 + version = "0.2.169" 2524 2518 source = "registry+https://github.com/rust-lang/crates.io-index" 2525 - checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c" 2519 + checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" 2526 2520 2527 2521 [[package]] 2528 2522 name = "libgit2-sys" ··· 2605 2599 2606 2600 [[package]] 2607 2601 name = "llama-cpp-server" 2608 - version = "0.22.0" 2602 + version = "0.23.0" 2609 2603 dependencies = [ 2610 2604 "anyhow", 2611 2605 "async-openai", ··· 3134 3128 3135 3129 [[package]] 3136 3130 name = "ollama-api-bindings" 3137 - version = "0.22.0" 3131 + version = "0.23.0" 3138 3132 dependencies = [ 3139 3133 "anyhow", 3140 3134 "async-stream", ··· 3246 3240 checksum = "69d6c3d7288a106c0a363e4b0e8d308058d56902adefb16f4936f417ffef086e" 3247 3241 dependencies = [ 3248 3242 "opentelemetry_api", 3249 - "opentelemetry_sdk", 3243 + "opentelemetry_sdk 0.18.0", 3250 3244 ] 3245 + 3246 + [[package]] 3247 + name = "opentelemetry" 3248 + version = "0.27.1" 3249 + source = "registry+https://github.com/rust-lang/crates.io-index" 3250 + checksum = "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7" 3251 + dependencies = [ 3252 + "futures-core", 3253 + "futures-sink", 3254 + "js-sys", 3255 + "pin-project-lite", 3256 + "thiserror", 3257 + "tracing", 3258 + ] 3259 + 3260 + [[package]] 3261 + name = "opentelemetry-otlp" 3262 + version = "0.27.0" 3263 + source = "registry+https://github.com/rust-lang/crates.io-index" 3264 + checksum = "91cf61a1868dacc576bf2b2a1c3e9ab150af7272909e80085c3173384fe11f76" 3265 + dependencies = [ 3266 + "async-trait", 3267 + "futures-core", 3268 + "http 1.1.0", 3269 + "opentelemetry 0.27.1", 3270 + "opentelemetry-proto", 3271 + "opentelemetry_sdk 0.27.1", 3272 + "prost", 3273 + "thiserror", 3274 + "tokio", 3275 + "tonic", 3276 + "tracing", 3277 + ] 3278 + 3279 + [[package]] 3280 + name = "opentelemetry-proto" 3281 + version = "0.27.0" 3282 + source = "registry+https://github.com/rust-lang/crates.io-index" 3283 + checksum = "a6e05acbfada5ec79023c85368af14abd0b307c015e9064d249b2a950ef459a6" 3284 + dependencies = [ 3285 + "opentelemetry 0.27.1", 3286 + "opentelemetry_sdk 0.27.1", 3287 + "prost", 3288 + "tonic", 3289 + ] 3290 + 3291 + [[package]] 3292 + name = "opentelemetry-semantic-conventions" 3293 + version = "0.27.0" 3294 + source = "registry+https://github.com/rust-lang/crates.io-index" 3295 + checksum = "bc1b6902ff63b32ef6c489e8048c5e253e2e4a803ea3ea7e783914536eb15c52" 3251 3296 3252 3297 [[package]] 3253 3298 name = "opentelemetry_api" ··· 3331 3274 "percent-encoding", 3332 3275 "rand 0.8.5", 3333 3276 "thiserror", 3277 + ] 3278 + 3279 + [[package]] 3280 + name = "opentelemetry_sdk" 3281 + version = "0.27.1" 3282 + source = "registry+https://github.com/rust-lang/crates.io-index" 3283 + checksum = "231e9d6ceef9b0b2546ddf52335785ce41252bc7474ee8ba05bfad277be13ab8" 3284 + dependencies = [ 3285 + "async-trait", 3286 + "futures-channel", 3287 + "futures-executor", 3288 + "futures-util", 3289 + "glob", 3290 + "opentelemetry 0.27.1", 3291 + "percent-encoding", 3292 + "rand 0.8.5", 3293 + "serde_json", 3294 + "thiserror", 3295 + "tokio", 3296 + "tokio-stream", 3334 3297 ] 3335 3298 3336 3299 [[package]] ··· 3733 3656 checksum = "8bccbff07d5ed689c4087d20d7307a52ab6141edeedf487c3876a55b86cf63df" 3734 3657 3735 3658 [[package]] 3659 + name = "prost" 3660 + version = "0.13.4" 3661 + source = "registry+https://github.com/rust-lang/crates.io-index" 3662 + checksum = "2c0fef6c4230e4ccf618a35c59d7ede15dea37de8427500f50aff708806e42ec" 3663 + dependencies = [ 3664 + "bytes", 3665 + "prost-derive", 3666 + ] 3667 + 3668 + [[package]] 3669 + name = "prost-derive" 3670 + version = "0.13.4" 3671 + source = "registry+https://github.com/rust-lang/crates.io-index" 3672 + checksum = "157c5a9d7ea5c2ed2d9fb8f495b64759f7816c7eaea54ba3978f0d63000162e3" 3673 + dependencies = [ 3674 + "anyhow", 3675 + "itertools 0.13.0", 3676 + "proc-macro2", 3677 + "quote", 3678 + "syn 2.0.66", 3679 + ] 3680 + 3681 + [[package]] 3736 3682 name = "psm" 3737 3683 version = "0.1.21" 3738 3684 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 4097 3997 4098 3998 [[package]] 4099 3999 name = "ring" 4000 + version = "0.16.20" 4001 + source = "registry+https://github.com/rust-lang/crates.io-index" 4002 + checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc" 4003 + dependencies = [ 4004 + "cc", 4005 + "libc", 4006 + "once_cell", 4007 + "spin 0.5.2", 4008 + "untrusted 0.7.1", 4009 + "web-sys", 4010 + "winapi", 4011 + ] 4012 + 4013 + [[package]] 4014 + name = "ring" 4100 4015 version = "0.17.8" 4101 4016 source = "registry+https://github.com/rust-lang/crates.io-index" 4102 4017 checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" ··· 4121 4006 "getrandom 0.2.15", 4122 4007 "libc", 4123 4008 "spin 0.9.8", 4124 - "untrusted", 4009 + "untrusted 0.9.0", 4125 4010 "windows-sys 0.52.0", 4126 4011 ] 4127 4012 ··· 4247 4132 4248 4133 [[package]] 4249 4134 name = "rustls" 4135 + version = "0.20.9" 4136 + source = "registry+https://github.com/rust-lang/crates.io-index" 4137 + checksum = "1b80e3dec595989ea8510028f30c408a4630db12c9cbb8de34203b89d6577e99" 4138 + dependencies = [ 4139 + "log", 4140 + "ring 0.16.20", 4141 + "sct", 4142 + "webpki", 4143 + ] 4144 + 4145 + [[package]] 4146 + name = "rustls" 4250 4147 version = "0.22.4" 4251 4148 source = "registry+https://github.com/rust-lang/crates.io-index" 4252 4149 checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432" 4253 4150 dependencies = [ 4254 4151 "log", 4255 - "ring", 4152 + "ring 0.17.8", 4256 4153 "rustls-pki-types", 4257 4154 "rustls-webpki", 4258 4155 "subtle", ··· 4279 4152 dependencies = [ 4280 4153 "log", 4281 4154 "once_cell", 4282 - "ring", 4155 + "ring 0.17.8", 4283 4156 "rustls-pki-types", 4284 4157 "rustls-webpki", 4285 4158 "subtle", ··· 4333 4206 source = "registry+https://github.com/rust-lang/crates.io-index" 4334 4207 checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9" 4335 4208 dependencies = [ 4336 - "ring", 4209 + "ring 0.17.8", 4337 4210 "rustls-pki-types", 4338 - "untrusted", 4211 + "untrusted 0.9.0", 4339 4212 ] 4340 4213 4341 4214 [[package]] ··· 4388 4261 version = "1.2.0" 4389 4262 source = "registry+https://github.com/rust-lang/crates.io-index" 4390 4263 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 4264 + 4265 + [[package]] 4266 + name = "sct" 4267 + version = "0.7.1" 4268 + source = "registry+https://github.com/rust-lang/crates.io-index" 4269 + checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" 4270 + dependencies = [ 4271 + "ring 0.17.8", 4272 + "untrusted 0.9.0", 4273 + ] 4391 4274 4392 4275 [[package]] 4393 4276 name = "sdd" ··· 4936 4799 ] 4937 4800 4938 4801 [[package]] 4802 + name = "sqlx-migrate-validate" 4803 + version = "0.23.0" 4804 + dependencies = [ 4805 + "anyhow", 4806 + "async-trait", 4807 + "sqlx", 4808 + "sqlx-rt", 4809 + "thiserror", 4810 + "tokio", 4811 + ] 4812 + 4813 + [[package]] 4939 4814 name = "sqlx-mysql" 4940 4815 version = "0.7.4" 4941 4816 source = "git+https://github.com/wsxiaoys/sqlx?rev=8ca573c#8ca573cc0e323a637261a8f2cbc4a7c3c7b4e133" ··· 5025 4876 "thiserror", 5026 4877 "tracing", 5027 4878 "whoami", 4879 + ] 4880 + 4881 + [[package]] 4882 + name = "sqlx-rt" 4883 + version = "0.6.3" 4884 + source = "registry+https://github.com/rust-lang/crates.io-index" 4885 + checksum = "804d3f245f894e61b1e6263c84b23ca675d96753b5abfd5cc8597d86806e8024" 4886 + dependencies = [ 4887 + "once_cell", 4888 + "tokio", 4889 + "tokio-rustls 0.23.4", 5028 4890 ] 5029 4891 5030 4892 [[package]] ··· 5227 5067 5228 5068 [[package]] 5229 5069 name = "sysinfo" 5230 - version = "0.29.11" 5070 + version = "0.33.0" 5231 5071 source = "registry+https://github.com/rust-lang/crates.io-index" 5232 - checksum = "cd727fc423c2060f6c92d9534cef765c65a6ed3f428a03d7def74a8c4348e666" 5072 + checksum = "948512566b1895f93b1592c7574baeb2de842f224f2aab158799ecadb8ebbb46" 5233 5073 dependencies = [ 5234 - "cfg-if", 5235 5074 "core-foundation-sys", 5236 5075 "libc", 5076 + "memchr", 5237 5077 "ntapi", 5238 - "once_cell", 5239 5078 "rayon", 5240 - "winapi", 5079 + "windows 0.57.0", 5241 5080 ] 5242 5081 5243 5082 [[package]] ··· 5262 5103 5263 5104 [[package]] 5264 5105 name = "tabby" 5265 - version = "0.22.0" 5106 + version = "0.23.0" 5266 5107 dependencies = [ 5267 5108 "anyhow", 5268 5109 "assert-json-diff", ··· 5283 5124 "llama-cpp-server", 5284 5125 "nvml-wrapper", 5285 5126 "openssl", 5127 + "opentelemetry 0.27.1", 5128 + "opentelemetry-otlp", 5129 + "opentelemetry-semantic-conventions", 5130 + "opentelemetry_sdk 0.27.1", 5286 5131 "regex", 5287 5132 "reqwest", 5288 5133 "reqwest-eventsource", ··· 5308 5145 "tokio", 5309 5146 "tower-http 0.5.2", 5310 5147 "tracing", 5148 + "tracing-opentelemetry 0.28.0", 5311 5149 "tracing-subscriber", 5312 5150 "utoipa", 5313 5151 "utoipa-swagger-ui", ··· 5318 5154 5319 5155 [[package]] 5320 5156 name = "tabby-common" 5321 - version = "0.22.0" 5157 + version = "0.23.0" 5322 5158 dependencies = [ 5323 5159 "anyhow", 5324 5160 "async-trait", ··· 5346 5182 5347 5183 [[package]] 5348 5184 name = "tabby-crawler" 5349 - version = "0.22.0" 5185 + version = "0.23.0" 5350 5186 dependencies = [ 5351 5187 "anyhow", 5352 5188 "async-stream", ··· 5365 5201 5366 5202 [[package]] 5367 5203 name = "tabby-db" 5368 - version = "0.22.0" 5204 + version = "0.23.0" 5369 5205 dependencies = [ 5370 5206 "anyhow", 5371 5207 "assert_matches", ··· 5376 5212 "serde", 5377 5213 "sql_query_builder", 5378 5214 "sqlx", 5215 + "sqlx-migrate-validate", 5379 5216 "tabby-db-macros", 5380 5217 "tokio", 5381 5218 "uuid", ··· 5384 5219 5385 5220 [[package]] 5386 5221 name = "tabby-db-macros" 5387 - version = "0.22.0" 5222 + version = "0.23.0" 5388 5223 dependencies = [ 5389 5224 "quote", 5390 5225 "syn 2.0.66", ··· 5392 5227 5393 5228 [[package]] 5394 5229 name = "tabby-download" 5395 - version = "0.22.0" 5230 + version = "0.23.0" 5396 5231 dependencies = [ 5397 5232 "aim-downloader", 5398 5233 "anyhow", ··· 5404 5239 5405 5240 [[package]] 5406 5241 name = "tabby-git" 5407 - version = "0.22.0" 5242 + version = "0.23.0" 5408 5243 dependencies = [ 5409 5244 "anyhow", 5410 5245 "assert_matches", ··· 5425 5260 5426 5261 [[package]] 5427 5262 name = "tabby-index" 5428 - version = "0.22.0" 5263 + version = "0.23.0" 5429 5264 dependencies = [ 5430 5265 "anyhow", 5431 5266 "async-stream", ··· 5467 5302 5468 5303 [[package]] 5469 5304 name = "tabby-index-cli" 5470 - version = "0.22.0" 5305 + version = "0.23.0" 5471 5306 dependencies = [ 5472 5307 "anyhow", 5473 5308 "clap", ··· 5479 5314 5480 5315 [[package]] 5481 5316 name = "tabby-inference" 5482 - version = "0.22.0" 5317 + version = "0.23.0" 5483 5318 dependencies = [ 5484 5319 "anyhow", 5485 5320 "async-openai", ··· 5497 5332 5498 5333 [[package]] 5499 5334 name = "tabby-schema" 5500 - version = "0.22.0" 5335 + version = "0.23.0" 5501 5336 dependencies = [ 5502 5337 "anyhow", 5503 5338 "async-openai", ··· 5524 5359 5525 5360 [[package]] 5526 5361 name = "tabby-webserver" 5527 - version = "0.22.0" 5362 + version = "0.23.0" 5528 5363 dependencies = [ 5529 5364 "anyhow", 5530 5365 "argon2", ··· 5721 5556 "fnv", 5722 5557 "futures", 5723 5558 "humantime", 5724 - "opentelemetry", 5559 + "opentelemetry 0.18.0", 5725 5560 "pin-project", 5726 5561 "rand 0.8.5", 5727 5562 "serde", ··· 5732 5567 "tokio-serde", 5733 5568 "tokio-util", 5734 5569 "tracing", 5735 - "tracing-opentelemetry", 5570 + "tracing-opentelemetry 0.18.0", 5736 5571 ] 5737 5572 5738 5573 [[package]] ··· 5939 5774 5940 5775 [[package]] 5941 5776 name = "tokio-rustls" 5777 + version = "0.23.4" 5778 + source = "registry+https://github.com/rust-lang/crates.io-index" 5779 + checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59" 5780 + dependencies = [ 5781 + "rustls 0.20.9", 5782 + "tokio", 5783 + "webpki", 5784 + ] 5785 + 5786 + [[package]] 5787 + name = "tokio-rustls" 5942 5788 version = "0.25.0" 5943 5789 source = "registry+https://github.com/rust-lang/crates.io-index" 5944 5790 checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f" ··· 5983 5807 5984 5808 [[package]] 5985 5809 name = "tokio-stream" 5986 - version = "0.1.15" 5810 + version = "0.1.17" 5987 5811 source = "registry+https://github.com/rust-lang/crates.io-index" 5988 - checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af" 5812 + checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047" 5989 5813 dependencies = [ 5990 5814 "futures-core", 5991 5815 "pin-project-lite", ··· 6056 5880 ] 6057 5881 6058 5882 [[package]] 5883 + name = "tonic" 5884 + version = "0.12.3" 5885 + source = "registry+https://github.com/rust-lang/crates.io-index" 5886 + checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52" 5887 + dependencies = [ 5888 + "async-stream", 5889 + "async-trait", 5890 + "axum", 5891 + "base64 0.22.1", 5892 + "bytes", 5893 + "h2", 5894 + "http 1.1.0", 5895 + "http-body 1.0.0", 5896 + "http-body-util", 5897 + "hyper 1.3.1", 5898 + "hyper-timeout", 5899 + "hyper-util", 5900 + "percent-encoding", 5901 + "pin-project", 5902 + "prost", 5903 + "socket2", 5904 + "tokio", 5905 + "tokio-stream", 5906 + "tower 0.4.13", 5907 + "tower-layer", 5908 + "tower-service", 5909 + "tracing", 5910 + ] 5911 + 5912 + [[package]] 6059 5913 name = "tower" 6060 5914 version = "0.4.13" 6061 5915 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6093 5887 dependencies = [ 6094 5888 "futures-core", 6095 5889 "futures-util", 5890 + "indexmap 1.9.3", 6096 5891 "pin-project", 6097 5892 "pin-project-lite", 5893 + "rand 0.8.5", 5894 + "slab", 6098 5895 "tokio", 5896 + "tokio-util", 6099 5897 "tower-layer", 6100 5898 "tower-service", 6101 5899 "tracing", ··· 6231 6021 checksum = "21ebb87a95ea13271332df069020513ab70bdb5637ca42d6e492dc3bbbad48de" 6232 6022 dependencies = [ 6233 6023 "once_cell", 6234 - "opentelemetry", 6024 + "opentelemetry 0.18.0", 6235 6025 "tracing", 6236 6026 "tracing-core", 6237 6027 "tracing-subscriber", 6028 + ] 6029 + 6030 + [[package]] 6031 + name = "tracing-opentelemetry" 6032 + version = "0.28.0" 6033 + source = "registry+https://github.com/rust-lang/crates.io-index" 6034 + checksum = "97a971f6058498b5c0f1affa23e7ea202057a7301dbff68e968b2d578bcbd053" 6035 + dependencies = [ 6036 + "js-sys", 6037 + "once_cell", 6038 + "opentelemetry 0.27.1", 6039 + "opentelemetry_sdk 0.27.1", 6040 + "smallvec", 6041 + "tracing", 6042 + "tracing-core", 6043 + "tracing-log", 6044 + "tracing-subscriber", 6045 + "web-time", 6238 6046 ] 6239 6047 6240 6048 [[package]] ··· 6572 6344 dependencies = [ 6573 6345 "void", 6574 6346 ] 6347 + 6348 + [[package]] 6349 + name = "untrusted" 6350 + version = "0.7.1" 6351 + source = "registry+https://github.com/rust-lang/crates.io-index" 6352 + checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a" 6575 6353 6576 6354 [[package]] 6577 6355 name = "untrusted" ··· 6910 6676 ] 6911 6677 6912 6678 [[package]] 6679 + name = "webpki" 6680 + version = "0.22.4" 6681 + source = "registry+https://github.com/rust-lang/crates.io-index" 6682 + checksum = "ed63aea5ce73d0ff405984102c42de94fc55a6b75765d621c65262469b3c9b53" 6683 + dependencies = [ 6684 + "ring 0.17.8", 6685 + "untrusted 0.9.0", 6686 + ] 6687 + 6688 + [[package]] 6913 6689 name = "webpki-roots" 6914 6690 version = "0.26.3" 6915 6691 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 6996 6752 source = "registry+https://github.com/rust-lang/crates.io-index" 6997 6753 checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be" 6998 6754 dependencies = [ 6999 - "windows-core", 6755 + "windows-core 0.52.0", 6756 + "windows-targets 0.52.5", 6757 + ] 6758 + 6759 + [[package]] 6760 + name = "windows" 6761 + version = "0.57.0" 6762 + source = "registry+https://github.com/rust-lang/crates.io-index" 6763 + checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143" 6764 + dependencies = [ 6765 + "windows-core 0.57.0", 7000 6766 "windows-targets 0.52.5", 7001 6767 ] 7002 6768 ··· 7015 6761 version = "0.52.0" 7016 6762 source = "registry+https://github.com/rust-lang/crates.io-index" 7017 6763 checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" 6764 + dependencies = [ 6765 + "windows-targets 0.52.5", 6766 + ] 6767 + 6768 + [[package]] 6769 + name = "windows-core" 6770 + version = "0.57.0" 6771 + source = "registry+https://github.com/rust-lang/crates.io-index" 6772 + checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d" 6773 + dependencies = [ 6774 + "windows-implement", 6775 + "windows-interface", 6776 + "windows-result", 6777 + "windows-targets 0.52.5", 6778 + ] 6779 + 6780 + [[package]] 6781 + name = "windows-implement" 6782 + version = "0.57.0" 6783 + source = "registry+https://github.com/rust-lang/crates.io-index" 6784 + checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7" 6785 + dependencies = [ 6786 + "proc-macro2", 6787 + "quote", 6788 + "syn 2.0.66", 6789 + ] 6790 + 6791 + [[package]] 6792 + name = "windows-interface" 6793 + version = "0.57.0" 6794 + source = "registry+https://github.com/rust-lang/crates.io-index" 6795 + checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7" 6796 + dependencies = [ 6797 + "proc-macro2", 6798 + "quote", 6799 + "syn 2.0.66", 6800 + ] 6801 + 6802 + [[package]] 6803 + name = "windows-result" 6804 + version = "0.1.2" 6805 + source = "registry+https://github.com/rust-lang/crates.io-index" 6806 + checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" 7018 6807 dependencies = [ 7019 6808 "windows-targets 0.52.5", 7020 6809 ]
+2 -2
pkgs/by-name/ta/tabby/package.nix
··· 31 31 # https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/misc/ollama/default.nix 32 32 33 33 pname = "tabby"; 34 - version = "0.22.0"; 34 + version = "0.23.0"; 35 35 36 36 availableAccelerations = flatten [ 37 37 (optional cudaSupport "cuda") ··· 120 120 owner = "TabbyML"; 121 121 repo = "tabby"; 122 122 tag = "v${version}"; 123 - hash = "sha256-fzbJjoBJ6zOw1ABN9PitbW2usm4NgqVfMWSAvRAVHj0="; 123 + hash = "sha256-wIrYQqnt6Uuoxqs7QpCU+WQufk5dQuwKR3+fjF+97nM="; 124 124 fetchSubmodules = true; 125 125 }; 126 126
+3 -3
pkgs/by-name/ta/taskflow/package.nix
··· 9 9 10 10 stdenv.mkDerivation rec { 11 11 pname = "taskflow"; 12 - version = "3.8.0"; 12 + version = "3.9.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "taskflow"; 16 16 repo = "taskflow"; 17 - rev = "v${version}"; 18 - hash = "sha256-gim1QQKtzMXz8BmNg5YeN4mcveiid5MrS8IrTaTtZ1Y="; 17 + tag = "v${version}"; 18 + hash = "sha256-omon02xgf4vV7JzpLFtHgf2MXxR6JowI+pDyAswXMUY="; 19 19 }; 20 20 21 21 patches = [
+3 -3
pkgs/by-name/we/weaviate/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "weaviate"; 9 - version = "1.28.2"; 9 + version = "1.28.3"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "weaviate"; 13 13 repo = "weaviate"; 14 14 rev = "v${version}"; 15 - hash = "sha256-yIa8AHyoT1z/M/tyPtlNtSMgOhU3XyWtw9OsqrDjO7A="; 15 + hash = "sha256-PV1KRPcxhGm0q4+g36MAsAPAV1IdcAD+MjOOkDcQn3Q="; 16 16 }; 17 17 18 - vendorHash = "sha256-u1pfPsc1NuzONyuXPVNO5UcA6vekChnBkLT3MHa2xcc="; 18 + vendorHash = "sha256-OYLHHIOZWmkAxVethJNJfJOz3kDIXefu/aAUJ/rvxeQ="; 19 19 20 20 subPackages = [ "cmd/weaviate-server" ]; 21 21
+2 -2
pkgs/by-name/yu/yubikey-touch-detector/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "yubikey-touch-detector"; 14 - version = "1.12.4"; 14 + version = "1.12.5"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "maximbaz"; 18 18 repo = "yubikey-touch-detector"; 19 19 rev = version; 20 - hash = "sha256-AUy/QvNQ3d0b17wcrL3kyhzaEFgS403NR/IBXnJwWwk="; 20 + hash = "sha256-eNRwDGTNxBtDepQvf2TXCH/5fb4kRYBn80tzvI4fzME="; 21 21 }; 22 22 vendorHash = "sha256-x8Fmhsk6MtgAtLxgH/V3KusM0BXAOaSU+2HULR5boJQ="; 23 23
-1
pkgs/development/interpreters/bqn/cbqn/default.nix
··· 146 146 ]; 147 147 mainProgram = "cbqn"; 148 148 maintainers = with lib.maintainers; [ 149 - AndersonTorres 150 149 detegr 151 150 shnarazk 152 151 sternenseemann
+1 -1
pkgs/development/interpreters/dzaima-apl/default.nix
··· 75 75 description = 76 76 "APL implementation in Java" + lib.optionalString buildNativeImage ", compiled as a native image"; 77 77 license = licenses.mit; 78 - maintainers = with maintainers; [ AndersonTorres ]; 78 + maintainers = with maintainers; [ ]; 79 79 inherit (jdk.meta) platforms; 80 80 broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/dapl-native.x86_64-darwin 81 81 };
+1 -1
pkgs/development/libraries/unqlite/default.nix
··· 36 36 freely copy a database between 32-bit and 64-bit systems or between 37 37 big-endian and little-endian architectures. 38 38 ''; 39 - maintainers = with maintainers; [ AndersonTorres ]; 39 + maintainers = with maintainers; [ ]; 40 40 license = licenses.bsd2; 41 41 }; 42 42 }
+2 -2
pkgs/development/python-modules/apispec/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "apispec"; 18 - version = "6.8.0"; 18 + version = "6.8.1"; 19 19 pyproject = true; 20 20 21 21 disabled = pythonOlder "3.9"; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 - hash = "sha256-hhzKgrvAZSyprOqJaSGyVJRFgDQv3oSfhvbawazGypY="; 25 + hash = "sha256-9JFsu3vhVpY7GPWSmg5CvSNJE1g0toCoGxJDK8+qmjk="; 26 26 }; 27 27 28 28 nativeBuildInputs = [ flit-core ];
+2 -2
pkgs/development/python-modules/rapidfuzz/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "rapidfuzz"; 22 - version = "3.11.0"; 22 + version = "3.12.0"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.9"; ··· 28 28 owner = "maxbachmann"; 29 29 repo = "RapidFuzz"; 30 30 tag = "v${version}"; 31 - hash = "sha256-wsY0JCY8unLIMs01SLgQMOu9RQ0qTdPAZ71e6TigTVQ="; 31 + hash = "sha256-BNhdN6nKAIIA2PXrpvdy35udklotoBAu2ghQFNwGvWE="; 32 32 }; 33 33 34 34 postPatch = ''
+3 -3
pkgs/development/tools/analysis/cargo-tarpaulin/default.nix
··· 11 11 12 12 rustPlatform.buildRustPackage rec { 13 13 pname = "cargo-tarpaulin"; 14 - version = "0.31.4"; 14 + version = "0.31.5"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "xd009642"; 18 18 repo = "tarpaulin"; 19 19 rev = version; 20 - hash = "sha256-OMGqahssvzTGBk4HoMNnF0EtDi00xJFg6x83Qt54QME="; 20 + hash = "sha256-7RSwRKLfNEZQczMriaeXH8uMMqR5Drdmtc68RCO2xTA="; 21 21 }; 22 22 23 - cargoHash = "sha256-TNZDbuG97rHaBkMRXEFz+02RpYMznRhHdAF4Z4Vsggc="; 23 + cargoHash = "sha256-O7AhHkL59/B6cbjfyeWbbevJHxOLcQfNQ3mbLAnQwQk="; 24 24 25 25 nativeBuildInputs = [ 26 26 pkg-config
+1 -1
pkgs/games/npush/default.nix
··· 48 48 description = "Sokoban-like game"; 49 49 mainProgram = "npush"; 50 50 license = licenses.gpl2Plus; 51 - maintainers = with maintainers; [ AndersonTorres ]; 51 + maintainers = with maintainers; [ ]; 52 52 platforms = with platforms; unix; 53 53 }; 54 54 }
+1 -1
pkgs/tools/misc/dialogbox/default.nix
··· 42 42 homepage = "https://github.com/martynets/dialogbox/"; 43 43 description = "Qt-based scriptable engine providing GUI dialog boxes"; 44 44 license = licenses.gpl3Plus; 45 - maintainers = with maintainers; [ AndersonTorres ]; 45 + maintainers = with maintainers; [ ]; 46 46 platforms = platforms.unix; 47 47 mainProgram = "dialogbox"; 48 48 };
+2 -2
pkgs/tools/networking/openvpn/default.nix
··· 22 22 in 23 23 stdenv.mkDerivation (finalAttrs: { 24 24 pname = "openvpn"; 25 - version = "2.6.12"; 25 + version = "2.6.13"; 26 26 27 27 src = fetchurl { 28 28 url = "https://swupdate.openvpn.net/community/releases/openvpn-${finalAttrs.version}.tar.gz"; 29 - hash = "sha256-HGEP3etobjTxNnw0fgJ+QY4HUjoQ9NjOSiwq8vYaGSk="; 29 + hash = "sha256-GvELhpIr18mYJ8wPFR3+loQze45evbOXU5FyhBrCSmo="; 30 30 }; 31 31 32 32 nativeBuildInputs = [ pkg-config ];
+1
pkgs/top-level/aliases.nix
··· 1073 1073 pipewire-media-session = throw "pipewire-media-session is no longer maintained and has been removed. Please use Wireplumber instead."; 1074 1074 pleroma-otp = throw "'pleroma-otp' has been renamed to/replaced by 'pleroma'"; # Converted to throw 2024-10-17 1075 1075 pltScheme = racket; # just to be sure 1076 + poac = cabinpkg; # Added 2025-01-22 1076 1077 poretools = throw "poretools has been removed from nixpkgs, as it was broken and unmaintained"; # Added 2024-06-03 1077 1078 powerdns = pdns; # Added 2022-03-28 1078 1079