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

K900 495f4b96 34600670

+2995 -1669
+29 -18
doc/languages-frameworks/typst.section.md
··· 7 You can create a custom Typst environment with a selected set of packages from **Typst Universe** using the following code. It is also possible to specify a Typst package with a specific version (e.g., `cetz_0_3_0`). A package without a version number will always refer to its latest version. 8 9 ```nix 10 - typst.withPackages (p: with p; [ 11 - polylux_0_4_0 12 - cetz_0_3_0 13 - ]) 14 ``` 15 16 ### Handling Outdated Package Hashes {#typst-handling-outdated-package-hashes} ··· 18 Since **Typst Universe** does not provide a way to fetch a package with a specific hash, the package hashes in `nixpkgs` can sometimes be outdated. To resolve this issue, you can manually override the package source using the following approach: 19 20 ```nix 21 - typst.withPackages.override (old: { 22 - typstPackages = old.typstPackages.extend (_: previous: { 23 - polylux_0_4_0 = previous.polylux_0_4_0.overrideAttrs (oldPolylux: { 24 - src = oldPolylux.src.overrideAttrs { 25 - outputHash = YourUpToDatePolyluxHash; 26 - }; 27 - }); 28 - }); 29 - }) (p: with p; [ 30 - polylux_0_4_0 31 - cetz_0_3_0 32 - ]) 33 ``` 34 35 ## Custom Packages {#typst-custom-packages} ··· 39 Here's how to define a custom Typst package: 40 41 ```nix 42 - { buildTypstPackage, typstPackages, fetchzip }: 43 44 buildTypstPackage (finalAttrs: { 45 pname = "my-typst-package"; 46 version = "0.0.1"; 47 - src = fetchzip { ... }; 48 typstDeps = with typstPackages; [ cetz_0_3_0 ]; 49 }) 50 ```
··· 7 You can create a custom Typst environment with a selected set of packages from **Typst Universe** using the following code. It is also possible to specify a Typst package with a specific version (e.g., `cetz_0_3_0`). A package without a version number will always refer to its latest version. 8 9 ```nix 10 + typst.withPackages ( 11 + p: with p; [ 12 + polylux_0_4_0 13 + cetz_0_3_0 14 + ] 15 + ) 16 ``` 17 18 ### Handling Outdated Package Hashes {#typst-handling-outdated-package-hashes} ··· 20 Since **Typst Universe** does not provide a way to fetch a package with a specific hash, the package hashes in `nixpkgs` can sometimes be outdated. To resolve this issue, you can manually override the package source using the following approach: 21 22 ```nix 23 + typst.withPackages.override 24 + (old: { 25 + typstPackages = old.typstPackages.extend ( 26 + _: previous: { 27 + polylux_0_4_0 = previous.polylux_0_4_0.overrideAttrs (oldPolylux: { 28 + src = oldPolylux.src.overrideAttrs { 29 + outputHash = YourUpToDatePolyluxHash; 30 + }; 31 + }); 32 + } 33 + ); 34 + }) 35 + ( 36 + p: with p; [ 37 + polylux_0_4_0 38 + cetz_0_3_0 39 + ] 40 + ) 41 ``` 42 43 ## Custom Packages {#typst-custom-packages} ··· 47 Here's how to define a custom Typst package: 48 49 ```nix 50 + { 51 + buildTypstPackage, 52 + typstPackages, 53 + }: 54 55 buildTypstPackage (finalAttrs: { 56 pname = "my-typst-package"; 57 version = "0.0.1"; 58 + src = ./.; 59 typstDeps = with typstPackages; [ cetz_0_3_0 ]; 60 }) 61 ```
+7
lib/licenses.nix
··· 1164 fullName = "Sendmail License"; 1165 }; 1166 1167 sgi-b-20 = { 1168 spdxId = "SGI-B-2.0"; 1169 fullName = "SGI Free Software License B v2.0";
··· 1164 fullName = "Sendmail License"; 1165 }; 1166 1167 + sfl = { 1168 + fullName = "Source First License 1.1"; 1169 + url = "https://gitlab.futo.org/videostreaming/grayjay/-/blob/master/LICENSE.md"; 1170 + free = false; 1171 + redistributable = true; 1172 + }; 1173 + 1174 sgi-b-20 = { 1175 spdxId = "SGI-B-2.0"; 1176 fullName = "SGI Free Software License B v2.0";
+10 -6
maintainers/maintainer-list.nix
··· 4503 githubId = 3956062; 4504 name = "Simon Lackerbauer"; 4505 }; 4506 cimm = { 4507 email = "8k9ft8m5gv@astil.be"; 4508 github = "cimm"; ··· 4940 github = "contrun"; 4941 githubId = 32609395; 4942 name = "B YI"; 4943 - }; 4944 - copumpkin = { 4945 - email = "pumpkingod@gmail.com"; 4946 - github = "copumpkin"; 4947 - githubId = 2623; 4948 - name = "Dan Peebles"; 4949 }; 4950 corbanr = { 4951 email = "corban@raunco.co"; ··· 21397 email = "emre@cebi.io"; 21398 github = "samemrecebi"; 21399 githubId = 64419750; 21400 }; 21401 samhug = { 21402 email = "s@m-h.ug";
··· 4503 githubId = 3956062; 4504 name = "Simon Lackerbauer"; 4505 }; 4506 + cilki = { 4507 + github = "cilki"; 4508 + githubId = 10459406; 4509 + name = "Tyler Cook"; 4510 + }; 4511 cimm = { 4512 email = "8k9ft8m5gv@astil.be"; 4513 github = "cimm"; ··· 4945 github = "contrun"; 4946 githubId = 32609395; 4947 name = "B YI"; 4948 }; 4949 corbanr = { 4950 email = "corban@raunco.co"; ··· 21396 email = "emre@cebi.io"; 21397 github = "samemrecebi"; 21398 githubId = 64419750; 21399 + }; 21400 + samfundev = { 21401 + name = "samfundev"; 21402 + github = "samfundev"; 21403 + githubId = 6759716; 21404 }; 21405 samhug = { 21406 email = "s@m-h.ug";
+22 -4
maintainers/scripts/kde/generate-sources.py
··· 1 #!/usr/bin/env nix-shell 2 - #!nix-shell -i python3 -p "python3.withPackages(ps: [ ps.beautifulsoup4 ps.click ps.httpx ps.jinja2 ps.packaging ps.pyyaml ])" 3 import base64 4 import binascii 5 import json 6 import pathlib 7 - from typing import Optional 8 from urllib.parse import urljoin, urlparse 9 10 import bs4 ··· 30 {{ p }} = callPackage ./{{ p }} { }; 31 {%- endfor %} 32 } 33 - '''.strip()); 34 35 def to_sri(hash): 36 raw = binascii.unhexlify(hash) ··· 65 type=str, 66 default=None, 67 ) 68 - def main(set: str, version: str, nixpkgs: pathlib.Path, sources_url: Optional[str]): 69 root_dir = nixpkgs / "pkgs/kde" 70 set_dir = root_dir / set 71 generated_dir = root_dir / "generated" ··· 119 120 pkg_dir = set_dir / project_name 121 pkg_file = pkg_dir / "default.nix" 122 if not pkg_file.exists(): 123 print(f"Generated new package: {set}/{project_name}") 124 pkg_dir.mkdir(parents=True, exist_ok=True)
··· 1 #!/usr/bin/env nix-shell 2 + #!nix-shell -i python3 -p "python3.withPackages(ps: [ ps.beautifulsoup4 ps.click ps.httpx ps.jinja2 ps.packaging ps.pyyaml ])" nix-update 3 import base64 4 import binascii 5 import json 6 import pathlib 7 + import subprocess 8 from urllib.parse import urljoin, urlparse 9 10 import bs4 ··· 30 {{ p }} = callPackage ./{{ p }} { }; 31 {%- endfor %} 32 } 33 + '''.strip()) 34 + 35 + PROJECTS_WITH_RUST = { 36 + "akonadi-search", 37 + "angelfish", 38 + "kdepim-addons", 39 + } 40 41 def to_sri(hash): 42 raw = binascii.unhexlify(hash) ··· 71 type=str, 72 default=None, 73 ) 74 + def main(set: str, version: str, nixpkgs: pathlib.Path, sources_url: str | None): 75 root_dir = nixpkgs / "pkgs/kde" 76 set_dir = root_dir / set 77 generated_dir = root_dir / "generated" ··· 125 126 pkg_dir = set_dir / project_name 127 pkg_file = pkg_dir / "default.nix" 128 + 129 + if project_name in PROJECTS_WITH_RUST: 130 + print(f"Updating cargoDeps hash for {set}/{project_name}...") 131 + subprocess.run([ 132 + "nix-update", 133 + f"kdePackages.{project_name}", 134 + "--version", 135 + "skip", 136 + "--override-filename", 137 + pkg_file 138 + ]) 139 + 140 if not pkg_file.exists(): 141 print(f"Generated new package: {set}/{project_name}") 142 pkg_dir.mkdir(parents=True, exist_ok=True)
+2 -3
nixos/lib/make-disk-image.nix
··· 1 /* 2 Technical details 3 4 - `make-disk-image` has a bit of magic to minimize the amount of work to do in a virtual machine. 5 6 It relies on the [LKL (Linux Kernel Library) project](https://github.com/lkl/linux) which provides Linux kernel as userspace library. 7 ··· 447 mkdir -p $root 448 449 # Copy arbitrary other files into the image 450 - # Semi-shamelessly copied from make-etc.sh. I (@copumpkin) shall factor this stuff out as part of 451 - # https://github.com/NixOS/nixpkgs/issues/23052. 452 set -f 453 sources_=(${lib.concatStringsSep " " sources}) 454 targets_=(${lib.concatStringsSep " " targets})
··· 1 /* 2 Technical details 3 4 + `make-disk-image` has a bit of magic to minimize the amount of work to do in a virtual machine. It also might arguably have too much, or at least too specific magic, so please consider to work towards the effort of unifying our image builders, as outlined in https://github.com/NixOS/nixpkgs/issues/324817 before adding more. 5 6 It relies on the [LKL (Linux Kernel Library) project](https://github.com/lkl/linux) which provides Linux kernel as userspace library. 7 ··· 447 mkdir -p $root 448 449 # Copy arbitrary other files into the image 450 + # Semi-shamelessly copied from make-etc.sh. 451 set -f 452 sources_=(${lib.concatStringsSep " " sources}) 453 targets_=(${lib.concatStringsSep " " targets})
+2 -2
nixos/modules/services/backup/restic-rest-server.nix
··· 90 ExecStart = '' 91 ${cfg.package}/bin/rest-server \ 92 --path ${cfg.dataDir} \ 93 - --htpasswd-file ${cfg.htpasswd-file} \ 94 ${lib.optionalString cfg.appendOnly "--append-only"} \ 95 ${lib.optionalString cfg.privateRepos "--private-repos"} \ 96 ${lib.optionalString cfg.prometheus "--prometheus"} \ ··· 119 ProtectControlGroups = true; 120 PrivateDevices = true; 121 ReadWritePaths = [ cfg.dataDir ]; 122 - ReadOnlyPaths = [ cfg.htpasswd-file ]; 123 RemoveIPC = true; 124 RestrictAddressFamilies = "none"; 125 RestrictNamespaces = true;
··· 90 ExecStart = '' 91 ${cfg.package}/bin/rest-server \ 92 --path ${cfg.dataDir} \ 93 + ${lib.optionalString (cfg.htpasswd-file != null) "--htpasswd-file ${cfg.htpasswd-file}"} \ 94 ${lib.optionalString cfg.appendOnly "--append-only"} \ 95 ${lib.optionalString cfg.privateRepos "--private-repos"} \ 96 ${lib.optionalString cfg.prometheus "--prometheus"} \ ··· 119 ProtectControlGroups = true; 120 PrivateDevices = true; 121 ReadWritePaths = [ cfg.dataDir ]; 122 + ReadOnlyPaths = lib.optional (cfg.htpasswd-file != null) cfg.htpasswd-file; 123 RemoveIPC = true; 124 RestrictAddressFamilies = "none"; 125 RestrictNamespaces = true;
+8 -8
pkgs/applications/editors/vscode/vscode.nix
··· 36 37 sha256 = 38 { 39 - x86_64-linux = "0hb1rmrrd7zjihrl080h7jf4dprpr7mvm3ykv13mg0xmmv0d7pww"; 40 - x86_64-darwin = "0bf69y7xxn499r35zxliqx0jvhyd11b46p5a87w62g90q4kcald8"; 41 - aarch64-linux = "05zjk3l05lxh21anxxds6fn98fxlkrak37sz79jg50cxrpn5jvxg"; 42 - aarch64-darwin = "1sjvj4d0d3mcjczb1sjia6gl34vkr91z7jxbyqbf5c88j3zybvw5"; 43 - armv7l-linux = "1m7g179hlz2kri0pqsaigdyfnkkv4xwaxmxrbdpxh0sjb2imv8x2"; 44 } 45 .${system} or throwSystem; 46 in 47 callPackage ./generic.nix rec { 48 # Please backport all compatible updates to the stable release. 49 # This is important for the extension ecosystem. 50 - version = "1.99.2"; 51 pname = "vscode" + lib.optionalString isInsiders "-insiders"; 52 53 # This is used for VS Code - Remote SSH test 54 - rev = "4949701c880d4bdb949e3c0e6b400288da7f474b"; 55 56 executableName = "code" + lib.optionalString isInsiders "-insiders"; 57 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 75 src = fetchurl { 76 name = "vscode-server-${rev}.tar.gz"; 77 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 78 - sha256 = "0rd5j7n0cc3srn8rcm3ia1knp6zwwjvbjw4067xv0nvb8ilalssw"; 79 }; 80 stdenv = stdenvNoCC; 81 };
··· 36 37 sha256 = 38 { 39 + x86_64-linux = "0d9qfifxslwkyv9v42y2h7nbqndq5w16z08qar4vly1hnjnmzzxl"; 40 + x86_64-darwin = "1yyfkgif0nyhgb28wn1wmdq9wyzxybgdfp8j9nknh0nmvmf1r9w6"; 41 + aarch64-linux = "05xj9fswgf24l9mx98hcapzq90820dwwp9mskbbzai3kxy915yqx"; 42 + aarch64-darwin = "0a41szz9gljf31pq5czqwiyrxms5cf1x1058rsacaihvx8vn38ya"; 43 + armv7l-linux = "0iq3y8vj4gm20bxkcrsrnb3g0nf5lg5mpb1bxrg2cy4dgaxjl170"; 44 } 45 .${system} or throwSystem; 46 in 47 callPackage ./generic.nix rec { 48 # Please backport all compatible updates to the stable release. 49 # This is important for the extension ecosystem. 50 + version = "1.99.3"; 51 pname = "vscode" + lib.optionalString isInsiders "-insiders"; 52 53 # This is used for VS Code - Remote SSH test 54 + rev = "17baf841131aa23349f217ca7c570c76ee87b957"; 55 56 executableName = "code" + lib.optionalString isInsiders "-insiders"; 57 longName = "Visual Studio Code" + lib.optionalString isInsiders " - Insiders"; ··· 75 src = fetchurl { 76 name = "vscode-server-${rev}.tar.gz"; 77 url = "https://update.code.visualstudio.com/commit:${rev}/server-linux-x64/stable"; 78 + sha256 = "02b2hbdhambi4viyxsxsdayj294g45i49n5yj828nwigw71asysv"; 79 }; 80 stdenv = stdenvNoCC; 81 };
+6 -6
pkgs/applications/editors/vscode/vscodium.nix
··· 26 27 hash = 28 { 29 - x86_64-linux = "sha256-80tLW2fzZg5DsvQJoMGSfwsL5myrv1gRq9YjPNJicJw="; 30 - x86_64-darwin = "sha256-kADaLEaa+VHJlcYCuUOudDskgB4sEUDNQhKBjAEE5O0="; 31 - aarch64-linux = "sha256-vDceHu5UiJCVrSKQ8CgbEIiKqzBEz16/BqPSKyiGwZs="; 32 - aarch64-darwin = "sha256-zY+dHurXWqY23yq6ucXPtJZxX0t30KvF5C3eq/BBMkE="; 33 - armv7l-linux = "sha256-3l+Xap9iDwXcj7AH3tJrvkbEbF4gaE5pPHrDgB+zZIk="; 34 } 35 .${system} or throwSystem; 36 ··· 41 42 # Please backport all compatible updates to the stable release. 43 # This is important for the extension ecosystem. 44 - version = "1.99.22418"; 45 pname = "vscodium"; 46 47 executableName = "codium";
··· 26 27 hash = 28 { 29 + x86_64-linux = "sha256-NgbN8hqayBG/5bFS+2f+Jmx8a1RSjHJG8zvvJvtOLGs="; 30 + x86_64-darwin = "sha256-Gt8K3sL81cxeldiG/mNXFzQG1/M2D7Klj/scCAa+RgI="; 31 + aarch64-linux = "sha256-YXKiYVHwo5Nn8e8JGtuuKcXx4JgxfnDr10rvwEy2m3Y="; 32 + aarch64-darwin = "sha256-uBimHECN3qvyHvmGDleR228ms5OBlBFPHafRueUfzBU="; 33 + armv7l-linux = "sha256-DacykoqnE4ZFNn8t5i93k3k/OK0H9krWzw5YoX4+rrM="; 34 } 35 .${system} or throwSystem; 36 ··· 41 42 # Please backport all compatible updates to the stable release. 43 # This is important for the extension ecosystem. 44 + version = "1.99.32562"; 45 pname = "vscodium"; 46 47 executableName = "codium";
+3 -1
pkgs/applications/emulators/zsnes/2.x.nix
··· 6 libGL, 7 libGLU, 8 libpng, 9 nasm, 10 pkg-config, 11 zlib, ··· 18 src = fetchFromGitHub { 19 owner = "xyproto"; 20 repo = "zsnes"; 21 - rev = finalAttrs.version; 22 hash = "sha256-Xz+9YgMpnHyno7vP67aut4tIyG/gTn7SnU2FO2QMND0="; 23 }; 24 ··· 32 libGL 33 libGLU 34 libpng 35 zlib 36 ]; 37
··· 6 libGL, 7 libGLU, 8 libpng, 9 + libX11, 10 nasm, 11 pkg-config, 12 zlib, ··· 19 src = fetchFromGitHub { 20 owner = "xyproto"; 21 repo = "zsnes"; 22 + tag = finalAttrs.version; 23 hash = "sha256-Xz+9YgMpnHyno7vP67aut4tIyG/gTn7SnU2FO2QMND0="; 24 }; 25 ··· 33 libGL 34 libGLU 35 libpng 36 + libX11 37 zlib 38 ]; 39
-1
pkgs/applications/networking/cluster/minikube/default.nix
··· 80 license = licenses.asl20; 81 maintainers = with maintainers; [ 82 ebzzry 83 - copumpkin 84 vdemeester 85 atkinschang 86 Chili-Man
··· 80 license = licenses.asl20; 81 maintainers = with maintainers; [ 82 ebzzry 83 vdemeester 84 atkinschang 85 Chili-Man
+3 -3
pkgs/applications/radio/soapysdr/default.nix
··· 18 stdenv.mkDerivation (finalAttrs: { 19 pname = "soapysdr"; 20 # Don't forget to change passthru.abiVersion 21 - version = "0.8.1-unstable-2024-12-22"; 22 23 src = fetchFromGitHub { 24 owner = "pothosware"; ··· 26 27 # Instead of applying several patches for Python 3.12 compat, just take the latest, from: 28 # use old get python lib for v2 (#437) 29 - rev = "309335ec6a52eb712387ed025d705a3c0f7a1e24"; 30 - hash = "sha256-a9414gX4fUAPQaKKqrWgSlFHZH0BWqbgHzhVCKnIn2M="; 31 }; 32 33 nativeBuildInputs = [
··· 18 stdenv.mkDerivation (finalAttrs: { 19 pname = "soapysdr"; 20 # Don't forget to change passthru.abiVersion 21 + version = "0.8.1-unstable-2025-03-30-03"; 22 23 src = fetchFromGitHub { 24 owner = "pothosware"; ··· 26 27 # Instead of applying several patches for Python 3.12 compat, just take the latest, from: 28 # use old get python lib for v2 (#437) 29 + rev = "fbf9f3c328868f46029284716df49095ab7b99a6"; 30 + hash = "sha256-W4915c6hV/GR5PZRRXZJW3ERsZmQQQ08EA9wYp2tAVk="; 31 }; 32 33 nativeBuildInputs = [
-46
pkgs/applications/science/biology/iv/default.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - neuron-version, 6 - libX11, 7 - libXext, 8 - patchelf, 9 - }: 10 - 11 - stdenv.mkDerivation rec { 12 - pname = "iv"; 13 - version = "19"; 14 - 15 - src = fetchurl { 16 - url = "https://www.neuron.yale.edu/ftp/neuron/versions/v${neuron-version}/iv-${version}.tar.gz"; 17 - sha256 = "07a3g8zzay4h0bls7fh89dd0phn7s34c2g15pij6dsnwpmjg06yx"; 18 - }; 19 - 20 - nativeBuildInputs = [ patchelf ]; 21 - buildInputs = [ libXext ]; 22 - propagatedBuildInputs = [ libX11 ]; 23 - 24 - hardeningDisable = [ "format" ]; 25 - 26 - postInstall = 27 - '' 28 - for dir in $out/*; do # */ 29 - if [ -d $dir/lib ]; then 30 - mv $dir/* $out # */ 31 - rmdir $dir 32 - break 33 - fi 34 - done 35 - '' 36 - + lib.optionalString stdenv.hostPlatform.isLinux '' 37 - patchelf --add-needed ${libX11}/lib/libX11.so $out/lib/libIVhines.so 38 - ''; 39 - 40 - meta = with lib; { 41 - description = "InterViews graphical library for Neuron"; 42 - license = licenses.bsd3; 43 - homepage = "http://www.neuron.yale.edu/neuron"; 44 - platforms = platforms.all; 45 - }; 46 - }
···
-1
pkgs/applications/virtualization/lkl/default.nix
··· 116 platforms = platforms.linux; # Darwin probably works too but I haven't tested it 117 license = licenses.gpl2; 118 maintainers = with maintainers; [ 119 - copumpkin 120 raitobezarius 121 ]; 122 };
··· 116 platforms = platforms.linux; # Darwin probably works too but I haven't tested it 117 license = licenses.gpl2; 118 maintainers = with maintainers; [ 119 raitobezarius 120 ]; 121 };
+2 -2
pkgs/by-name/al/alt-ergo/package.nix
··· 8 9 let 10 pname = "alt-ergo"; 11 - version = "2.6.0"; 12 13 src = fetchurl { 14 url = "https://github.com/OCamlPro/alt-ergo/releases/download/v${version}/alt-ergo-${version}.tbz"; 15 - hash = "sha256-EmkxGvJSeKRmiSuoeMyIi6WfF39T3QPxKixiOwP8834="; 16 }; 17 in 18
··· 8 9 let 10 pname = "alt-ergo"; 11 + version = "2.6.1"; 12 13 src = fetchurl { 14 url = "https://github.com/OCamlPro/alt-ergo/releases/download/v${version}/alt-ergo-${version}.tbz"; 15 + hash = "sha256-31YEWjr3n7z70d7q8JAS1bw5C0wiI+HZwlwRwwHZ7ro="; 16 }; 17 in 18
-1
pkgs/by-name/am/amazon-ssm-agent/package.nix
··· 176 license = licenses.asl20; 177 platforms = platforms.unix; 178 maintainers = with maintainers; [ 179 - copumpkin 180 manveru 181 anthonyroussel 182 arianvp
··· 176 license = licenses.asl20; 177 platforms = platforms.unix; 178 maintainers = with maintainers; [ 179 manveru 180 anthonyroussel 181 arianvp
+9 -6
pkgs/by-name/az/az-pim-cli/package.nix
··· 5 installShellFiles, 6 stdenv, 7 buildPackages, 8 - versionCheckHook, 9 nix-update-script, 10 }: 11 buildGoModule (finalAttrs: { 12 pname = "az-pim-cli"; ··· 37 '' 38 ); 39 40 - doInstallCheck = true; 41 - nativeInstallCheck = [ versionCheckHook ]; 42 - versionCheckProgramArg = "version"; 43 - 44 - passthru.updateScript = nix-update-script { }; 45 46 meta = { 47 description = "List and activate Azure Entra ID Privileged Identity Management roles from the CLI";
··· 5 installShellFiles, 6 stdenv, 7 buildPackages, 8 nix-update-script, 9 + testers, 10 + az-pim-cli, 11 }: 12 buildGoModule (finalAttrs: { 13 pname = "az-pim-cli"; ··· 38 '' 39 ); 40 41 + passthru = { 42 + updateScript = nix-update-script { }; 43 + tests.version = testers.testVersion { 44 + command = "HOME=$TMPDIR az-pim-cli --version"; 45 + package = az-pim-cli; 46 + }; 47 + }; 48 49 meta = { 50 description = "List and activate Azure Entra ID Privileged Identity Management roles from the CLI";
+23 -7
pkgs/by-name/be/bemenu/package.nix
··· 9 harfbuzz, 10 pkg-config, 11 scdoc, 12 ncursesSupport ? true, 13 ncurses, 14 - waylandSupport ? true, 15 wayland, 16 wayland-protocols, 17 wayland-scanner, 18 - x11Support ? true, 19 xorg, 20 }: 21 ··· 30 hash = "sha256-0vpqJ2jydTt6aVni0ma0g+80PFz+C4xJ5M77sMODkSg="; 31 }; 32 33 strictDeps = true; 34 - nativeBuildInputs = [ 35 - pkg-config 36 - scdoc 37 - ] ++ lib.optionals waylandSupport [ wayland-scanner ]; 38 39 buildInputs = 40 [ ··· 66 ++ lib.optional waylandSupport "wayland" 67 ++ lib.optional x11Support "x11"; 68 69 meta = with lib; { 70 homepage = "https://github.com/Cloudef/bemenu"; 71 description = "Dynamic menu library and client program inspired by dmenu"; 72 license = licenses.gpl3Plus; 73 maintainers = with maintainers; [ crertel ]; 74 mainProgram = "bemenu"; 75 - platforms = with platforms; linux; 76 }; 77 })
··· 9 harfbuzz, 10 pkg-config, 11 scdoc, 12 + makeWrapper, 13 ncursesSupport ? true, 14 ncurses, 15 + waylandSupport ? stdenv.hostPlatform.isLinux, 16 wayland, 17 wayland-protocols, 18 wayland-scanner, 19 + x11Support ? stdenv.hostPlatform.isLinux, 20 xorg, 21 }: 22 ··· 31 hash = "sha256-0vpqJ2jydTt6aVni0ma0g+80PFz+C4xJ5M77sMODkSg="; 32 }; 33 34 + postPatch = lib.optionalString stdenv.hostPlatform.isDarwin '' 35 + substituteInPlace GNUmakefile --replace '-soname' '-install_name' 36 + ''; 37 + 38 strictDeps = true; 39 + nativeBuildInputs = 40 + [ 41 + pkg-config 42 + scdoc 43 + ] 44 + ++ lib.optional stdenv.hostPlatform.isDarwin makeWrapper 45 + ++ lib.optional waylandSupport wayland-scanner; 46 47 buildInputs = 48 [ ··· 74 ++ lib.optional waylandSupport "wayland" 75 ++ lib.optional x11Support "x11"; 76 77 + postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' 78 + so="$(find "$out/lib" -name "libbemenu.so.[0-9]" -print -quit)" 79 + for f in "$out/bin/"*; do 80 + install_name_tool -change "$(basename $so)" "$so" $f 81 + wrapProgram $f --set BEMENU_BACKEND curses 82 + done 83 + ''; 84 + 85 meta = with lib; { 86 homepage = "https://github.com/Cloudef/bemenu"; 87 description = "Dynamic menu library and client program inspired by dmenu"; 88 license = licenses.gpl3Plus; 89 maintainers = with maintainers; [ crertel ]; 90 mainProgram = "bemenu"; 91 + platforms = with platforms; linux ++ darwin; 92 }; 93 })
+5 -5
pkgs/by-name/bu/bun/package.nix
··· 17 }: 18 19 stdenvNoCC.mkDerivation rec { 20 - version = "1.2.8"; 21 pname = "bun"; 22 23 src = ··· 86 sources = { 87 "aarch64-darwin" = fetchurl { 88 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; 89 - hash = "sha256-ioBqQKA3Mp5PtVlFcmf2xOvoIEy7rNsD85s0m+1ao1U="; 90 }; 91 "aarch64-linux" = fetchurl { 92 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; 93 - hash = "sha256-Iwg/JW8qHRVcRW4S45xR4x3EG5fGNCDZkV9Du4ar6rE="; 94 }; 95 "x86_64-darwin" = fetchurl { 96 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64-baseline.zip"; 97 - hash = "sha256-vYcbm19aR540MrO4YFQgeSwNOKLot8/H03i0NP8c2og="; 98 }; 99 "x86_64-linux" = fetchurl { 100 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; 101 - hash = "sha256-QrSLNmdguYb+HWqLE8VwbSZzCDmoV3eQzS6PKHmenzE="; 102 }; 103 }; 104 updateScript = writeShellScript "update-bun" ''
··· 17 }: 18 19 stdenvNoCC.mkDerivation rec { 20 + version = "1.2.10"; 21 pname = "bun"; 22 23 src = ··· 86 sources = { 87 "aarch64-darwin" = fetchurl { 88 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-aarch64.zip"; 89 + hash = "sha256-B4le8PtmEkm4awtyO2WxzEeQx/NoW2PNqQEisAKZlyw="; 90 }; 91 "aarch64-linux" = fetchurl { 92 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-aarch64.zip"; 93 + hash = "sha256-VFkv0CN+PskaKTPf8BXhWniYnZcjQELn1TNKTArVBgM="; 94 }; 95 "x86_64-darwin" = fetchurl { 96 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-darwin-x64-baseline.zip"; 97 + hash = "sha256-wkFtHbo9P80XYa1ytpXaUPFElJbGrQNeadQkp4ZEEUQ="; 98 }; 99 "x86_64-linux" = fetchurl { 100 url = "https://github.com/oven-sh/bun/releases/download/bun-v${version}/bun-linux-x64.zip"; 101 + hash = "sha256-aKFU/xvpaFG00ah8xRl/An74Crea+j1FhxUPrlw0w24="; 102 }; 103 }; 104 updateScript = writeShellScript "update-bun" ''
+3 -3
pkgs/by-name/ca/cargo-tauri/package.nix
··· 13 14 rustPlatform.buildRustPackage rec { 15 pname = "tauri"; 16 - version = "2.4.1"; 17 18 src = fetchFromGitHub { 19 owner = "tauri-apps"; 20 repo = "tauri"; 21 tag = "tauri-cli-v${version}"; 22 - hash = "sha256-tUa3Hb2pDqjcQs8isu1PxI5nx4rUzB/rOep2hDsun1Q="; 23 }; 24 25 useFetchCargoVendor = true; 26 - cargoHash = "sha256-nwrKeCKrzwDOdRwkkuRMR91IbtPRxnSrJFyEW0W+1wA="; 27 28 nativeBuildInputs = [ pkg-config ]; 29
··· 13 14 rustPlatform.buildRustPackage rec { 15 pname = "tauri"; 16 + version = "2.5.0"; 17 18 src = fetchFromGitHub { 19 owner = "tauri-apps"; 20 repo = "tauri"; 21 tag = "tauri-cli-v${version}"; 22 + hash = "sha256-ut5Etn5yf4X3NvFa5JCRH2sQGnC/xzaRhALoyxdjy2k="; 23 }; 24 25 useFetchCargoVendor = true; 26 + cargoHash = "sha256-1YLpK2frSmdCj5aksuZhnHkAZdwHX/ZuVKXyqVJel/s="; 27 28 nativeBuildInputs = [ pkg-config ]; 29
-46
pkgs/by-name/ce/centerim/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - gnused, 6 - openssl, 7 - curl, 8 - ncurses, 9 - libjpeg, 10 - withGpg ? true, 11 - gpgme ? null, 12 - }: 13 - 14 - stdenv.mkDerivation rec { 15 - version = "5.0.1"; 16 - pname = "centerim5"; 17 - 18 - src = fetchurl { 19 - url = "http://centerim.org/download/cim5/${pname}-${version}.tar.gz"; 20 - sha256 = "0viz86jflp684vfginhl6aaw4gh2qvalc25anlwljjl3kkmibklk"; 21 - }; 22 - 23 - CXXFLAGS = "-std=gnu++98"; 24 - 25 - buildInputs = [ 26 - openssl 27 - curl 28 - ncurses 29 - libjpeg 30 - ] ++ lib.optional withGpg gpgme; 31 - 32 - preConfigure = '' 33 - ${gnused}/bin/sed -i '1,1i#include <stdio.h>' libicq2000/libicq2000/sigslot.h 34 - ''; 35 - 36 - configureFlags = [ 37 - "--with-openssl=${openssl.dev}" 38 - ]; 39 - 40 - meta = { 41 - homepage = "https://www.centerim.org/"; 42 - description = "Fork of CenterICQ, a curses instant messaging program"; 43 - license = lib.licenses.gpl2Plus; 44 - platforms = with lib.platforms; linux; 45 - }; 46 - }
···
+2 -2
pkgs/by-name/ch/changedetection-io/package.nix
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "changedetection-io"; 9 - version = "0.49.13"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "dgtlmoon"; 14 repo = "changedetection.io"; 15 tag = version; 16 - hash = "sha256-X4MLqDSjp0zAs652G4CaRjeksagun+AlLXy4MxVyTJ8="; 17 }; 18 19 pythonRelaxDeps = true;
··· 6 7 python3.pkgs.buildPythonApplication rec { 8 pname = "changedetection-io"; 9 + version = "0.49.4"; 10 format = "setuptools"; 11 12 src = fetchFromGitHub { 13 owner = "dgtlmoon"; 14 repo = "changedetection.io"; 15 tag = version; 16 + hash = "sha256-EmtJ8XXPb75W4VPj4Si9fdzVLDKVfm+8P6UZZlMpMdI="; 17 }; 18 19 pythonRelaxDeps = true;
+3 -3
pkgs/by-name/cl/clojure-lsp/package.nix
··· 10 11 buildGraalvmNativeImage rec { 12 pname = "clojure-lsp"; 13 - version = "2025.03.07-17.42.36"; 14 15 src = fetchFromGitHub { 16 owner = "clojure-lsp"; 17 repo = "clojure-lsp"; 18 rev = version; 19 - hash = "sha256-3CKY3t2NWGAQNWYhmyiq3IJDMp81Q0LDCrS23XJeIys="; 20 }; 21 22 jar = fetchurl { 23 url = "https://github.com/clojure-lsp/clojure-lsp/releases/download/${version}/clojure-lsp-standalone.jar"; 24 - hash = "sha256-ZxUSIHUTJW2TtRZiESKAnuBOS7s2UwzqpTTgAxjkR7Q="; 25 }; 26 27 extraNativeImageBuildArgs = [
··· 10 11 buildGraalvmNativeImage rec { 12 pname = "clojure-lsp"; 13 + version = "2025.03.27-20.21.36"; 14 15 src = fetchFromGitHub { 16 owner = "clojure-lsp"; 17 repo = "clojure-lsp"; 18 rev = version; 19 + hash = "sha256-xS/WVTJFCdktYxBvey855PW5Heqlx4EhpDAMHQ5Bj5M="; 20 }; 21 22 jar = fetchurl { 23 url = "https://github.com/clojure-lsp/clojure-lsp/releases/download/${version}/clojure-lsp-standalone.jar"; 24 + hash = "sha256-g8jX+41gojvoJHV/xMcP+4ROc9LewCUTuDTQcpHQ6+E="; 25 }; 26 27 extraNativeImageBuildArgs = [
+1
pkgs/by-name/co/codechecker/package.nix
··· 123 felixsinger 124 ]; 125 mainProgram = "CodeChecker"; 126 }; 127 }
··· 123 felixsinger 124 ]; 125 mainProgram = "CodeChecker"; 126 + platforms = platforms.darwin ++ platforms.linux; 127 }; 128 }
+1 -1
pkgs/by-name/co/commonsBcel/package.nix
··· 23 homepage = "https://commons.apache.org/proper/commons-bcel/"; 24 description = "Gives users a convenient way to analyze, create, and manipulate (binary) Java class files"; 25 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 26 - maintainers = with lib.maintainers; [ copumpkin ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix; 29 };
··· 23 homepage = "https://commons.apache.org/proper/commons-bcel/"; 24 description = "Gives users a convenient way to analyze, create, and manipulate (binary) Java class files"; 25 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 26 + maintainers = [ ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix; 29 };
+1 -1
pkgs/by-name/co/commonsCompress/package.nix
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-compress"; 24 description = "Allows manipulation of ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE and Z files"; 25 - maintainers = with lib.maintainers; [ copumpkin ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-compress"; 24 description = "Allows manipulation of ar, cpio, Unix dump, tar, zip, gzip, XZ, Pack200, bzip2, 7z, arj, lzma, snappy, DEFLATE and Z files"; 25 + maintainers = [ ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
+1 -1
pkgs/by-name/co/commonsFileUpload/package.nix
··· 21 meta = { 22 homepage = "https://commons.apache.org/proper/commons-fileupload"; 23 description = "Makes it easy to add robust, high-performance, file upload capability to your servlets and web applications"; 24 - maintainers = with lib.maintainers; [ copumpkin ]; 25 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 26 license = lib.licenses.asl20; 27 platforms = with lib.platforms; unix;
··· 21 meta = { 22 homepage = "https://commons.apache.org/proper/commons-fileupload"; 23 description = "Makes it easy to add robust, high-performance, file upload capability to your servlets and web applications"; 24 + maintainers = [ ]; 25 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 26 license = lib.licenses.asl20; 27 platforms = with lib.platforms; unix;
+1 -1
pkgs/by-name/co/commonsIo/package.nix
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-io"; 24 description = "Library of utilities to assist with developing IO functionality"; 25 - maintainers = with lib.maintainers; [ copumpkin ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-io"; 24 description = "Library of utilities to assist with developing IO functionality"; 25 + maintainers = [ ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
+1 -1
pkgs/by-name/co/commonsLang/package.nix
··· 25 description = "Provides additional methods to manipulate standard Java library classes"; 26 homepage = "https://commons.apache.org/proper/commons-lang"; 27 license = lib.licenses.asl20; 28 - maintainers = with lib.maintainers; [ copumpkin ]; 29 platforms = with lib.platforms; unix; 30 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 31 };
··· 25 description = "Provides additional methods to manipulate standard Java library classes"; 26 homepage = "https://commons.apache.org/proper/commons-lang"; 27 license = lib.licenses.asl20; 28 + maintainers = [ ]; 29 platforms = with lib.platforms; unix; 30 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 31 };
+1 -1
pkgs/by-name/co/commonsMath/package.nix
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-math/"; 24 description = "Library of lightweight, self-contained mathematics and statistics components"; 25 - maintainers = with lib.maintainers; [ copumpkin ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
··· 22 meta = { 23 homepage = "https://commons.apache.org/proper/commons-math/"; 24 description = "Library of lightweight, self-contained mathematics and statistics components"; 25 + maintainers = [ ]; 26 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; 27 license = lib.licenses.asl20; 28 platforms = with lib.platforms; unix;
+1 -1
pkgs/by-name/cr/createrepo_c/package.nix
··· 65 homepage = "https://rpm-software-management.github.io/createrepo_c/"; 66 license = licenses.gpl2Plus; 67 platforms = platforms.unix; 68 - maintainers = with maintainers; [ copumpkin ]; 69 }; 70 }
··· 65 homepage = "https://rpm-software-management.github.io/createrepo_c/"; 66 license = licenses.gpl2Plus; 67 platforms = platforms.unix; 68 + maintainers = [ ]; 69 }; 70 }
+2 -2
pkgs/by-name/dc/dcgm/package.nix
··· 6 catch2, 7 cmake, 8 ninja, 9 - cudaPackages_11_8, 10 cudaPackages_12, 11 boost, 12 fmt_9, ··· 24 # The runtime closure, thankfully, is quite small as it does not 25 # include the CUDA libraries. 26 cudaPackageSets = [ 27 - cudaPackages_11_8 28 cudaPackages_12 29 ]; 30
··· 6 catch2, 7 cmake, 8 ninja, 9 + cudaPackages_11, 10 cudaPackages_12, 11 boost, 12 fmt_9, ··· 24 # The runtime closure, thankfully, is quite small as it does not 25 # include the CUDA libraries. 26 cudaPackageSets = [ 27 + cudaPackages_11 28 cudaPackages_12 29 ]; 30
+20 -21
pkgs/by-name/de/deno/package.nix
··· 5 fetchFromGitHub, 6 rustPlatform, 7 cmake, 8 protobuf, 9 installShellFiles, 10 librusty_v8 ? callPackage ./librusty_v8.nix { ··· 18 let 19 canExecute = stdenv.buildPlatform.canExecute stdenv.hostPlatform; 20 in 21 - rustPlatform.buildRustPackage rec { 22 pname = "deno"; 23 - version = "2.2.8"; 24 25 src = fetchFromGitHub { 26 owner = "denoland"; 27 repo = "deno"; 28 - tag = "v${version}"; 29 - hash = "sha256-pGhqfQR+42XUY0v99fvSyLQPlvzCWntq4qS9vyuJEpY="; 30 }; 31 32 useFetchCargoVendor = true; 33 - cargoHash = "sha256-FJ3wPkL1Pgw6S66n5hyQfUZWTVXs4oZ0bJJaN22OxoY="; 34 35 postPatch = '' 36 # Use patched nixpkgs libffi in order to fix https://github.com/libffi/libffi/pull/857 37 - substituteInPlace Cargo.toml --replace-fail "libffi = \"=3.2.0\"" "libffi = { version = \"3.2.0\", features = [\"system\"] }" 38 ''; 39 40 # uses zlib-ng but can't dynamically link yet 41 # https://github.com/rust-lang/libz-sys/issues/158 42 - nativeBuildInputs = 43 - [ 44 - rustPlatform.bindgenHook 45 - # required by libz-ng-sys crate 46 - cmake 47 - # required by deno_kv crate 48 - protobuf 49 - installShellFiles 50 - ] 51 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 52 - lld 53 - ]; 54 55 configureFlags = lib.optionals stdenv.cc.isClang [ 56 # This never worked with clang, but became a hard error recently: https://github.com/llvm/llvm-project/commit/3d5b610c864c8f5980eaa16c22b71ff1cf462fae ··· 89 installCheckPhase = lib.optionalString canExecute '' 90 runHook preInstallCheck 91 $out/bin/deno --help 92 - $out/bin/deno --version | grep "deno ${version}" 93 runHook postInstallCheck 94 ''; 95 ··· 98 99 meta = with lib; { 100 homepage = "https://deno.land/"; 101 - changelog = "https://github.com/denoland/deno/releases/tag/v${version}"; 102 description = "Secure runtime for JavaScript and TypeScript"; 103 longDescription = '' 104 Deno aims to be a productive and secure scripting environment for the modern programmer. ··· 122 "aarch64-darwin" 123 ]; 124 }; 125 - }
··· 5 fetchFromGitHub, 6 rustPlatform, 7 cmake, 8 + yq, 9 protobuf, 10 installShellFiles, 11 librusty_v8 ? callPackage ./librusty_v8.nix { ··· 19 let 20 canExecute = stdenv.buildPlatform.canExecute stdenv.hostPlatform; 21 in 22 + rustPlatform.buildRustPackage (finalAttrs: { 23 pname = "deno"; 24 + version = "2.2.10"; 25 26 src = fetchFromGitHub { 27 owner = "denoland"; 28 repo = "deno"; 29 + tag = "v${finalAttrs.version}"; 30 + hash = "sha256-6Tuoxvatfm3edkUiMDGmCZdl/jLKr7WH8WCXR14jKT4="; 31 }; 32 33 useFetchCargoVendor = true; 34 + cargoHash = "sha256-wH+y93loozkgCZZeCR1EVNGBUPY/+OYwZRFeAIcVNTg="; 35 36 postPatch = '' 37 # Use patched nixpkgs libffi in order to fix https://github.com/libffi/libffi/pull/857 38 + tomlq -ti '.workspace.dependencies.libffi = { "version": .workspace.dependencies.libffi, "features": ["system"] }' Cargo.toml 39 ''; 40 41 # uses zlib-ng but can't dynamically link yet 42 # https://github.com/rust-lang/libz-sys/issues/158 43 + nativeBuildInputs = [ 44 + rustPlatform.bindgenHook 45 + # for tomlq to adjust Cargo.toml 46 + yq 47 + # required by libz-ng-sys crate 48 + cmake 49 + # required by deno_kv crate 50 + protobuf 51 + installShellFiles 52 + ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ lld ]; 53 54 configureFlags = lib.optionals stdenv.cc.isClang [ 55 # This never worked with clang, but became a hard error recently: https://github.com/llvm/llvm-project/commit/3d5b610c864c8f5980eaa16c22b71ff1cf462fae ··· 88 installCheckPhase = lib.optionalString canExecute '' 89 runHook preInstallCheck 90 $out/bin/deno --help 91 + $out/bin/deno --version | grep "deno ${finalAttrs.version}" 92 runHook postInstallCheck 93 ''; 94 ··· 97 98 meta = with lib; { 99 homepage = "https://deno.land/"; 100 + changelog = "https://github.com/denoland/deno/releases/tag/v${finalAttrs.version}"; 101 description = "Secure runtime for JavaScript and TypeScript"; 102 longDescription = '' 103 Deno aims to be a productive and secure scripting environment for the modern programmer. ··· 121 "aarch64-darwin" 122 ]; 123 }; 124 + })
+10 -2
pkgs/by-name/di/digikam/package.nix
··· 4 lib, 5 fetchFromGitLab, 6 fetchgit, 7 8 cmake, 9 ninja, ··· 62 63 stdenv.mkDerivation (finalAttrs: { 64 pname = "digikam"; 65 - version = "8.5.0"; 66 67 src = fetchFromGitLab { 68 domain = "invent.kde.org"; 69 owner = "graphics"; 70 repo = "digikam"; 71 rev = "v${finalAttrs.version}"; 72 - hash = "sha256-KO6kq0SlYzu7sh6+7JQWhIeHNowy3fx03OFTdDwyR10="; 73 }; 74 75 patches = [ 76 ./disable-tests-download.patch 77 ]; 78 79 strictDeps = true;
··· 4 lib, 5 fetchFromGitLab, 6 fetchgit, 7 + fetchpatch, 8 9 cmake, 10 ninja, ··· 63 64 stdenv.mkDerivation (finalAttrs: { 65 pname = "digikam"; 66 + version = "8.6.0"; 67 68 src = fetchFromGitLab { 69 domain = "invent.kde.org"; 70 owner = "graphics"; 71 repo = "digikam"; 72 rev = "v${finalAttrs.version}"; 73 + hash = "sha256-CMyvNOAlIqD6OeqUquQ+/sOiBXmEowZe3/qmaXxh0X0="; 74 }; 75 76 patches = [ 77 ./disable-tests-download.patch 78 + 79 + # Fix build with Qt 6.9 80 + # FIXME: remove in next update 81 + (fetchpatch { 82 + url = "https://invent.kde.org/graphics/digikam/-/commit/325b19fc7f0d04cdc1308f235c207c1ab43e945d.patch"; 83 + hash = "sha256-bsxaNuLuU9MyDRmenOqO4JuzsbpUvfKQwcSCDfLHoWQ="; 84 + }) 85 ]; 86 87 strictDeps = true;
+1 -1
pkgs/by-name/ec/ecs-agent/package.nix
··· 32 changelog = "https://github.com/aws/amazon-ecs-agent/raw/v${version}/CHANGELOG.md"; 33 license = licenses.asl20; 34 platforms = platforms.linux; 35 - maintainers = with maintainers; [ copumpkin ]; 36 mainProgram = "agent"; 37 }; 38 }
··· 32 changelog = "https://github.com/aws/amazon-ecs-agent/raw/v${version}/CHANGELOG.md"; 33 license = licenses.asl20; 34 platforms = platforms.linux; 35 + maintainers = [ ]; 36 mainProgram = "agent"; 37 }; 38 }
+2 -2
pkgs/by-name/fi/fityk/package.nix
··· 4 fetchFromGitHub, 5 autoreconfHook, 6 wxGTK32, 7 - boost, 8 lua, 9 zlib, 10 bzip2, ··· 32 ]; 33 buildInputs = [ 34 wxGTK32 35 - boost 36 lua 37 zlib 38 bzip2
··· 4 fetchFromGitHub, 5 autoreconfHook, 6 wxGTK32, 7 + boost186, 8 lua, 9 zlib, 10 bzip2, ··· 32 ]; 33 buildInputs = [ 34 wxGTK32 35 + boost186 36 lua 37 zlib 38 bzip2
+2 -2
pkgs/by-name/fl/flix/package.nix
··· 8 9 stdenvNoCC.mkDerivation rec { 10 pname = "flix"; 11 - version = "0.58.1"; 12 13 src = fetchurl { 14 url = "https://github.com/flix/flix/releases/download/v${version}/flix.jar"; 15 - sha256 = "sha256-YD0H6t5Qj6k8jUfjuMzgY3K2iAN+u4kvcjaqMANkrsw="; 16 }; 17 18 dontUnpack = true;
··· 8 9 stdenvNoCC.mkDerivation rec { 10 pname = "flix"; 11 + version = "0.59.0"; 12 13 src = fetchurl { 14 url = "https://github.com/flix/flix/releases/download/v${version}/flix.jar"; 15 + sha256 = "sha256-Rh1i0wL6+Td0j+eJ4qCYYSz8dmG1Op7Z0cGBBjjJ68Q="; 16 }; 17 18 dontUnpack = true;
+1 -1
pkgs/by-name/fo/foodfetch/package.nix
··· 25 buildInputs = [ openssl ]; 26 27 doInstallCheck = true; 28 - nativeInstallCheck = [ versionCheckHook ]; 29 30 passthru.updateScript = nix-update-script { }; 31
··· 25 buildInputs = [ openssl ]; 26 27 doInstallCheck = true; 28 + nativeInstallCheckInputs = [ versionCheckHook ]; 29 30 passthru.updateScript = nix-update-script { }; 31
+57
pkgs/by-name/go/goldboot/package.nix
···
··· 1 + { 2 + fetchFromGitHub, 3 + rustPlatform, 4 + lib, 5 + versionCheckHook, 6 + pkg-config, 7 + zstd, 8 + OVMF, 9 + qemu, 10 + qemu-utils, 11 + openssl, 12 + nix-update-script, 13 + }: 14 + 15 + rustPlatform.buildRustPackage (finalAttrs: { 16 + pname = "goldboot"; 17 + version = "0.0.10"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "fossable"; 21 + repo = "goldboot"; 22 + rev = "goldboot-v${finalAttrs.version}"; 23 + hash = "sha256-O9yhyJZpjQxC0HP43RsOgPMOKp6d23SNhMLiGtmwXzs="; 24 + }; 25 + 26 + useFetchCargoVendor = true; 27 + cargoHash = "sha256-NF0Fj+r6qWcM4VEIm1fzveZuz6MIaG32Z+zBfSMC/t4="; 28 + 29 + buildAndTestSubdir = "goldboot"; 30 + 31 + nativeBuildInputs = [ pkg-config ]; 32 + buildInputs = [ 33 + zstd 34 + OVMF 35 + qemu 36 + qemu-utils 37 + openssl 38 + ]; 39 + 40 + # Tests require networking, so skip them for now 41 + doCheck = false; 42 + 43 + doInstallCheck = true; 44 + nativeInstallCheckInputs = [ versionCheckHook ]; 45 + 46 + passthru.updateScript = nix-update-script { }; 47 + 48 + meta = { 49 + mainProgram = "goldboot"; 50 + description = "Immutable infrastructure for the desktop"; 51 + homepage = "https://github.com/fossable/goldboot"; 52 + changelog = "https://github.com/fossable/goldboot/releases/tag/goldboot-v${finalAttrs.version}"; 53 + license = lib.licenses.agpl3Plus; 54 + platforms = lib.platforms.unix; 55 + maintainers = with lib.maintainers; [ cilki ]; 56 + }; 57 + })
+1037
pkgs/by-name/gr/grayjay/deps.json
···
··· 1 + [ 2 + { 3 + "pname": "coverlet.collector", 4 + "version": "3.1.2", 5 + "hash": "sha256-v7ZoEFZyhF8VcRZj1uim4HNiRsG+XdJ4x/dwPBIWUz8=" 6 + }, 7 + { 8 + "pname": "coverlet.collector", 9 + "version": "6.0.0", 10 + "hash": "sha256-IEmweTMapcPhFHpmJsPXfmMhravYOrWupgjeOvMmQ4o=" 11 + }, 12 + { 13 + "pname": "Dapper", 14 + "version": "2.1.28", 15 + "hash": "sha256-qCbqEwIB/j6HToEPpDEdQGGIPGQNmrULrCHnEGZSd5c=" 16 + }, 17 + { 18 + "pname": "Fizzler", 19 + "version": "1.2.0", 20 + "hash": "sha256-lHoNw1Ze197Tkhlpg4QjX5wC0Xmeu7TUKBTzEineE60=" 21 + }, 22 + { 23 + "pname": "Fizzler.Systems.HtmlAgilityPack", 24 + "version": "1.2.1", 25 + "hash": "sha256-ov8Kc3nBcRxk0I+WPR11QFlD1607ck31M+37SjIElbc=" 26 + }, 27 + { 28 + "pname": "Google.Protobuf", 29 + "version": "3.25.3", 30 + "hash": "sha256-uG40xD6QkxoTOaTYfBAeVOIPE38qlbCa2RxUzOH0HLE=" 31 + }, 32 + { 33 + "pname": "HtmlAgilityPack", 34 + "version": "1.11.58", 35 + "hash": "sha256-VCrBPH6Waw3LmZEKStBSd5uSH2vicndwYazYX6IdnYE=" 36 + }, 37 + { 38 + "pname": "libsodium", 39 + "version": "1.0.20", 40 + "hash": "sha256-BsitQQnUSm1YupzI5N/LFx0kPFdk1FP8VdM1S3uttvs=" 41 + }, 42 + { 43 + "pname": "Microsoft.Bcl.AsyncInterfaces", 44 + "version": "9.0.0", 45 + "hash": "sha256-BsXNOWEgfFq3Yz7VTtK6m/ov4/erRqyBzieWSIpmc1U=" 46 + }, 47 + { 48 + "pname": "Microsoft.ClearScript.Core", 49 + "version": "7.4.5", 50 + "hash": "sha256-6wRLv+fbo2SF9irQ8BwmUR7JcQAlyEk1Dov+teSXY+E=" 51 + }, 52 + { 53 + "pname": "Microsoft.ClearScript.V8", 54 + "version": "7.4.5", 55 + "hash": "sha256-MXl1n1RF6z95IbpXmSGAwraP8EpvPli16ySFGfc/ZxY=" 56 + }, 57 + { 58 + "pname": "Microsoft.ClearScript.V8.ICUData", 59 + "version": "7.4.5", 60 + "hash": "sha256-54bbiVJoXDrePISZHuEcOax+kgyaIftL684bt3EgYy8=" 61 + }, 62 + { 63 + "pname": "Microsoft.ClearScript.V8.Native.linux-x64", 64 + "version": "7.4.5", 65 + "hash": "sha256-MCRTRO7WiWnWYdvYSwv1kvZakcVcvckio98SJLhYgoM=" 66 + }, 67 + { 68 + "pname": "Microsoft.ClearScript.V8.Native.osx-arm64", 69 + "version": "7.4.5", 70 + "hash": "sha256-SbcABxK8rPIE6SV1JBP2U3FYmrgaY7iB9sFQKNLyAVs=" 71 + }, 72 + { 73 + "pname": "Microsoft.ClearScript.V8.Native.osx-x64", 74 + "version": "7.4.5", 75 + "hash": "sha256-IvttjtyJXWVhuJNkqqxNpLwM3WtljHuHSaKtSkblAqE=" 76 + }, 77 + { 78 + "pname": "Microsoft.ClearScript.V8.Native.win-x64", 79 + "version": "7.4.3", 80 + "hash": "sha256-8lRSVozrki7h64MIgP6v0VWEV1fR1op+hjHd8S4nJ88=" 81 + }, 82 + { 83 + "pname": "Microsoft.ClearScript.V8.Native.win-x64", 84 + "version": "7.4.5", 85 + "hash": "sha256-WF4K7g1w510viiXHJJjKQrsD/mvb99tF76yBCljN1Qw=" 86 + }, 87 + { 88 + "pname": "Microsoft.CodeCoverage", 89 + "version": "17.3.2", 90 + "hash": "sha256-APxmbKMNQKWuFQMJjkVr2zIqv/bLUTMm5NRGVLegBbg=" 91 + }, 92 + { 93 + "pname": "Microsoft.CodeCoverage", 94 + "version": "17.6.0", 95 + "hash": "sha256-sYk+9Gj1M1HI6yEB8ZJQ4fiqGjYos+orebV8blFDSQs=" 96 + }, 97 + { 98 + "pname": "Microsoft.CSharp", 99 + "version": "4.0.1", 100 + "hash": "sha256-0huoqR2CJ3Z9Q2peaKD09TV3E6saYSqDGZ290K8CrH8=" 101 + }, 102 + { 103 + "pname": "Microsoft.CSharp", 104 + "version": "4.3.0", 105 + "hash": "sha256-a3dAiPaVuky0wpcHmpTVtAQJNGZ2v91/oArA+dpJgj8=" 106 + }, 107 + { 108 + "pname": "Microsoft.CSharp", 109 + "version": "4.7.0", 110 + "hash": "sha256-Enknv2RsFF68lEPdrf5M+BpV1kHoLTVRApKUwuk/pj0=" 111 + }, 112 + { 113 + "pname": "Microsoft.Data.Sqlite", 114 + "version": "8.0.1", 115 + "hash": "sha256-2yNZYPTdqYRss9OqC40RjOL7HSXK97p9awIDd/MrRPk=" 116 + }, 117 + { 118 + "pname": "Microsoft.Data.Sqlite.Core", 119 + "version": "8.0.1", 120 + "hash": "sha256-H3yveFzvMNKKVnEIa1bvqb2q2MKxS9Am+fsk3KX298Y=" 121 + }, 122 + { 123 + "pname": "Microsoft.NET.Test.Sdk", 124 + "version": "17.3.2", 125 + "hash": "sha256-1fZ/rrSbuyYUfvwyA3otFQdL0Y/H48goAVyhiLs1oF4=" 126 + }, 127 + { 128 + "pname": "Microsoft.NET.Test.Sdk", 129 + "version": "17.6.0", 130 + "hash": "sha256-pogseJyMGIikTZORsDXKwyAhRPTkxiOAAV+ceR6/3K4=" 131 + }, 132 + { 133 + "pname": "Microsoft.NETCore.Platforms", 134 + "version": "1.0.1", 135 + "hash": "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU=" 136 + }, 137 + { 138 + "pname": "Microsoft.NETCore.Platforms", 139 + "version": "1.1.0", 140 + "hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=" 141 + }, 142 + { 143 + "pname": "Microsoft.NETCore.Targets", 144 + "version": "1.0.1", 145 + "hash": "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4=" 146 + }, 147 + { 148 + "pname": "Microsoft.NETCore.Targets", 149 + "version": "1.1.0", 150 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 151 + }, 152 + { 153 + "pname": "Microsoft.TestPlatform.ObjectModel", 154 + "version": "17.3.2", 155 + "hash": "sha256-wdLQSEjvFjApEKU82Ev+y1kHVxeIlrjkuj3wNktGQy8=" 156 + }, 157 + { 158 + "pname": "Microsoft.TestPlatform.ObjectModel", 159 + "version": "17.6.0", 160 + "hash": "sha256-weQPisiWSuM5VEeZco4S0QHEXd2bZZwlbyHoaCET4uc=" 161 + }, 162 + { 163 + "pname": "Microsoft.TestPlatform.TestHost", 164 + "version": "17.3.2", 165 + "hash": "sha256-ySBqawHGZ/Dwoj2UnAzk1Ezxt4qR1AuEY73U/buqNiE=" 166 + }, 167 + { 168 + "pname": "Microsoft.TestPlatform.TestHost", 169 + "version": "17.6.0", 170 + "hash": "sha256-Ee2SKz5/571l1aYP0b/Gfamsz+v6cjzyu2sKTC6Ld5s=" 171 + }, 172 + { 173 + "pname": "Microsoft.Win32.Primitives", 174 + "version": "4.3.0", 175 + "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" 176 + }, 177 + { 178 + "pname": "Microsoft.Win32.Registry", 179 + "version": "5.0.0", 180 + "hash": "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA=" 181 + }, 182 + { 183 + "pname": "MSTest.TestAdapter", 184 + "version": "2.2.10", 185 + "hash": "sha256-xpt9NDMDkoV/SzTWLgpKbqMOnhbUKZlBrdFwMGwpzHA=" 186 + }, 187 + { 188 + "pname": "MSTest.TestAdapter", 189 + "version": "3.0.4", 190 + "hash": "sha256-cxynZ6I681YIclJeGtv1OiAxMOdx7FDyVIzNOg10Tgo=" 191 + }, 192 + { 193 + "pname": "MSTest.TestFramework", 194 + "version": "2.2.10", 195 + "hash": "sha256-PEoY4N5F+xhQa6wXiX8SaVHAxw9C7fN+zSNfoModt0g=" 196 + }, 197 + { 198 + "pname": "MSTest.TestFramework", 199 + "version": "3.0.4", 200 + "hash": "sha256-aJqGvGfM2fl2dG05PFgPth/1qMhVpDRBMWuNu4yt4Dc=" 201 + }, 202 + { 203 + "pname": "NETStandard.Library", 204 + "version": "1.6.1", 205 + "hash": "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw=" 206 + }, 207 + { 208 + "pname": "Newtonsoft.Json", 209 + "version": "10.0.3", 210 + "hash": "sha256-WEHCjp+OMr5axXQjFsh7TMDE/ttE35nMv5RBPdcxfhs=" 211 + }, 212 + { 213 + "pname": "Newtonsoft.Json", 214 + "version": "13.0.1", 215 + "hash": "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo=" 216 + }, 217 + { 218 + "pname": "Newtonsoft.Json", 219 + "version": "9.0.1", 220 + "hash": "sha256-mYCBrgUhIJFzRuLLV9SIiIFHovzfR8Uuqfg6e08EnlU=" 221 + }, 222 + { 223 + "pname": "NuGet.Frameworks", 224 + "version": "5.11.0", 225 + "hash": "sha256-n+hxcrf+sXM80Tv9YH9x4+hwTslVidFq4tjBNPAzYnM=" 226 + }, 227 + { 228 + "pname": "runtime.any.System.Collections", 229 + "version": "4.3.0", 230 + "hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=" 231 + }, 232 + { 233 + "pname": "runtime.any.System.Diagnostics.Tools", 234 + "version": "4.3.0", 235 + "hash": "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I=" 236 + }, 237 + { 238 + "pname": "runtime.any.System.Diagnostics.Tracing", 239 + "version": "4.3.0", 240 + "hash": "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI=" 241 + }, 242 + { 243 + "pname": "runtime.any.System.Globalization", 244 + "version": "4.3.0", 245 + "hash": "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU=" 246 + }, 247 + { 248 + "pname": "runtime.any.System.Globalization.Calendars", 249 + "version": "4.3.0", 250 + "hash": "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4=" 251 + }, 252 + { 253 + "pname": "runtime.any.System.IO", 254 + "version": "4.3.0", 255 + "hash": "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE=" 256 + }, 257 + { 258 + "pname": "runtime.any.System.Reflection", 259 + "version": "4.3.0", 260 + "hash": "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk=" 261 + }, 262 + { 263 + "pname": "runtime.any.System.Reflection.Extensions", 264 + "version": "4.3.0", 265 + "hash": "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8=" 266 + }, 267 + { 268 + "pname": "runtime.any.System.Reflection.Primitives", 269 + "version": "4.3.0", 270 + "hash": "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ=" 271 + }, 272 + { 273 + "pname": "runtime.any.System.Resources.ResourceManager", 274 + "version": "4.3.0", 275 + "hash": "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4=" 276 + }, 277 + { 278 + "pname": "runtime.any.System.Runtime", 279 + "version": "4.3.0", 280 + "hash": "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM=" 281 + }, 282 + { 283 + "pname": "runtime.any.System.Runtime.Handles", 284 + "version": "4.3.0", 285 + "hash": "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4=" 286 + }, 287 + { 288 + "pname": "runtime.any.System.Runtime.InteropServices", 289 + "version": "4.3.0", 290 + "hash": "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA=" 291 + }, 292 + { 293 + "pname": "runtime.any.System.Text.Encoding", 294 + "version": "4.3.0", 295 + "hash": "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs=" 296 + }, 297 + { 298 + "pname": "runtime.any.System.Text.Encoding.Extensions", 299 + "version": "4.3.0", 300 + "hash": "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM=" 301 + }, 302 + { 303 + "pname": "runtime.any.System.Threading.Tasks", 304 + "version": "4.3.0", 305 + "hash": "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4=" 306 + }, 307 + { 308 + "pname": "runtime.any.System.Threading.Timer", 309 + "version": "4.3.0", 310 + "hash": "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs=" 311 + }, 312 + { 313 + "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 314 + "version": "4.3.0", 315 + "hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=" 316 + }, 317 + { 318 + "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 319 + "version": "4.3.0", 320 + "hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=" 321 + }, 322 + { 323 + "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 324 + "version": "4.3.0", 325 + "hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=" 326 + }, 327 + { 328 + "pname": "runtime.native.System", 329 + "version": "4.3.0", 330 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 331 + }, 332 + { 333 + "pname": "runtime.native.System.IO.Compression", 334 + "version": "4.3.0", 335 + "hash": "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8=" 336 + }, 337 + { 338 + "pname": "runtime.native.System.Net.Http", 339 + "version": "4.3.0", 340 + "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" 341 + }, 342 + { 343 + "pname": "runtime.native.System.Security.Cryptography.Apple", 344 + "version": "4.3.0", 345 + "hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=" 346 + }, 347 + { 348 + "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 349 + "version": "4.3.0", 350 + "hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=" 351 + }, 352 + { 353 + "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 354 + "version": "4.3.0", 355 + "hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=" 356 + }, 357 + { 358 + "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 359 + "version": "4.3.0", 360 + "hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=" 361 + }, 362 + { 363 + "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 364 + "version": "4.3.0", 365 + "hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=" 366 + }, 367 + { 368 + "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 369 + "version": "4.3.0", 370 + "hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=" 371 + }, 372 + { 373 + "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 374 + "version": "4.3.0", 375 + "hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=" 376 + }, 377 + { 378 + "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 379 + "version": "4.3.0", 380 + "hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=" 381 + }, 382 + { 383 + "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 384 + "version": "4.3.0", 385 + "hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=" 386 + }, 387 + { 388 + "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 389 + "version": "4.3.0", 390 + "hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=" 391 + }, 392 + { 393 + "pname": "runtime.unix.Microsoft.Win32.Primitives", 394 + "version": "4.3.0", 395 + "hash": "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg=" 396 + }, 397 + { 398 + "pname": "runtime.unix.System.Console", 399 + "version": "4.3.0", 400 + "hash": "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190=" 401 + }, 402 + { 403 + "pname": "runtime.unix.System.Diagnostics.Debug", 404 + "version": "4.3.0", 405 + "hash": "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI=" 406 + }, 407 + { 408 + "pname": "runtime.unix.System.IO.FileSystem", 409 + "version": "4.3.0", 410 + "hash": "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I=" 411 + }, 412 + { 413 + "pname": "runtime.unix.System.Net.Primitives", 414 + "version": "4.3.0", 415 + "hash": "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0=" 416 + }, 417 + { 418 + "pname": "runtime.unix.System.Net.Sockets", 419 + "version": "4.3.0", 420 + "hash": "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4=" 421 + }, 422 + { 423 + "pname": "runtime.unix.System.Private.Uri", 424 + "version": "4.3.0", 425 + "hash": "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs=" 426 + }, 427 + { 428 + "pname": "runtime.unix.System.Runtime.Extensions", 429 + "version": "4.3.0", 430 + "hash": "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4=" 431 + }, 432 + { 433 + "pname": "SQLitePCLRaw.bundle_e_sqlite3", 434 + "version": "2.1.6", 435 + "hash": "sha256-dZD/bZsYXjOu46ZH5Y/wgh0uhHOqIxC+S+0ecKhr718=" 436 + }, 437 + { 438 + "pname": "SQLitePCLRaw.core", 439 + "version": "2.1.6", 440 + "hash": "sha256-RxWjm52PdmMV98dgDy0BCpF988+BssRZUgALLv7TH/E=" 441 + }, 442 + { 443 + "pname": "SQLitePCLRaw.lib.e_sqlite3", 444 + "version": "2.1.6", 445 + "hash": "sha256-uHt5d+SFUkSd6WD7Tg0J3e8eVoxy/FM/t4PAkc9PJT0=" 446 + }, 447 + { 448 + "pname": "SQLitePCLRaw.provider.e_sqlite3", 449 + "version": "2.1.6", 450 + "hash": "sha256-zHc/YZsd72eXlI8ba1tv58HZWUIiyjJaxq2CCP1hQe8=" 451 + }, 452 + { 453 + "pname": "System.AppContext", 454 + "version": "4.3.0", 455 + "hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=" 456 + }, 457 + { 458 + "pname": "System.Buffers", 459 + "version": "4.3.0", 460 + "hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=" 461 + }, 462 + { 463 + "pname": "System.Buffers", 464 + "version": "4.5.1", 465 + "hash": "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=" 466 + }, 467 + { 468 + "pname": "System.Collections", 469 + "version": "4.0.11", 470 + "hash": "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0=" 471 + }, 472 + { 473 + "pname": "System.Collections", 474 + "version": "4.3.0", 475 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 476 + }, 477 + { 478 + "pname": "System.Collections.Concurrent", 479 + "version": "4.3.0", 480 + "hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=" 481 + }, 482 + { 483 + "pname": "System.Collections.NonGeneric", 484 + "version": "4.3.0", 485 + "hash": "sha256-8/yZmD4jjvq7m68SPkJZLBQ79jOTOyT5lyzX4SCYAx8=" 486 + }, 487 + { 488 + "pname": "System.Collections.Specialized", 489 + "version": "4.3.0", 490 + "hash": "sha256-QNg0JJNx+zXMQ26MJRPzH7THdtqjrNtGLUgaR1SdvOk=" 491 + }, 492 + { 493 + "pname": "System.ComponentModel", 494 + "version": "4.3.0", 495 + "hash": "sha256-i00uujMO4JEDIEPKLmdLY3QJ6vdSpw6Gh9oOzkFYBiU=" 496 + }, 497 + { 498 + "pname": "System.ComponentModel.Primitives", 499 + "version": "4.3.0", 500 + "hash": "sha256-IOMJleuIBppmP4ECB3uftbdcgL7CCd56+oAD/Sqrbus=" 501 + }, 502 + { 503 + "pname": "System.ComponentModel.TypeConverter", 504 + "version": "4.3.0", 505 + "hash": "sha256-PSDiPYt8PgTdTUBz+GH6lHCaM1YgfObneHnZsc8Fz54=" 506 + }, 507 + { 508 + "pname": "System.Console", 509 + "version": "4.3.0", 510 + "hash": "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo=" 511 + }, 512 + { 513 + "pname": "System.Diagnostics.Debug", 514 + "version": "4.0.11", 515 + "hash": "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4=" 516 + }, 517 + { 518 + "pname": "System.Diagnostics.Debug", 519 + "version": "4.3.0", 520 + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" 521 + }, 522 + { 523 + "pname": "System.Diagnostics.DiagnosticSource", 524 + "version": "4.3.0", 525 + "hash": "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw=" 526 + }, 527 + { 528 + "pname": "System.Diagnostics.TextWriterTraceListener", 529 + "version": "4.3.0", 530 + "hash": "sha256-gx3IHPvPNRmwpLwtswu12U/ow4f/7OPAeHxyMxw5qyU=" 531 + }, 532 + { 533 + "pname": "System.Diagnostics.Tools", 534 + "version": "4.0.1", 535 + "hash": "sha256-vSBqTbmWXylvRa37aWyktym+gOpsvH43mwr6A962k6U=" 536 + }, 537 + { 538 + "pname": "System.Diagnostics.Tools", 539 + "version": "4.3.0", 540 + "hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=" 541 + }, 542 + { 543 + "pname": "System.Diagnostics.TraceSource", 544 + "version": "4.3.0", 545 + "hash": "sha256-xpxwaXsRcgso8Gj0cqY4+Hvvz6vZkmEMh5/J204j3M8=" 546 + }, 547 + { 548 + "pname": "System.Diagnostics.Tracing", 549 + "version": "4.3.0", 550 + "hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=" 551 + }, 552 + { 553 + "pname": "System.Dynamic.Runtime", 554 + "version": "4.0.11", 555 + "hash": "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4=" 556 + }, 557 + { 558 + "pname": "System.Dynamic.Runtime", 559 + "version": "4.3.0", 560 + "hash": "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU=" 561 + }, 562 + { 563 + "pname": "System.Globalization", 564 + "version": "4.0.11", 565 + "hash": "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw=" 566 + }, 567 + { 568 + "pname": "System.Globalization", 569 + "version": "4.3.0", 570 + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" 571 + }, 572 + { 573 + "pname": "System.Globalization.Calendars", 574 + "version": "4.3.0", 575 + "hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=" 576 + }, 577 + { 578 + "pname": "System.Globalization.Extensions", 579 + "version": "4.3.0", 580 + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" 581 + }, 582 + { 583 + "pname": "System.IO", 584 + "version": "4.1.0", 585 + "hash": "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw=" 586 + }, 587 + { 588 + "pname": "System.IO", 589 + "version": "4.3.0", 590 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 591 + }, 592 + { 593 + "pname": "System.IO.Compression", 594 + "version": "4.3.0", 595 + "hash": "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA=" 596 + }, 597 + { 598 + "pname": "System.IO.Compression.ZipFile", 599 + "version": "4.3.0", 600 + "hash": "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs=" 601 + }, 602 + { 603 + "pname": "System.IO.FileSystem", 604 + "version": "4.0.1", 605 + "hash": "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0=" 606 + }, 607 + { 608 + "pname": "System.IO.FileSystem", 609 + "version": "4.3.0", 610 + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" 611 + }, 612 + { 613 + "pname": "System.IO.FileSystem.Primitives", 614 + "version": "4.0.1", 615 + "hash": "sha256-IpigKMomqb6pmYWkrlf0ZdpILtRluX2cX5sOKVW0Feg=" 616 + }, 617 + { 618 + "pname": "System.IO.FileSystem.Primitives", 619 + "version": "4.3.0", 620 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 621 + }, 622 + { 623 + "pname": "System.IO.Pipelines", 624 + "version": "9.0.0", 625 + "hash": "sha256-vb0NrPjfEao3kfZ0tavp2J/29XnsQTJgXv3/qaAwwz0=" 626 + }, 627 + { 628 + "pname": "System.Linq", 629 + "version": "4.1.0", 630 + "hash": "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794=" 631 + }, 632 + { 633 + "pname": "System.Linq", 634 + "version": "4.3.0", 635 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 636 + }, 637 + { 638 + "pname": "System.Linq.Expressions", 639 + "version": "4.1.0", 640 + "hash": "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4=" 641 + }, 642 + { 643 + "pname": "System.Linq.Expressions", 644 + "version": "4.3.0", 645 + "hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=" 646 + }, 647 + { 648 + "pname": "System.Memory", 649 + "version": "4.5.3", 650 + "hash": "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk=" 651 + }, 652 + { 653 + "pname": "System.Memory", 654 + "version": "4.5.4", 655 + "hash": "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E=" 656 + }, 657 + { 658 + "pname": "System.Memory", 659 + "version": "4.5.5", 660 + "hash": "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI=" 661 + }, 662 + { 663 + "pname": "System.Net.Http", 664 + "version": "4.3.0", 665 + "hash": "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q=" 666 + }, 667 + { 668 + "pname": "System.Net.NameResolution", 669 + "version": "4.3.0", 670 + "hash": "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c=" 671 + }, 672 + { 673 + "pname": "System.Net.Primitives", 674 + "version": "4.3.0", 675 + "hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=" 676 + }, 677 + { 678 + "pname": "System.Net.Sockets", 679 + "version": "4.3.0", 680 + "hash": "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus=" 681 + }, 682 + { 683 + "pname": "System.Numerics.Vectors", 684 + "version": "4.4.0", 685 + "hash": "sha256-auXQK2flL/JpnB/rEcAcUm4vYMCYMEMiWOCAlIaqu2U=" 686 + }, 687 + { 688 + "pname": "System.ObjectModel", 689 + "version": "4.0.12", 690 + "hash": "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s=" 691 + }, 692 + { 693 + "pname": "System.ObjectModel", 694 + "version": "4.3.0", 695 + "hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=" 696 + }, 697 + { 698 + "pname": "System.Private.Uri", 699 + "version": "4.3.0", 700 + "hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=" 701 + }, 702 + { 703 + "pname": "System.Reflection", 704 + "version": "4.1.0", 705 + "hash": "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs=" 706 + }, 707 + { 708 + "pname": "System.Reflection", 709 + "version": "4.3.0", 710 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 711 + }, 712 + { 713 + "pname": "System.Reflection.Emit", 714 + "version": "4.0.1", 715 + "hash": "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk=" 716 + }, 717 + { 718 + "pname": "System.Reflection.Emit", 719 + "version": "4.3.0", 720 + "hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=" 721 + }, 722 + { 723 + "pname": "System.Reflection.Emit.ILGeneration", 724 + "version": "4.0.1", 725 + "hash": "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0=" 726 + }, 727 + { 728 + "pname": "System.Reflection.Emit.ILGeneration", 729 + "version": "4.3.0", 730 + "hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=" 731 + }, 732 + { 733 + "pname": "System.Reflection.Emit.Lightweight", 734 + "version": "4.0.1", 735 + "hash": "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g=" 736 + }, 737 + { 738 + "pname": "System.Reflection.Emit.Lightweight", 739 + "version": "4.3.0", 740 + "hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=" 741 + }, 742 + { 743 + "pname": "System.Reflection.Extensions", 744 + "version": "4.0.1", 745 + "hash": "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ=" 746 + }, 747 + { 748 + "pname": "System.Reflection.Extensions", 749 + "version": "4.3.0", 750 + "hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=" 751 + }, 752 + { 753 + "pname": "System.Reflection.Metadata", 754 + "version": "1.6.0", 755 + "hash": "sha256-JJfgaPav7UfEh4yRAQdGhLZF1brr0tUWPl6qmfNWq/E=" 756 + }, 757 + { 758 + "pname": "System.Reflection.Primitives", 759 + "version": "4.0.1", 760 + "hash": "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0=" 761 + }, 762 + { 763 + "pname": "System.Reflection.Primitives", 764 + "version": "4.3.0", 765 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 766 + }, 767 + { 768 + "pname": "System.Reflection.TypeExtensions", 769 + "version": "4.1.0", 770 + "hash": "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4=" 771 + }, 772 + { 773 + "pname": "System.Reflection.TypeExtensions", 774 + "version": "4.3.0", 775 + "hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=" 776 + }, 777 + { 778 + "pname": "System.Resources.ResourceManager", 779 + "version": "4.0.1", 780 + "hash": "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw=" 781 + }, 782 + { 783 + "pname": "System.Resources.ResourceManager", 784 + "version": "4.3.0", 785 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 786 + }, 787 + { 788 + "pname": "System.Runtime", 789 + "version": "4.1.0", 790 + "hash": "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo=" 791 + }, 792 + { 793 + "pname": "System.Runtime", 794 + "version": "4.3.0", 795 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 796 + }, 797 + { 798 + "pname": "System.Runtime.CompilerServices.Unsafe", 799 + "version": "4.5.3", 800 + "hash": "sha256-lnZMUqRO4RYRUeSO8HSJ9yBHqFHLVbmenwHWkIU20ak=" 801 + }, 802 + { 803 + "pname": "System.Runtime.CompilerServices.Unsafe", 804 + "version": "6.0.0", 805 + "hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=" 806 + }, 807 + { 808 + "pname": "System.Runtime.Extensions", 809 + "version": "4.1.0", 810 + "hash": "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc=" 811 + }, 812 + { 813 + "pname": "System.Runtime.Extensions", 814 + "version": "4.3.0", 815 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 816 + }, 817 + { 818 + "pname": "System.Runtime.Handles", 819 + "version": "4.0.1", 820 + "hash": "sha256-j2QgVO9ZOjv7D1het98CoFpjoYgxjupuIhuBUmLLH7w=" 821 + }, 822 + { 823 + "pname": "System.Runtime.Handles", 824 + "version": "4.3.0", 825 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 826 + }, 827 + { 828 + "pname": "System.Runtime.InteropServices", 829 + "version": "4.1.0", 830 + "hash": "sha256-QceAYlJvkPRJc/+5jR+wQpNNI3aqGySWWSO30e/FfQY=" 831 + }, 832 + { 833 + "pname": "System.Runtime.InteropServices", 834 + "version": "4.3.0", 835 + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" 836 + }, 837 + { 838 + "pname": "System.Runtime.InteropServices.RuntimeInformation", 839 + "version": "4.3.0", 840 + "hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=" 841 + }, 842 + { 843 + "pname": "System.Runtime.Numerics", 844 + "version": "4.3.0", 845 + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" 846 + }, 847 + { 848 + "pname": "System.Runtime.Serialization.Formatters", 849 + "version": "4.3.0", 850 + "hash": "sha256-Feic7MGKVG4imh7kpLkPHmApQzYjq7SxHnazh2wZkoQ=" 851 + }, 852 + { 853 + "pname": "System.Runtime.Serialization.Primitives", 854 + "version": "4.1.1", 855 + "hash": "sha256-80B05oxJbPLGq2pGOSl6NlZvintX9A1CNpna2aN0WRA=" 856 + }, 857 + { 858 + "pname": "System.Runtime.Serialization.Primitives", 859 + "version": "4.3.0", 860 + "hash": "sha256-zu5m1M9usend+i9sbuD6Xbizdo8Z6N5PEF9DAtEVewc=" 861 + }, 862 + { 863 + "pname": "System.Security.AccessControl", 864 + "version": "5.0.0", 865 + "hash": "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54=" 866 + }, 867 + { 868 + "pname": "System.Security.Claims", 869 + "version": "4.3.0", 870 + "hash": "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks=" 871 + }, 872 + { 873 + "pname": "System.Security.Cryptography.Algorithms", 874 + "version": "4.3.0", 875 + "hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=" 876 + }, 877 + { 878 + "pname": "System.Security.Cryptography.Cng", 879 + "version": "4.3.0", 880 + "hash": "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw=" 881 + }, 882 + { 883 + "pname": "System.Security.Cryptography.Csp", 884 + "version": "4.3.0", 885 + "hash": "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ=" 886 + }, 887 + { 888 + "pname": "System.Security.Cryptography.Encoding", 889 + "version": "4.3.0", 890 + "hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=" 891 + }, 892 + { 893 + "pname": "System.Security.Cryptography.OpenSsl", 894 + "version": "4.3.0", 895 + "hash": "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4=" 896 + }, 897 + { 898 + "pname": "System.Security.Cryptography.Primitives", 899 + "version": "4.3.0", 900 + "hash": "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318=" 901 + }, 902 + { 903 + "pname": "System.Security.Cryptography.X509Certificates", 904 + "version": "4.3.0", 905 + "hash": "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0=" 906 + }, 907 + { 908 + "pname": "System.Security.Principal", 909 + "version": "4.3.0", 910 + "hash": "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk=" 911 + }, 912 + { 913 + "pname": "System.Security.Principal.Windows", 914 + "version": "4.3.0", 915 + "hash": "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE=" 916 + }, 917 + { 918 + "pname": "System.Security.Principal.Windows", 919 + "version": "5.0.0", 920 + "hash": "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y=" 921 + }, 922 + { 923 + "pname": "System.Text.Encoding", 924 + "version": "4.0.11", 925 + "hash": "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc=" 926 + }, 927 + { 928 + "pname": "System.Text.Encoding", 929 + "version": "4.3.0", 930 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 931 + }, 932 + { 933 + "pname": "System.Text.Encoding.Extensions", 934 + "version": "4.0.11", 935 + "hash": "sha256-+kf7J3dEhgCbnCM5vHYlsTm5/R/Ud0Jr6elpHm922iI=" 936 + }, 937 + { 938 + "pname": "System.Text.Encoding.Extensions", 939 + "version": "4.3.0", 940 + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" 941 + }, 942 + { 943 + "pname": "System.Text.Encodings.Web", 944 + "version": "9.0.0", 945 + "hash": "sha256-WGaUklQEJywoGR2jtCEs5bxdvYu5SHaQchd6s4RE5x0=" 946 + }, 947 + { 948 + "pname": "System.Text.Json", 949 + "version": "9.0.0", 950 + "hash": "sha256-aM5Dh4okLnDv940zmoFAzRmqZre83uQBtGOImJpoIqk=" 951 + }, 952 + { 953 + "pname": "System.Text.RegularExpressions", 954 + "version": "4.1.0", 955 + "hash": "sha256-x6OQN6MCN7S0fJ6EFTfv4rczdUWjwuWE9QQ0P6fbh9c=" 956 + }, 957 + { 958 + "pname": "System.Text.RegularExpressions", 959 + "version": "4.3.0", 960 + "hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=" 961 + }, 962 + { 963 + "pname": "System.Threading", 964 + "version": "4.0.11", 965 + "hash": "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac=" 966 + }, 967 + { 968 + "pname": "System.Threading", 969 + "version": "4.3.0", 970 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 971 + }, 972 + { 973 + "pname": "System.Threading.Tasks", 974 + "version": "4.0.11", 975 + "hash": "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs=" 976 + }, 977 + { 978 + "pname": "System.Threading.Tasks", 979 + "version": "4.3.0", 980 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 981 + }, 982 + { 983 + "pname": "System.Threading.Tasks.Extensions", 984 + "version": "4.0.0", 985 + "hash": "sha256-+YdcPkMhZhRbMZHnfsDwpNbUkr31X7pQFGxXYcAPZbE=" 986 + }, 987 + { 988 + "pname": "System.Threading.Tasks.Extensions", 989 + "version": "4.3.0", 990 + "hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=" 991 + }, 992 + { 993 + "pname": "System.Threading.Tasks.Extensions", 994 + "version": "4.5.4", 995 + "hash": "sha256-owSpY8wHlsUXn5xrfYAiu847L6fAKethlvYx97Ri1ng=" 996 + }, 997 + { 998 + "pname": "System.Threading.ThreadPool", 999 + "version": "4.3.0", 1000 + "hash": "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg=" 1001 + }, 1002 + { 1003 + "pname": "System.Threading.Timer", 1004 + "version": "4.3.0", 1005 + "hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=" 1006 + }, 1007 + { 1008 + "pname": "System.Xml.ReaderWriter", 1009 + "version": "4.0.11", 1010 + "hash": "sha256-haZAFFQ9Sl2DhfvEbdx2YRqKEoxNMU5STaqpMmXw0zA=" 1011 + }, 1012 + { 1013 + "pname": "System.Xml.ReaderWriter", 1014 + "version": "4.3.0", 1015 + "hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=" 1016 + }, 1017 + { 1018 + "pname": "System.Xml.XDocument", 1019 + "version": "4.0.11", 1020 + "hash": "sha256-KPz1kxe0RUBM+aoktJ/f9p51GudMERU8Pmwm//HdlFg=" 1021 + }, 1022 + { 1023 + "pname": "System.Xml.XDocument", 1024 + "version": "4.3.0", 1025 + "hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=" 1026 + }, 1027 + { 1028 + "pname": "System.Xml.XmlDocument", 1029 + "version": "4.3.0", 1030 + "hash": "sha256-kbuV4Y7rVJkfMp2Kgoi8Zvdatm9CZNmlKB3GZgANvy4=" 1031 + }, 1032 + { 1033 + "pname": "ZstdNet", 1034 + "version": "1.4.5", 1035 + "hash": "sha256-8ilfyR4ajq9hXTgsZQbvfFW0T00BfW5Cv77B4qKCNlw=" 1036 + } 1037 + ]
+191
pkgs/by-name/gr/grayjay/package.nix
···
··· 1 + { 2 + buildDotnetModule, 3 + fetchFromGitLab, 4 + dotnetCorePackages, 5 + buildNpmPackage, 6 + lib, 7 + libz, 8 + icu, 9 + openssl, 10 + xorg, 11 + gtk3, 12 + glib, 13 + nss, 14 + nspr, 15 + dbus, 16 + atk, 17 + cups, 18 + libdrm, 19 + expat, 20 + libxkbcommon, 21 + pango, 22 + cairo, 23 + udev, 24 + alsa-lib, 25 + mesa, 26 + libGL, 27 + libsecret, 28 + nix-update-script, 29 + autoPatchelfHook, 30 + makeDesktopItem, 31 + copyDesktopItems, 32 + libgcc, 33 + krb5, 34 + wrapGAppsHook3, 35 + }: 36 + let 37 + version = "5"; 38 + src = fetchFromGitLab { 39 + domain = "gitlab.futo.org"; 40 + owner = "videostreaming"; 41 + repo = "Grayjay.Desktop"; 42 + tag = version; 43 + hash = "sha256-xrbYghNymny6MQrvFn++GaI+kUoOphPQMWcqH47U1Yg="; 44 + fetchSubmodules = true; 45 + fetchLFS = true; 46 + }; 47 + frontend = buildNpmPackage { 48 + name = "grayjay-frontend"; 49 + inherit version src; 50 + 51 + sourceRoot = "source/Grayjay.Desktop.Web"; 52 + 53 + npmBuildScript = "build"; 54 + npmDepsHash = "sha256-pTEbMSAJwTY6ZRriPWfBFnRHSYufSsD0d+hWGz35xFM="; 55 + 56 + installPhase = '' 57 + runHook preInstall 58 + cp -r dist/ $out 59 + runHook postInstall 60 + ''; 61 + }; 62 + in 63 + buildDotnetModule { 64 + pname = "grayjay"; 65 + 66 + inherit version src frontend; 67 + 68 + buildInputs = [ 69 + openssl 70 + libgcc 71 + xorg.libX11 72 + gtk3 73 + glib 74 + alsa-lib 75 + mesa 76 + nspr 77 + nss 78 + icu 79 + krb5 80 + ]; 81 + 82 + nativeBuildInputs = [ 83 + autoPatchelfHook 84 + wrapGAppsHook3 85 + copyDesktopItems 86 + ]; 87 + 88 + dontWrapGApps = true; 89 + 90 + desktopItems = [ 91 + (makeDesktopItem { 92 + name = "Grayjay"; 93 + exec = "Grayjay"; 94 + icon = "grayjay"; 95 + comment = "Cross platform media application for streaming and downloading media"; 96 + desktopName = "Grayjay Desktop"; 97 + categories = [ "Network" ]; 98 + }) 99 + ]; 100 + 101 + projectFile = [ 102 + "Grayjay.ClientServer/Grayjay.ClientServer.csproj" 103 + "Grayjay.Engine/Grayjay.Engine/Grayjay.Engine.csproj" 104 + "Grayjay.Desktop.CEF/Grayjay.Desktop.CEF.csproj" 105 + "FUTO.MDNS/FUTO.MDNS/FUTO.MDNS.csproj" 106 + "JustCef/DotCef.csproj" 107 + ]; 108 + 109 + testProjectFile = [ 110 + "Grayjay.Desktop.Tests/Grayjay.Desktop.Tests.csproj" 111 + "Grayjay.Engine/Grayjay.Engine.Tests/Grayjay.Engine.Tests.csproj" 112 + ]; 113 + 114 + nugetDeps = ./deps.json; 115 + 116 + dotnet-runtime = dotnetCorePackages.aspnetcore_8_0; 117 + 118 + executables = [ "Grayjay" ]; 119 + 120 + preBuild = '' 121 + rm -r Grayjay.ClientServer/wwwroot/web 122 + cp -r ${frontend} Grayjay.ClientServer/wwwroot/web 123 + ''; 124 + 125 + postInstall = '' 126 + chmod +x $out/lib/grayjay/cef/dotcefnative 127 + chmod +x $out/lib/grayjay/ffmpeg 128 + rm $out/lib/grayjay/Portable 129 + ln -s /tmp/grayjay-launch $out/lib/grayjay/launch 130 + ln -s /tmp/grayjay-cef-launch $out/lib/grayjay/cef/launch 131 + mkdir -p $out/share/icons/hicolor/scalable/apps 132 + ln -s $out/lib/grayjay/grayjay.png $out/share/icons/hicolor/scalable/apps/grayjay.png 133 + ''; 134 + 135 + makeWrapperArgs = [ 136 + "--chdir" 137 + "${placeholder "out"}/lib/grayjay" 138 + ]; 139 + 140 + preFixup = '' 141 + makeWrapperArgs+=("''${gappsWrapperArgs[@]}") 142 + ''; 143 + 144 + runtimeDeps = [ 145 + libz 146 + 147 + xorg.libXcomposite 148 + xorg.libXdamage 149 + xorg.libXext 150 + xorg.libXfixes 151 + xorg.libXrandr 152 + xorg.libxcb 153 + 154 + dbus 155 + atk 156 + cups 157 + libdrm 158 + expat 159 + libxkbcommon 160 + pango 161 + cairo 162 + udev 163 + libGL 164 + libsecret 165 + ]; 166 + 167 + passthru.updateScript = nix-update-script { 168 + extraArgs = [ 169 + "--subpackage" 170 + "frontend" 171 + "--url" 172 + "https://github.com/futo-org/Grayjay.Desktop" 173 + ]; 174 + }; 175 + 176 + meta = { 177 + description = "Cross-platform application to stream and download content from various sources"; 178 + longDescription = '' 179 + Grayjay is a cross-platform application that enables users to 180 + stream and download multimedia content from various online sources, 181 + most prominently YouTube. 182 + It also offers an extensible plugin API to create and import new 183 + integrations. 184 + ''; 185 + homepage = "https://grayjay.app/desktop/"; 186 + license = lib.licenses.sfl; 187 + maintainers = with lib.maintainers; [ samfundev ]; 188 + platforms = [ "x86_64-linux" ]; 189 + mainProgram = "Grayjay"; 190 + }; 191 + }
+2 -2
pkgs/by-name/ha/haproxy/package.nix
··· 35 in 36 stdenv.mkDerivation (finalAttrs: { 37 pname = "haproxy"; 38 - version = "3.1.6"; 39 40 src = fetchurl { 41 url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz"; 42 - hash = "sha256-IYUuSjdLuNmz3aXcg0r+ZVf0ItcCn0/j6sPDBfUSR2A="; 43 }; 44 45 buildInputs =
··· 35 in 36 stdenv.mkDerivation (finalAttrs: { 37 pname = "haproxy"; 38 + version = "3.1.7"; 39 40 src = fetchurl { 41 url = "https://www.haproxy.org/download/${lib.versions.majorMinor finalAttrs.version}/src/haproxy-${finalAttrs.version}.tar.gz"; 42 + hash = "sha256-o5UmRO+TmzYmDZHYGjNWNqqbRFcrTLi2ABJy+IVFxmY="; 43 }; 44 45 buildInputs =
+3 -15
pkgs/by-name/ic/icewm/package.nix
··· 37 pcre2, 38 perl, 39 pkg-config, 40 - fetchpatch, 41 }: 42 43 stdenv.mkDerivation (finalAttrs: { 44 pname = "icewm"; 45 - version = "3.7.1"; 46 47 src = fetchFromGitHub { 48 owner = "ice-wm"; 49 repo = "icewm"; 50 - rev = finalAttrs.version; 51 - hash = "sha256-4JF2ZAp8dx2fpSYRUz4I8US3oIZrSS90oljuxQDm38A="; 52 }; 53 54 strictDeps = true; ··· 93 libxcb 94 mkfontdir 95 pcre2 96 - ]; 97 - 98 - patches = [ 99 - # https://github.com/NixOS/nixpkgs/issues/385959 100 - # https://github.com/bbidulock/icewm/issues/794 101 - # TODO: remove this patch when it is included in a release 102 - (fetchpatch { 103 - name = "fdomenu-icons-quoted"; 104 - url = "https://github.com/bbidulock/icewm/commit/74bb0a2989127a3ff87d2932ff547713bc710cfe.patch"; 105 - hash = "sha256-/rMSJYGAJs9cgNu5j4Mov/PfO7ocXQeNRq0vasfRcKA="; 106 - }) 107 ]; 108 109 cmakeFlags = [
··· 37 pcre2, 38 perl, 39 pkg-config, 40 }: 41 42 stdenv.mkDerivation (finalAttrs: { 43 pname = "icewm"; 44 + version = "3.7.3"; 45 46 src = fetchFromGitHub { 47 owner = "ice-wm"; 48 repo = "icewm"; 49 + tag = finalAttrs.version; 50 + hash = "sha256-A9LLVIU00ddINMiiuBapp4dc4/w8Z+TeC+zXV1CtTCE="; 51 }; 52 53 strictDeps = true; ··· 92 libxcb 93 mkfontdir 94 pcre2 95 ]; 96 97 cmakeFlags = [
-1
pkgs/by-name/js/jsonnet/package.nix
··· 59 description = "Purely-functional configuration language that helps you define JSON data"; 60 maintainers = with lib.maintainers; [ 61 benley 62 - copumpkin 63 ]; 64 license = lib.licenses.asl20; 65 homepage = "https://github.com/google/jsonnet";
··· 59 description = "Purely-functional configuration language that helps you define JSON data"; 60 maintainers = with lib.maintainers; [ 61 benley 62 ]; 63 license = lib.licenses.asl20; 64 homepage = "https://github.com/google/jsonnet";
+32 -1
pkgs/by-name/k2/k2pdfopt/package.nix
··· 4 runCommand, 5 fetchzip, 6 fetchurl, 7 fetchFromGitHub, 8 cmake, 9 jbig2dec, ··· 117 cp ${k2pdfopt_src}/mupdf_mod/pdf-* ./source/pdf/ 118 ''; 119 }; 120 mupdf_modded = mupdf.overrideAttrs ( 121 { 122 patches ? [ ], 123 ... 124 }: 125 { 126 - patches = patches ++ [ mupdf_patch ]; 127 # This function is missing in font.c, see font-win32.c 128 postPatch = '' 129 echo "void pdf_install_load_system_font_funcs(fz_context *ctx) {}" >> source/fitz/font.c
··· 4 runCommand, 5 fetchzip, 6 fetchurl, 7 + fetchpatch, 8 fetchFromGitHub, 9 cmake, 10 jbig2dec, ··· 118 cp ${k2pdfopt_src}/mupdf_mod/pdf-* ./source/pdf/ 119 ''; 120 }; 121 + # mupdf_patch no longer applies cleanly against mupdf 1.25.0 or later, due to a conflicting 122 + # hunk (mupdf_conflict) introduced in commit bd8d337939f36f55b96cb6984f5c7bbf2f488ce0 of mupdf. 123 + # This merge conflict can be resolved as desired by reverting mupdf_conflict, applying mupdf_patch, 124 + # and finally reapplying mupdf_conflict, with an increased fuzz factor (see mupdf_modded below). 125 + # TODO: remove workaround with conflicting hunk when mupdf in k2pdfopt is updated to 1.25.0 or later 126 + mupdf_conflict = 127 + hash: revert: 128 + fetchpatch { 129 + name = "mupdf-conflicting-hunk" + (lib.optionalString revert "-reverted") + ".patch"; 130 + url = "https://github.com/ArtifexSoftware/mupdf/commit/bd8d337939f36f55b96cb6984f5c7bbf2f488ce0.patch"; 131 + inherit hash revert; 132 + includes = [ "source/fitz/stext-device.c" ]; 133 + postFetch = '' 134 + filterdiff -#6 "$out" > "$tmpfile" 135 + mv "$tmpfile" "$out" 136 + ''; 137 + }; 138 mupdf_modded = mupdf.overrideAttrs ( 139 { 140 patches ? [ ], 141 ... 142 }: 143 { 144 + # The fuzz factor is increased to automatically resolve the merge conflict. 145 + patchFlags = [ 146 + "-p1" 147 + "-F3" 148 + ]; 149 + # Reverting and reapplying the conflicting hunk is necessary, otherwise the result will be faulty. 150 + patches = patches ++ [ 151 + # revert conflicting hunk 152 + (mupdf_conflict "sha256-24tl9YBuZBYhb12yY3T0lKsA7NswfK0QcMYhb2IpepA=" true) 153 + # apply modifications 154 + mupdf_patch 155 + # reapply conflicting hunk 156 + (mupdf_conflict "sha256-bnBV7LyX1w/BXxBFF1bkA8x+/0I9Am33o8GiAeEKHYQ=" false) 157 + ]; 158 # This function is missing in font.c, see font-win32.c 159 postPatch = '' 160 echo "void pdf_install_load_system_font_funcs(fz_context *ctx) {}" >> source/fitz/font.c
+7 -4
pkgs/by-name/ke/keypunch/package.nix
··· 63 homepage = "https://github.com/bragefuglseth/keypunch"; 64 license = lib.licenses.gpl3Plus; 65 mainProgram = "keypunch"; 66 - maintainers = with lib.maintainers; [ 67 - tomasajt 68 - getchoo 69 - ]; 70 platforms = lib.platforms.linux; 71 }; 72 })
··· 63 homepage = "https://github.com/bragefuglseth/keypunch"; 64 license = lib.licenses.gpl3Plus; 65 mainProgram = "keypunch"; 66 + maintainers = 67 + with lib.maintainers; 68 + [ 69 + tomasajt 70 + getchoo 71 + ] 72 + ++ lib.teams.gnome-circle.members; 73 platforms = lib.platforms.linux; 74 }; 75 })
+1 -1
pkgs/by-name/kr/krep/package.nix
··· 27 28 doCheck = true; 29 doInstallCheck = true; 30 - nativeInstallCheck = [ versionCheckHook ]; 31 32 meta = { 33 description = "Blazingly fast string search utility designed for performance-critical applications";
··· 27 28 doCheck = true; 29 doInstallCheck = true; 30 + nativeInstallCheckInputs = [ versionCheckHook ]; 31 32 meta = { 33 description = "Blazingly fast string search utility designed for performance-critical applications";
+1 -1
pkgs/by-name/li/libsolv/package.nix
··· 66 homepage = "https://github.com/openSUSE/libsolv"; 67 license = licenses.bsd3; 68 platforms = platforms.linux ++ platforms.darwin; 69 - maintainers = with maintainers; [ copumpkin ]; 70 }; 71 }
··· 66 homepage = "https://github.com/openSUSE/libsolv"; 67 license = licenses.bsd3; 68 platforms = platforms.linux ++ platforms.darwin; 69 + maintainers = [ ]; 70 }; 71 }
+2 -2
pkgs/by-name/li/litmusctl/package.nix
··· 8 9 buildGoModule rec { 10 pname = "litmusctl"; 11 - version = "1.14.0"; 12 13 nativeBuildInputs = [ 14 installShellFiles ··· 22 owner = "litmuschaos"; 23 repo = "litmusctl"; 24 rev = "${version}"; 25 - hash = "sha256-Saj5sx5YkcKsnMrnIzPcLok+mgEZSh9p8rnfQbJhAeU="; 26 }; 27 28 vendorHash = "sha256-7FYOQ89aUFPX+5NCPYKg+YGCXstQ6j9DK4V2mCgklu0=";
··· 8 9 buildGoModule rec { 10 pname = "litmusctl"; 11 + version = "1.15.0"; 12 13 nativeBuildInputs = [ 14 installShellFiles ··· 22 owner = "litmuschaos"; 23 repo = "litmusctl"; 24 rev = "${version}"; 25 + hash = "sha256-SNqxfoYABKV4MheyP5G9nkRca/1+ozOPEvZAUtGdxh0="; 26 }; 27 28 vendorHash = "sha256-7FYOQ89aUFPX+5NCPYKg+YGCXstQ6j9DK4V2mCgklu0=";
+3 -3
pkgs/by-name/lu/ludusavi/package.nix
··· 32 33 rustPlatform.buildRustPackage rec { 34 pname = "ludusavi"; 35 - version = "0.29.0"; 36 37 src = fetchFromGitHub { 38 owner = "mtkennerly"; 39 repo = "ludusavi"; 40 rev = "v${version}"; 41 - hash = "sha256-+6/hpOFyAdYxh+HkOlc85utqIY4s4gyZoVQxin9hbkU="; 42 }; 43 44 useFetchCargoVendor = true; 45 - cargoHash = "sha256-9ki6/KDoa1yLg7mZS7tB7ZjjiZIWOne4Ol7fIK4YPSo="; 46 47 dontWrapGApps = true; 48
··· 32 33 rustPlatform.buildRustPackage rec { 34 pname = "ludusavi"; 35 + version = "0.29.1"; 36 37 src = fetchFromGitHub { 38 owner = "mtkennerly"; 39 repo = "ludusavi"; 40 rev = "v${version}"; 41 + hash = "sha256-IApPudo8oD6YkYJkGpowqpaqrsl2/Q2VFyYfYQI3mN0="; 42 }; 43 44 useFetchCargoVendor = true; 45 + cargoHash = "sha256-ixxUz+XJPzPu51sxHpXs92Tis2gj9SElqYtNiN+n2EY="; 46 47 dontWrapGApps = true; 48
+6 -7
pkgs/by-name/me/metadata-cleaner/package.nix
··· 21 python3.pkgs.buildPythonApplication rec { 22 pname = "metadata-cleaner"; 23 version = "2.5.6"; 24 - 25 - format = "other"; 26 27 src = fetchFromGitLab { 28 owner = "rmnvgr"; 29 repo = "metadata-cleaner"; 30 - rev = "v${version}"; 31 hash = "sha256-J+nwgLbAFoh1gq3J4cqQEShZJCSZesyCjT9DfkCWIHs="; 32 }; 33 ··· 61 updateScript = nix-update-script { }; 62 }; 63 64 - meta = with lib; { 65 description = "Python GTK application to view and clean metadata in files, using mat2"; 66 mainProgram = "metadata-cleaner"; 67 homepage = "https://gitlab.com/rmnvgr/metadata-cleaner"; 68 - changelog = "https://gitlab.com/rmnvgr/metadata-cleaner/-/blob/${src.rev}/CHANGELOG.md"; 69 - license = with licenses; [ 70 gpl3Plus 71 cc-by-sa-40 72 ]; 73 - maintainers = with maintainers; [ dotlambda ] ++ lib.teams.gnome-circle.members; 74 }; 75 }
··· 21 python3.pkgs.buildPythonApplication rec { 22 pname = "metadata-cleaner"; 23 version = "2.5.6"; 24 + pyproject = false; 25 26 src = fetchFromGitLab { 27 owner = "rmnvgr"; 28 repo = "metadata-cleaner"; 29 + tag = "v${version}"; 30 hash = "sha256-J+nwgLbAFoh1gq3J4cqQEShZJCSZesyCjT9DfkCWIHs="; 31 }; 32 ··· 60 updateScript = nix-update-script { }; 61 }; 62 63 + meta = { 64 description = "Python GTK application to view and clean metadata in files, using mat2"; 65 mainProgram = "metadata-cleaner"; 66 homepage = "https://gitlab.com/rmnvgr/metadata-cleaner"; 67 + changelog = "https://gitlab.com/rmnvgr/metadata-cleaner/-/blob/v${version}/CHANGELOG.md"; 68 + license = with lib.licenses; [ 69 gpl3Plus 70 cc-by-sa-40 71 ]; 72 + maintainers = with lib.maintainers; [ dotlambda ]; 73 }; 74 }
+1 -1
pkgs/by-name/mi/micro-httpd/package.nix
··· 24 description = "Really small HTTP server"; 25 license = licenses.bsd2; 26 platforms = platforms.unix; 27 - maintainers = with maintainers; [ copumpkin ]; 28 mainProgram = "micro_httpd"; 29 }; 30 }
··· 24 description = "Really small HTTP server"; 25 license = licenses.bsd2; 26 platforms = platforms.unix; 27 + maintainers = [ ]; 28 mainProgram = "micro_httpd"; 29 }; 30 }
+3 -3
pkgs/by-name/mi/minio-client/package.nix
··· 7 8 buildGoModule rec { 9 pname = "minio-client"; 10 - version = "2025-03-12T17-29-24Z"; 11 12 src = fetchFromGitHub { 13 owner = "minio"; 14 repo = "mc"; 15 rev = "RELEASE.${version}"; 16 - sha256 = "sha256-8n/qjM+FBrjbSLcd9iVioh3iEAkMNrIo5fG/ZQkAmBo="; 17 }; 18 19 - vendorHash = "sha256-P7W8xgHc+2ksZnY0iuuPKjwsxSqjhPdiUfNMe18ldL0="; 20 21 subPackages = [ "." ]; 22
··· 7 8 buildGoModule rec { 9 pname = "minio-client"; 10 + version = "2025-04-08T15-39-49Z"; 11 12 src = fetchFromGitHub { 13 owner = "minio"; 14 repo = "mc"; 15 rev = "RELEASE.${version}"; 16 + sha256 = "sha256-H/iIlzdOLcE2xn96FuyyFcXC0is94MUYbfjA5b/hEqg="; 17 }; 18 19 + vendorHash = "sha256-0Lfjhd4DlIpnbMp/4gObgeO9L1QC03FhJbFDLXW6UOQ="; 20 21 subPackages = [ "." ]; 22
+3 -3
pkgs/by-name/my/myks/package.nix
··· 10 11 buildGoModule rec { 12 pname = "myks"; 13 - version = "4.8.0"; 14 15 src = fetchFromGitHub { 16 owner = "mykso"; 17 repo = "myks"; 18 tag = "v${version}"; 19 - hash = "sha256-B2arJ7m7q/vf1YcaYquhkBU3anekZAwRd1ZIvwvYnmM="; 20 }; 21 22 - vendorHash = "sha256-/LpBb0wbK7OP8HmL2/uMVeilIs4P51Pf+sg23zbPqtI="; 23 24 subPackages = "."; 25
··· 10 11 buildGoModule rec { 12 pname = "myks"; 13 + version = "4.8.1"; 14 15 src = fetchFromGitHub { 16 owner = "mykso"; 17 repo = "myks"; 18 tag = "v${version}"; 19 + hash = "sha256-bjry2szn4bOGsIeJl221T+6aV+MW9yXQcLBS3sJcswQ="; 20 }; 21 22 + vendorHash = "sha256-kUOjbBosj2u25n/fGoC0DpAYkWIgoxIfkXJlNpRALfw="; 23 24 subPackages = "."; 25
+148 -313
pkgs/by-name/na/naps2/deps.json
··· 2 { 3 "pname": "AtkSharp", 4 "version": "3.24.24.95", 5 - "sha256": "0x4nr8rx50h87n6ijv5a4vkavs2x61bsrkxvam27h178finmc1rn" 6 }, 7 { 8 "pname": "Autofac", 9 "version": "8.0.0", 10 - "sha256": "0w3y76vik6rfr9am649v4w6dyyp5s25244q3il2x8si11xgl6y7d" 11 }, 12 { 13 "pname": "Ben.Demystifier", 14 "version": "0.4.1", 15 - "sha256": "1szlrhvwpwkjhpgvjlrpjg714bz1yhyljs72pxni3li4mgnklk1f" 16 }, 17 { 18 "pname": "CairoSharp", 19 "version": "3.24.24.95", 20 - "sha256": "05fq8jdlxzrrw7gh0i3w272q34wzmb3bizcghjnf9mlh1jcn1iy9" 21 }, 22 { 23 "pname": "CommandLineParser", 24 "version": "2.9.1", 25 - "sha256": "1sldkj8lakggn4hnyabjj1fppqh50fkdrr1k99d4gswpbk5kv582" 26 }, 27 { 28 "pname": "EmbedIO", 29 "version": "3.5.2", 30 - "sha256": "13saxicm07nkppzfxb60cpm1501n4ixaqhkvvqqfaqgifma9z8bv" 31 }, 32 { 33 "pname": "Eto.Forms", 34 "version": "2.8.3", 35 - "sha256": "00v2ffi9sl8cjllrz8rw3a5s5cgm9bfh45852znwz18zp06rh5bg" 36 }, 37 { 38 "pname": "Eto.Platform.Gtk", 39 "version": "2.8.3", 40 - "sha256": "0av22hyx6xf6cnm89a4jvpnm80h1p6a6301r4n2906ihai9k3gsk" 41 }, 42 { 43 "pname": "GdkSharp", 44 "version": "3.24.24.95", 45 - "sha256": "1wp2kgng0pwg8q5bl1zz4lzzj603qcjljql61h83bxa60q7c121m" 46 }, 47 { 48 "pname": "GioSharp", 49 "version": "3.24.24.95", 50 - "sha256": "121xb98hg955vwxfv1r5idr5a2zv09xpcmqckm7hhgprlzhz2cg5" 51 }, 52 { 53 "pname": "GLibSharp", 54 "version": "3.24.24.95", 55 - "sha256": "1l5nbg0qwjp55wfj06vnk5q5r5cnq5h064qp4k5xf8qlma8d346n" 56 }, 57 { 58 "pname": "Google.Protobuf", 59 "version": "3.25.1", 60 - "sha256": "0zcw9vmv2bdai3zaip86s37lj3r5z4zvcs9mf5a9nih0hy4gzwsi" 61 }, 62 { 63 "pname": "Grpc.Core.Api", 64 "version": "2.59.0", 65 - "sha256": "0pajrxg0dsfnyxwrd2li5nrabz0r3b3bql776l44hn5rg1s1287k" 66 }, 67 { 68 "pname": "Grpc.Tools", 69 - "version": "2.62.0", 70 - "sha256": "1x6ydsvjckxdpnrl07h307wql5gghlb4fasf591ppr16kv5igdfp" 71 }, 72 { 73 "pname": "GrpcDotNetNamedPipes", 74 "version": "3.0.0", 75 - "sha256": "1sndscz12dldjfvifp04ml56fkbl1vwb9llzq0h58hwri35nnbv7" 76 }, 77 { 78 "pname": "GtkSharp", 79 "version": "3.24.24.95", 80 - "sha256": "0y20zn8wv72dg2bc7f95l8iz8z51ap08q5gnv6f2xnhz8zjf86xh" 81 }, 82 { 83 "pname": "IsExternalInit", 84 "version": "1.0.3", 85 - "sha256": "01flcxs8m7m916s5rx5iyvzh6fjdl1dvcyzl9cpzn0d17yp8dz2i" 86 }, 87 { 88 "pname": "Makaretu.Dns", 89 "version": "2.0.1", 90 - "sha256": "1l6ajfdcvqpz078wl6nm44bnhd8h47nssb5qgp5al9zqic50mqnd" 91 - }, 92 - { 93 - "pname": "Microsoft.Bcl.AsyncInterfaces", 94 - "version": "7.0.0", 95 - "sha256": "1waiggh3g1cclc81gmjrqbh128kwfjky3z79ma4bd2ms9pa3gvfm" 96 }, 97 { 98 "pname": "Microsoft.Bcl.AsyncInterfaces", 99 "version": "8.0.0", 100 - "sha256": "0z4jq5prnxyb4p3163yxx35znpd2msjd8hw8ysmv4ah90f5sd9gm" 101 - }, 102 - { 103 - "pname": "Microsoft.Extensions.Configuration", 104 - "version": "2.1.0", 105 - "sha256": "04rjl38wlr1jjjpbzgf64jp0ql6sbzbil0brwq9mgr3hdgwd7vx2" 106 - }, 107 - { 108 - "pname": "Microsoft.Extensions.Configuration.Abstractions", 109 - "version": "2.1.0", 110 - "sha256": "03gzlr3z9j1xnr1k6y91zgxpz3pj27i3zsvjwj7i8jqnlqmk7pxd" 111 }, 112 { 113 "pname": "Microsoft.Extensions.Configuration.Abstractions", 114 "version": "8.0.0", 115 - "sha256": "1jlpa4ggl1gr5fs7fdcw04li3y3iy05w3klr9lrrlc7v8w76kq71" 116 - }, 117 - { 118 - "pname": "Microsoft.Extensions.Configuration.Binder", 119 - "version": "2.1.0", 120 - "sha256": "0x1888w5ypavvszfmpja9krgc64527prs75vm8xbf9fv3rgsplql" 121 }, 122 { 123 "pname": "Microsoft.Extensions.DependencyInjection", 124 "version": "8.0.0", 125 - "sha256": "0i7qziz0iqmbk8zzln7kx9vd0lbx1x3va0yi3j1bgkjir13h78ps" 126 - }, 127 - { 128 - "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 129 - "version": "2.1.0", 130 - "sha256": "0c0cx8r5xkjpxmcfp51959jnp55qjvq28d9vaslk08avvi1by12s" 131 }, 132 { 133 "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 134 "version": "8.0.0", 135 - "sha256": "1zw0bpp5742jzx03wvqc8csnvsbgdqi0ls9jfc5i2vd3cl8b74pg" 136 }, 137 { 138 "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 139 "version": "8.0.1", 140 - "sha256": "1wyhpamm1nqjfi3r463dhxljdlr6rm2ax4fvbgq2s0j3jhpdhd4p" 141 - }, 142 - { 143 - "pname": "Microsoft.Extensions.Logging", 144 - "version": "2.1.0", 145 - "sha256": "0dii8i7s6libfnspz2xb96ayagb4rwqj2kmr162vndivr9rmbm06" 146 }, 147 { 148 "pname": "Microsoft.Extensions.Logging", 149 "version": "8.0.0", 150 - "sha256": "0nppj34nmq25gnrg0wh1q22y4wdqbih4ax493f226azv8mkp9s1i" 151 - }, 152 - { 153 - "pname": "Microsoft.Extensions.Logging.Abstractions", 154 - "version": "2.1.0", 155 - "sha256": "1gvgif1wcx4k6pv7gc00qv1hid945jdywy1s50s33q0hfd91hbnj" 156 }, 157 { 158 "pname": "Microsoft.Extensions.Logging.Abstractions", 159 "version": "8.0.0", 160 - "sha256": "1klcqhg3hk55hb6vmjiq2wgqidsl81aldw0li2z98lrwx26msrr6" 161 }, 162 { 163 "pname": "Microsoft.Extensions.Logging.Abstractions", 164 "version": "8.0.1", 165 - "sha256": "0i9pgmk60b8xlws3q9z890gim1xjq42dhyh6dj4xvbycmgg1x1sd" 166 - }, 167 - { 168 - "pname": "Microsoft.Extensions.Options", 169 - "version": "2.1.0", 170 - "sha256": "0w9644sryd1c6r3n4lq2cgd5pn6jl3k5m38a05m7vjffa4m2spd2" 171 }, 172 { 173 "pname": "Microsoft.Extensions.Options", 174 "version": "8.0.0", 175 - "sha256": "0p50qn6zhinzyhq9sy5svnmqqwhw2jajs2pbjh9sah504wjvhscz" 176 - }, 177 - { 178 - "pname": "Microsoft.Extensions.Primitives", 179 - "version": "2.1.0", 180 - "sha256": "1r9gzwdfmb8ysnc4nzmyz5cyar1lw0qmizsvrsh252nhlyg06nmb" 181 }, 182 { 183 "pname": "Microsoft.Extensions.Primitives", 184 "version": "8.0.0", 185 - "sha256": "0aldaz5aapngchgdr7dax9jw5wy7k7hmjgjpfgfv1wfif27jlkqm" 186 }, 187 { 188 "pname": "Microsoft.NETCore.App", 189 "version": "2.1.30", 190 - "sha256": "10brwj7csacwa4ra37pjb2bqwg961lxi576330xlhhwqixkjkrqf" 191 }, 192 { 193 "pname": "Microsoft.NETCore.DotNetAppHost", 194 "version": "2.1.30", 195 - "sha256": "0rabvmid1n604pk9rndlq62zqhq77p7cznmq9bzr7hshvr2rszab" 196 }, 197 { 198 "pname": "Microsoft.NETCore.DotNetHostPolicy", 199 "version": "2.1.30", 200 - "sha256": "1zk6ajalssvpm2yv4ri3g6hbxjaj1ns0y4w3g98wss54k7v44vpw" 201 }, 202 { 203 "pname": "Microsoft.NETCore.DotNetHostResolver", 204 "version": "2.1.30", 205 - "sha256": "0k3k6ldi5lj9ab9bdnhzfiykr6ipwz17d9g952bcanhvmk57l376" 206 - }, 207 - { 208 - "pname": "Microsoft.NETCore.Platforms", 209 - "version": "1.1.0", 210 - "sha256": "08vh1r12g6ykjygq5d3vq09zylgb84l63k49jc4v8faw9g93iqqm" 211 }, 212 { 213 "pname": "Microsoft.NETCore.Platforms", 214 "version": "1.1.1", 215 - "sha256": "164wycgng4mi9zqi2pnsf1pq6gccbqvw6ib916mqizgjmd8f44pj" 216 }, 217 { 218 "pname": "Microsoft.NETCore.Platforms", 219 "version": "2.1.14", 220 - "sha256": "0mbmcgsky65y0xai4xjfnhm07kn856y9kpn6hnm1b5m3mdsf8dkq" 221 - }, 222 - { 223 - "pname": "Microsoft.NETCore.Platforms", 224 - "version": "5.0.0", 225 - "sha256": "0mwpwdflidzgzfx2dlpkvvnkgkr2ayaf0s80737h4wa35gaj11rc" 226 }, 227 { 228 "pname": "Microsoft.NETCore.Targets", 229 "version": "1.1.0", 230 - "sha256": "193xwf33fbm0ni3idxzbr5fdq3i2dlfgihsac9jj7whj0gd902nh" 231 }, 232 { 233 "pname": "Microsoft.NETCore.Targets", 234 "version": "2.0.0", 235 - "sha256": "0nsrrhafvxqdx8gmlgsz612bmlll2w3l2qn2ygdzr92rp1nqyka2" 236 - }, 237 - { 238 - "pname": "Microsoft.NETFramework.ReferenceAssemblies", 239 - "version": "1.0.3", 240 - "sha256": "0hc4d4d4358g5192mf8faijwk0bpf9pjwcfd3h85sr67j0zhj6hl" 241 - }, 242 - { 243 - "pname": "Microsoft.NETFramework.ReferenceAssemblies.net462", 244 - "version": "1.0.3", 245 - "sha256": "08bfss2p262d8zj41xqndv0qgvz9lq636k2xhl80jl23ay22lsgf" 246 }, 247 { 248 "pname": "Microsoft.Win32.Primitives", 249 "version": "4.3.0", 250 - "sha256": "0j0c1wj4ndj21zsgivsc24whiya605603kxrbiw6wkfdync464wq" 251 - }, 252 - { 253 - "pname": "Microsoft.Win32.Registry", 254 - "version": "5.0.0", 255 - "sha256": "102hvhq2gmlcbq8y2cb7hdr2dnmjzfp2k3asr1ycwrfacwyaak7n" 256 }, 257 { 258 "pname": "MimeKitLite", 259 - "version": "4.4.0", 260 - "sha256": "1am381zbh89qa520pllsa92by92lg6wn0zxhqa26z7mlh6jwc8nz" 261 }, 262 { 263 "pname": "NAPS2.Mdns", 264 "version": "1.0.1", 265 - "sha256": "0xi46brppcjm8mrabnffahkmkcakhw94cnq1w2yk8y2hyq9qb4ms" 266 }, 267 { 268 "pname": "NAPS2.NTwain", 269 "version": "1.0.0", 270 - "sha256": "088dw31h7rlgr0s05snm382wz65wi46yaizjnjpd0wzw2mb58yld" 271 }, 272 { 273 "pname": "NAPS2.Pdfium.Binaries", 274 "version": "1.1.0", 275 - "sha256": "0rnqkk6y047p6a6li2dr2cygkhjn3d2a13yn3rck5gf854k3q3ws" 276 }, 277 { 278 "pname": "NAPS2.PdfSharp", 279 "version": "1.0.1", 280 - "sha256": "0x51whjhlqd5r0f1s5hjx41zzwwcwcdl19q6iz6k7fwx81746w0w" 281 }, 282 { 283 "pname": "NAPS2.Tesseract.Binaries", 284 "version": "1.2.0", 285 - "sha256": "0m1aksfjg4vfl2llvhd2in0a5i4wa72nmfw2h78y4wwxmjplbfz2" 286 }, 287 { 288 "pname": "NAPS2.Wia", 289 "version": "2.0.3", 290 - "sha256": "0xszkccb8fy2x60nkblpda78wx2d86fn8y49j94qmvz4rp2nw98i" 291 }, 292 { 293 "pname": "NETStandard.Library", 294 "version": "2.0.3", 295 - "sha256": "1fn9fxppfcg4jgypp2pmrpr6awl3qz1xmnri0cygpkwvyx27df1y" 296 }, 297 { 298 "pname": "Newtonsoft.Json", 299 "version": "13.0.3", 300 - "sha256": "0xrwysmrn4midrjal8g2hr1bbg38iyisl0svamb11arqws4w2bw7" 301 }, 302 { 303 "pname": "NLog", 304 - "version": "5.2.8", 305 - "sha256": "1z3h20m5rjnizm1jbf5j0vpdc1f373rzzkg6478p1lxv5j385c12" 306 }, 307 { 308 "pname": "NLog.Extensions.Logging", 309 - "version": "5.3.8", 310 - "sha256": "1qnz91099f51vk7f5g2ig0041maw5hcbyqllxvj5zj7zkp0qw9b8" 311 }, 312 { 313 "pname": "PangoSharp", 314 "version": "3.24.24.95", 315 - "sha256": "0548jrkgzia899va9smhh7if49nk6avbswb68xmc52k37lins6b2" 316 }, 317 { 318 "pname": "Polyfill", 319 - "version": "4.2.0", 320 - "sha256": "0h25jszwrkmxlklcr6mjjmz71rn6q36pqb5jx36l94lrccy2k0a8" 321 }, 322 { 323 "pname": "runtime.any.System.Collections", 324 "version": "4.3.0", 325 - "sha256": "0bv5qgm6vr47ynxqbnkc7i797fdi8gbjjxii173syrx14nmrkwg0" 326 }, 327 { 328 "pname": "runtime.any.System.Diagnostics.Tracing", 329 "version": "4.3.0", 330 - "sha256": "00j6nv2xgmd3bi347k00m7wr542wjlig53rmj28pmw7ddcn97jbn" 331 }, 332 { 333 "pname": "runtime.any.System.Globalization", 334 "version": "4.3.0", 335 - "sha256": "1daqf33hssad94lamzg01y49xwndy2q97i2lrb7mgn28656qia1x" 336 }, 337 { 338 "pname": "runtime.any.System.Globalization.Calendars", 339 "version": "4.3.0", 340 - "sha256": "1ghhhk5psqxcg6w88sxkqrc35bxcz27zbqm2y5p5298pv3v7g201" 341 }, 342 { 343 "pname": "runtime.any.System.IO", 344 "version": "4.3.0", 345 - "sha256": "0l8xz8zn46w4d10bcn3l4yyn4vhb3lrj2zw8llvz7jk14k4zps5x" 346 }, 347 { 348 "pname": "runtime.any.System.Reflection", 349 "version": "4.3.0", 350 - "sha256": "02c9h3y35pylc0zfq3wcsvc5nqci95nrkq0mszifc0sjx7xrzkly" 351 }, 352 { 353 "pname": "runtime.any.System.Reflection.Primitives", 354 "version": "4.3.0", 355 - "sha256": "0x1mm8c6iy8rlxm8w9vqw7gb7s1ljadrn049fmf70cyh42vdfhrf" 356 }, 357 { 358 "pname": "runtime.any.System.Resources.ResourceManager", 359 "version": "4.3.0", 360 - "sha256": "03kickal0iiby82wa5flar18kyv82s9s6d4xhk5h4bi5kfcyfjzl" 361 }, 362 { 363 "pname": "runtime.any.System.Runtime", 364 "version": "4.3.0", 365 - "sha256": "1cqh1sv3h5j7ixyb7axxbdkqx6cxy00p4np4j91kpm492rf4s25b" 366 }, 367 { 368 "pname": "runtime.any.System.Runtime.Handles", 369 "version": "4.3.0", 370 - "sha256": "0bh5bi25nk9w9xi8z23ws45q5yia6k7dg3i4axhfqlnj145l011x" 371 }, 372 { 373 "pname": "runtime.any.System.Runtime.InteropServices", 374 "version": "4.3.0", 375 - "sha256": "0c3g3g3jmhlhw4klrc86ka9fjbl7i59ds1fadsb2l8nqf8z3kb19" 376 }, 377 { 378 "pname": "runtime.any.System.Text.Encoding", 379 "version": "4.3.0", 380 - "sha256": "0aqqi1v4wx51h51mk956y783wzags13wa7mgqyclacmsmpv02ps3" 381 }, 382 { 383 "pname": "runtime.any.System.Text.Encoding.Extensions", 384 "version": "4.3.0", 385 - "sha256": "0lqhgqi0i8194ryqq6v2gqx0fb86db2gqknbm0aq31wb378j7ip8" 386 }, 387 { 388 "pname": "runtime.any.System.Threading.Tasks", 389 "version": "4.3.0", 390 - "sha256": "03mnvkhskbzxddz4hm113zsch1jyzh2cs450dk3rgfjp8crlw1va" 391 }, 392 { 393 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 394 "version": "4.3.2", 395 - "sha256": "0rwpqngkqiapqc5c2cpkj7idhngrgss5qpnqg0yh40mbyflcxf8i" 396 }, 397 { 398 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 399 "version": "4.3.2", 400 - "sha256": "1n06gxwlinhs0w7s8a94r1q3lwqzvynxwd3mp10ws9bg6gck8n4r" 401 }, 402 { 403 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 404 "version": "4.3.2", 405 - "sha256": "0404wqrc7f2yc0wxv71y3nnybvqx8v4j9d47hlscxy759a525mc3" 406 }, 407 { 408 "pname": "runtime.linux-arm64.Microsoft.NETCore.App", 409 "version": "2.1.30", 410 - "sha256": "039r4c42mz8fg8nqn8p3v0dxnjv681xlllhrc4l91rbbwv04li6j" 411 }, 412 { 413 "pname": "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost", 414 "version": "2.1.30", 415 - "sha256": "00pm387jvv574jsdd1261mbvxd7lbjbsfx3wq0z0iqjhr31pgmw1" 416 }, 417 { 418 "pname": "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy", 419 "version": "2.1.30", 420 - "sha256": "1gjjs4xvg9x48lg00ys6r5vc00s973aknpqp0ffa946s8m8xhlfw" 421 }, 422 { 423 "pname": "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver", 424 "version": "2.1.30", 425 - "sha256": "0jyzw9wr9sgllgj08vdf716p27s13ad46nah2q1qmfa05cgdbikb" 426 }, 427 { 428 "pname": "runtime.linux-x64.Microsoft.NETCore.App", 429 "version": "2.1.30", 430 - "sha256": "1wy9kagwj6avvhpp4lrlxw5sqgh4zlmii9wvf474fx999szi5bqb" 431 }, 432 { 433 "pname": "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost", 434 "version": "2.1.30", 435 - "sha256": "0mrlvhm6yb3x40pfm4smi67p6wm3hi71jdnawqkqy73g203rjmgx" 436 }, 437 { 438 "pname": "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy", 439 "version": "2.1.30", 440 - "sha256": "1zv9i8wqpsdr2vx35i3qzad1yvz00l6i9f00fclw02v2p92jz9c1" 441 }, 442 { 443 "pname": "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver", 444 "version": "2.1.30", 445 - "sha256": "1s6zx2hpg60pscvz8yfdkxpdg1lhs534x5mz3yryxa91nfzhxv95" 446 }, 447 { 448 "pname": "runtime.native.System", 449 "version": "4.3.0", 450 - "sha256": "15hgf6zaq9b8br2wi1i3x0zvmk410nlmsmva9p0bbg73v6hml5k4" 451 }, 452 { 453 "pname": "runtime.native.System.Net.Http", 454 "version": "4.3.0", 455 - "sha256": "1n6rgz5132lcibbch1qlf0g9jk60r0kqv087hxc0lisy50zpm7kk" 456 }, 457 { 458 "pname": "runtime.native.System.Security.Cryptography.Apple", 459 "version": "4.3.0", 460 - "sha256": "1b61p6gw1m02cc1ry996fl49liiwky6181dzr873g9ds92zl326q" 461 }, 462 { 463 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 464 "version": "4.3.2", 465 - "sha256": "0zy5r25jppz48i2bkg8b9lfig24xixg6nm3xyr1379zdnqnpm8f6" 466 }, 467 { 468 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 469 "version": "4.3.2", 470 - "sha256": "096ch4n4s8k82xga80lfmpimpzahd2ip1mgwdqgar0ywbbl6x438" 471 }, 472 { 473 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 474 "version": "4.3.2", 475 - "sha256": "1dm8fifl7rf1gy7lnwln78ch4rw54g0pl5g1c189vawavll7p6rj" 476 }, 477 { 478 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 479 "version": "4.3.0", 480 - "sha256": "10yc8jdrwgcl44b4g93f1ds76b176bajd3zqi2faf5rvh1vy9smi" 481 }, 482 { 483 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 484 "version": "4.3.2", 485 - "sha256": "1m9z1k9kzva9n9kwinqxl97x2vgl79qhqjlv17k9s2ymcyv2bwr6" 486 }, 487 { 488 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 489 "version": "4.3.2", 490 - "sha256": "1cpx56mcfxz7cpn57wvj18sjisvzq8b5vd9rw16ihd2i6mcp3wa1" 491 }, 492 { 493 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 494 "version": "4.3.2", 495 - "sha256": "15gsm1a8jdmgmf8j5v1slfz8ks124nfdhk2vxs2rw3asrxalg8hi" 496 }, 497 { 498 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 499 "version": "4.3.2", 500 - "sha256": "0q0n5q1r1wnqmr5i5idsrd9ywl33k0js4pngkwq9p368mbxp8x1w" 501 }, 502 { 503 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 504 "version": "4.3.2", 505 - "sha256": "1x0g58pbpjrmj2x2qw17rdwwnrcl0wvim2hdwz48lixvwvp22n9c" 506 }, 507 { 508 "pname": "runtime.unix.Microsoft.Win32.Primitives", 509 "version": "4.3.0", 510 - "sha256": "0y61k9zbxhdi0glg154v30kkq7f8646nif8lnnxbvkjpakggd5id" 511 }, 512 { 513 "pname": "runtime.unix.System.Diagnostics.Debug", 514 "version": "4.3.0", 515 - "sha256": "1lps7fbnw34bnh3lm31gs5c0g0dh7548wfmb8zz62v0zqz71msj5" 516 }, 517 { 518 "pname": "runtime.unix.System.IO.FileSystem", 519 "version": "4.3.0", 520 - "sha256": "14nbkhvs7sji5r1saj2x8daz82rnf9kx28d3v2qss34qbr32dzix" 521 }, 522 { 523 "pname": "runtime.unix.System.Net.Primitives", 524 "version": "4.3.0", 525 - "sha256": "0bdnglg59pzx9394sy4ic66kmxhqp8q8bvmykdxcbs5mm0ipwwm4" 526 }, 527 { 528 "pname": "runtime.unix.System.Private.Uri", 529 "version": "4.3.0", 530 - "sha256": "1jx02q6kiwlvfksq1q9qr17fj78y5v6mwsszav4qcz9z25d5g6vk" 531 }, 532 { 533 "pname": "runtime.unix.System.Runtime.Extensions", 534 "version": "4.3.0", 535 - "sha256": "0pnxxmm8whx38dp6yvwgmh22smknxmqs5n513fc7m4wxvs1bvi4p" 536 }, 537 { 538 "pname": "SharpZipLib", 539 "version": "1.4.2", 540 - "sha256": "0ijrzz2szxjmv2cipk7rpmg14dfaigdkg7xabjvb38ih56m9a27y" 541 }, 542 { 543 "pname": "SimpleBase", 544 "version": "1.3.1", 545 - "sha256": "0mjvqbn3b6ai7nhzs5mssy2imn9lw10z4sj8nhgiapyqy9qlim0n" 546 }, 547 { 548 "pname": "SixLabors.Fonts", 549 "version": "1.0.1", 550 - "sha256": "08ljgagwm8aha9p4plqdnf507gcisajd9frcbvaykikrsrzpm33y" 551 }, 552 { 553 "pname": "StandardSocketsHttpHandler", 554 "version": "2.2.0.8", 555 - "sha256": "18h3rzh9pp3b6mjx1m4jvwwhv5abjqsd1nnbibc0gbkvbcrb16ni" 556 }, 557 { 558 "pname": "System.Buffers", 559 "version": "4.3.0", 560 - "sha256": "0fgns20ispwrfqll4q1zc1waqcmylb3zc50ys9x8zlwxh9pmd9jy" 561 - }, 562 - { 563 - "pname": "System.Buffers", 564 - "version": "4.4.0", 565 - "sha256": "183f8063w8zqn99pv0ni0nnwh7fgx46qzxamwnans55hhs2l0g19" 566 - }, 567 - { 568 - "pname": "System.Buffers", 569 - "version": "4.5.1", 570 - "sha256": "04kb1mdrlcixj9zh1xdi5as0k0qi8byr5mi3p3jcxx72qz93s2y3" 571 }, 572 { 573 "pname": "System.Collections", 574 "version": "4.3.0", 575 - "sha256": "19r4y64dqyrq6k4706dnyhhw7fs24kpp3awak7whzss39dakpxk9" 576 }, 577 { 578 "pname": "System.Collections.Concurrent", 579 "version": "4.3.0", 580 - "sha256": "0wi10md9aq33jrkh2c24wr2n9hrpyamsdhsxdcnf43b7y86kkii8" 581 - }, 582 - { 583 - "pname": "System.Collections.Immutable", 584 - "version": "5.0.0", 585 - "sha256": "1kvcllagxz2q92g81zkz81djkn2lid25ayjfgjalncyc68i15p0r" 586 }, 587 { 588 "pname": "System.Collections.Immutable", 589 "version": "8.0.0", 590 - "sha256": "0z53a42zjd59zdkszcm7pvij4ri5xbb8jly9hzaad9khlf69bcqp" 591 - }, 592 - { 593 - "pname": "System.ComponentModel.Annotations", 594 - "version": "5.0.0", 595 - "sha256": "021h7x98lblq9avm1bgpa4i31c2kgsa7zn4sqhxf39g087ar756j" 596 }, 597 { 598 "pname": "System.Diagnostics.Debug", 599 "version": "4.3.0", 600 - "sha256": "00yjlf19wjydyr6cfviaph3vsjzg3d5nvnya26i2fvfg53sknh3y" 601 }, 602 { 603 "pname": "System.Diagnostics.DiagnosticSource", 604 "version": "4.3.0", 605 - "sha256": "0z6m3pbiy0qw6rn3n209rrzf9x1k4002zh90vwcrsym09ipm2liq" 606 }, 607 { 608 "pname": "System.Diagnostics.DiagnosticSource", 609 "version": "7.0.2", 610 - "sha256": "1h97ikph775gya93qsjjaka87qcygbyh1064rh1hnfcnp5xv0ipi" 611 }, 612 { 613 "pname": "System.Diagnostics.Tracing", 614 "version": "4.3.0", 615 - "sha256": "1m3bx6c2s958qligl67q7grkwfz3w53hpy7nc97mh6f7j5k168c4" 616 }, 617 { 618 "pname": "System.Globalization", 619 "version": "4.3.0", 620 - "sha256": "1cp68vv683n6ic2zqh2s1fn4c2sd87g5hpp6l4d4nj4536jz98ki" 621 }, 622 { 623 "pname": "System.Globalization.Calendars", 624 "version": "4.3.0", 625 - "sha256": "1xwl230bkakzzkrggy1l1lxmm3xlhk4bq2pkv790j5lm8g887lxq" 626 }, 627 { 628 "pname": "System.Globalization.Extensions", 629 "version": "4.3.0", 630 - "sha256": "02a5zfxavhv3jd437bsncbhd2fp1zv4gxzakp1an9l6kdq1mcqls" 631 }, 632 { 633 "pname": "System.IO", 634 "version": "4.3.0", 635 - "sha256": "05l9qdrzhm4s5dixmx68kxwif4l99ll5gqmh7rqgw554fx0agv5f" 636 }, 637 { 638 "pname": "System.IO.FileSystem", 639 "version": "4.3.0", 640 - "sha256": "0z2dfrbra9i6y16mm9v1v6k47f0fm617vlb7s5iybjjsz6g1ilmw" 641 }, 642 { 643 "pname": "System.IO.FileSystem.Primitives", 644 "version": "4.3.0", 645 - "sha256": "0j6ndgglcf4brg2lz4wzsh1av1gh8xrzdsn9f0yznskhqn1xzj9c" 646 }, 647 { 648 "pname": "System.Linq", 649 "version": "4.3.0", 650 - "sha256": "1w0gmba695rbr80l1k2h4mrwzbzsyfl2z4klmpbsvsg5pm4a56s7" 651 - }, 652 - { 653 - "pname": "System.Memory", 654 - "version": "4.5.0", 655 - "sha256": "1layqpcx1q4l805fdnj2dfqp6ncx2z42ca06rgsr6ikq4jjgbv30" 656 - }, 657 - { 658 - "pname": "System.Memory", 659 - "version": "4.5.1", 660 - "sha256": "0f07d7hny38lq9w69wx4lxkn4wszrqf9m9js6fh9is645csm167c" 661 - }, 662 - { 663 - "pname": "System.Memory", 664 - "version": "4.5.4", 665 - "sha256": "14gbbs22mcxwggn0fcfs1b062521azb9fbb7c113x0mq6dzq9h6y" 666 }, 667 { 668 "pname": "System.Memory", 669 "version": "4.5.5", 670 - "sha256": "08jsfwimcarfzrhlyvjjid61j02irx6xsklf32rv57x2aaikvx0h" 671 }, 672 { 673 "pname": "System.Net.Http", 674 "version": "4.3.4", 675 - "sha256": "0kdp31b8819v88l719j6my0yas6myv9d1viql3qz5577mv819jhl" 676 }, 677 { 678 "pname": "System.Net.Primitives", 679 "version": "4.3.0", 680 - "sha256": "0c87k50rmdgmxx7df2khd9qj7q35j9rzdmm2572cc55dygmdk3ii" 681 - }, 682 - { 683 - "pname": "System.Numerics.Vectors", 684 - "version": "4.4.0", 685 - "sha256": "0rdvma399070b0i46c4qq1h2yvjj3k013sqzkilz4bz5cwmx1rba" 686 - }, 687 - { 688 - "pname": "System.Numerics.Vectors", 689 - "version": "4.5.0", 690 - "sha256": "1kzrj37yzawf1b19jq0253rcs8hsq1l2q8g69d7ipnhzb0h97m59" 691 }, 692 { 693 "pname": "System.Private.Uri", 694 "version": "4.3.0", 695 - "sha256": "04r1lkdnsznin0fj4ya1zikxiqr0h6r6a1ww2dsm60gqhdrf0mvx" 696 }, 697 { 698 "pname": "System.Reflection", 699 "version": "4.3.0", 700 - "sha256": "0xl55k0mw8cd8ra6dxzh974nxif58s3k1rjv1vbd7gjbjr39j11m" 701 }, 702 { 703 "pname": "System.Reflection.Metadata", 704 "version": "5.0.0", 705 - "sha256": "17qsl5nanlqk9iz0l5wijdn6ka632fs1m1fvx18dfgswm258r3ss" 706 }, 707 { 708 "pname": "System.Reflection.Primitives", 709 "version": "4.3.0", 710 - "sha256": "04xqa33bld78yv5r93a8n76shvc8wwcdgr1qvvjh959g3rc31276" 711 }, 712 { 713 "pname": "System.Resources.Extensions", 714 "version": "8.0.0", 715 - "sha256": "0chqkw486pb5dg9nlj5352lsz1206xyf953nd98dglia3isxklg5" 716 }, 717 { 718 "pname": "System.Resources.ResourceManager", 719 "version": "4.3.0", 720 - "sha256": "0sjqlzsryb0mg4y4xzf35xi523s4is4hz9q4qgdvlvgivl7qxn49" 721 }, 722 { 723 "pname": "System.Runtime", 724 "version": "4.3.0", 725 - "sha256": "066ixvgbf2c929kgknshcxqj6539ax7b9m570cp8n179cpfkapz7" 726 - }, 727 - { 728 - "pname": "System.Runtime.CompilerServices.Unsafe", 729 - "version": "4.5.0", 730 - "sha256": "17labczwqk3jng3kkky73m0jhi8wc21vbl7cz5c0hj2p1dswin43" 731 - }, 732 - { 733 - "pname": "System.Runtime.CompilerServices.Unsafe", 734 - "version": "4.5.2", 735 - "sha256": "1vz4275fjij8inf31np78hw50al8nqkngk04p3xv5n4fcmf1grgi" 736 - }, 737 - { 738 - "pname": "System.Runtime.CompilerServices.Unsafe", 739 - "version": "4.5.3", 740 - "sha256": "1afi6s2r1mh1kygbjmfba6l4f87pi5sg13p4a48idqafli94qxln" 741 - }, 742 - { 743 - "pname": "System.Runtime.CompilerServices.Unsafe", 744 - "version": "4.7.0", 745 - "sha256": "16r6sn4czfjk8qhnz7bnqlyiaaszr0ihinb7mq9zzr1wba257r54" 746 - }, 747 - { 748 - "pname": "System.Runtime.CompilerServices.Unsafe", 749 - "version": "6.0.0", 750 - "sha256": "0qm741kh4rh57wky16sq4m0v05fxmkjjr87krycf5vp9f0zbahbc" 751 }, 752 { 753 "pname": "System.Runtime.Extensions", 754 "version": "4.3.0", 755 - "sha256": "1ykp3dnhwvm48nap8q23893hagf665k0kn3cbgsqpwzbijdcgc60" 756 }, 757 { 758 "pname": "System.Runtime.Handles", 759 "version": "4.3.0", 760 - "sha256": "0sw2gfj2xr7sw9qjn0j3l9yw07x73lcs97p8xfc9w1x9h5g5m7i8" 761 }, 762 { 763 "pname": "System.Runtime.InteropServices", 764 "version": "4.3.0", 765 - "sha256": "00hywrn4g7hva1b2qri2s6rabzwgxnbpw9zfxmz28z09cpwwgh7j" 766 }, 767 { 768 "pname": "System.Runtime.Numerics", 769 "version": "4.3.0", 770 - "sha256": "19rav39sr5dky7afygh309qamqqmi9kcwvz3i0c5700v0c5cg61z" 771 - }, 772 - { 773 - "pname": "System.Security.AccessControl", 774 - "version": "5.0.0", 775 - "sha256": "17n3lrrl6vahkqmhlpn3w20afgz09n7i6rv0r3qypngwi7wqdr5r" 776 }, 777 { 778 "pname": "System.Security.Cryptography.Algorithms", 779 "version": "4.3.0", 780 - "sha256": "03sq183pfl5kp7gkvq77myv7kbpdnq3y0xj7vi4q1kaw54sny0ml" 781 }, 782 { 783 "pname": "System.Security.Cryptography.Cng", 784 "version": "4.3.0", 785 - "sha256": "1k468aswafdgf56ab6yrn7649kfqx2wm9aslywjam1hdmk5yypmv" 786 }, 787 { 788 "pname": "System.Security.Cryptography.Csp", 789 "version": "4.3.0", 790 - "sha256": "1x5wcrddf2s3hb8j78cry7yalca4lb5vfnkrysagbn6r9x6xvrx1" 791 }, 792 { 793 "pname": "System.Security.Cryptography.Encoding", 794 "version": "4.3.0", 795 - "sha256": "1jr6w70igqn07k5zs1ph6xja97hxnb3mqbspdrff6cvssgrixs32" 796 }, 797 { 798 "pname": "System.Security.Cryptography.OpenSsl", 799 "version": "4.3.0", 800 - "sha256": "0givpvvj8yc7gv4lhb6s1prq6p2c4147204a0wib89inqzd87gqc" 801 }, 802 { 803 "pname": "System.Security.Cryptography.Primitives", 804 "version": "4.3.0", 805 - "sha256": "0pyzncsv48zwly3lw4f2dayqswcfvdwq2nz0dgwmi7fj3pn64wby" 806 }, 807 { 808 "pname": "System.Security.Cryptography.ProtectedData", 809 "version": "8.0.0", 810 - "sha256": "1ysjx3b5ips41s32zacf4vs7ig41906mxrsbmykdzi0hvdmjkgbx" 811 }, 812 { 813 "pname": "System.Security.Cryptography.X509Certificates", 814 "version": "4.3.0", 815 - "sha256": "0valjcz5wksbvijylxijjxb1mp38mdhv03r533vnx1q3ikzdav9h" 816 - }, 817 - { 818 - "pname": "System.Security.Principal.Windows", 819 - "version": "5.0.0", 820 - "sha256": "1mpk7xj76lxgz97a5yg93wi8lj0l8p157a5d50mmjy3gbz1904q8" 821 }, 822 { 823 "pname": "System.Text.Encoding", 824 "version": "4.3.0", 825 - "sha256": "1f04lkir4iladpp51sdgmis9dj4y8v08cka0mbmsy0frc9a4gjqr" 826 - }, 827 - { 828 - "pname": "System.Text.Encoding.CodePages", 829 - "version": "8.0.0", 830 - "sha256": "1lgdd78cik4qyvp2fggaa0kzxasw6kc9a6cjqw46siagrm0qnc3y" 831 }, 832 { 833 "pname": "System.Text.Encoding.Extensions", 834 "version": "4.3.0", 835 - "sha256": "11q1y8hh5hrp5a3kw25cb6l00v5l5dvirkz8jr3sq00h1xgcgrxy" 836 }, 837 { 838 "pname": "System.Threading", 839 "version": "4.3.0", 840 - "sha256": "0rw9wfamvhayp5zh3j7p1yfmx9b5khbf4q50d8k5rk993rskfd34" 841 }, 842 { 843 "pname": "System.Threading.Tasks", 844 "version": "4.3.0", 845 - "sha256": "134z3v9abw3a6jsw17xl3f6hqjpak5l682k2vz39spj4kmydg6k7" 846 }, 847 { 848 "pname": "System.Threading.Tasks.Dataflow", 849 - "version": "8.0.0", 850 - "sha256": "02mmqnbd7ybin1yiffrq3ph71rsbrnf6r6m01j98ynydqfscz9s3" 851 - }, 852 - { 853 - "pname": "System.Threading.Tasks.Extensions", 854 - "version": "4.5.2", 855 - "sha256": "1sh63dz0dymqcwmprp0nadm77b83vmm7lyllpv578c397bslb8hj" 856 - }, 857 - { 858 - "pname": "System.Threading.Tasks.Extensions", 859 - "version": "4.5.4", 860 - "sha256": "0y6ncasgfcgnjrhynaf0lwpkpkmv4a07sswwkwbwb5h7riisj153" 861 }, 862 { 863 "pname": "System.ValueTuple", 864 "version": "4.5.0", 865 - "sha256": "00k8ja51d0f9wrq4vv5z2jhq8hy31kac2rg0rv06prylcybzl8cy" 866 }, 867 { 868 "pname": "Unosquare.Swan.Lite", 869 "version": "3.1.0", 870 - "sha256": "0yjbchc2rhgssfvb1qxg3kq3lzyx089r3rngpcjgrkw85bf0vgrw" 871 }, 872 { 873 "pname": "ZXing.Net", 874 "version": "0.16.9", 875 - "sha256": "0bpki21p2wjjjviayhza0gam7s9lm7qj6g8hdcp2csd0mv54l980" 876 } 877 ]
··· 2 { 3 "pname": "AtkSharp", 4 "version": "3.24.24.95", 5 + "hash": "sha256-NgdWbXToBHhEVbvPrFcwXeit5iaqbBmNPQiC0jPKlnQ=" 6 }, 7 { 8 "pname": "Autofac", 9 "version": "8.0.0", 10 + "hash": "sha256-7XhDXw8hatQFjQMTIorQ5XrfDCc7EVNVyi6bGbc5fnA=" 11 }, 12 { 13 "pname": "Ben.Demystifier", 14 "version": "0.4.1", 15 + "hash": "sha256-Lkw67ask0hFtv+JoST304S8SzpM3U7nfhXLyyzfM9Os=" 16 }, 17 { 18 "pname": "CairoSharp", 19 "version": "3.24.24.95", 20 + "hash": "sha256-ycdgmQyQ1uSshI/9uMaqn5OBxRF8RADf4Tn/TptE2BU=" 21 }, 22 { 23 "pname": "CommandLineParser", 24 "version": "2.9.1", 25 + "hash": "sha256-ApU9y1yX60daSjPk3KYDBeJ7XZByKW8hse9NRZGcjeo=" 26 }, 27 { 28 "pname": "EmbedIO", 29 "version": "3.5.2", 30 + "hash": "sha256-e6GfVHXxYeUw3ntCrHokNoAS6mXArO7+vdMeUFnsSo8=" 31 }, 32 { 33 "pname": "Eto.Forms", 34 "version": "2.8.3", 35 + "hash": "sha256-bxWYDbgfhc/tFwUVAt1K9bGiixo8o58plQxRnaJzYgM=" 36 }, 37 { 38 "pname": "Eto.Platform.Gtk", 39 "version": "2.8.3", 40 + "hash": "sha256-U78xU1QwGpCEJTmAYZS5AQJU7d2SqISqZcZ10z0UYis=" 41 }, 42 { 43 "pname": "GdkSharp", 44 "version": "3.24.24.95", 45 + "hash": "sha256-NYjADgZG9TUQDIZiSSXDAxj5PyX/B7oKRo9f8Oyb4vI=" 46 }, 47 { 48 "pname": "GioSharp", 49 "version": "3.24.24.95", 50 + "hash": "sha256-5THx4af5PghPnQxXdnsC+wtVcoslh+0636WkB1FaPYg=" 51 }, 52 { 53 "pname": "GLibSharp", 54 "version": "3.24.24.95", 55 + "hash": "sha256-1pDRkKoUI9fLJBcTA2DBlpVccJl2GyAdL+VKjsFbttA=" 56 }, 57 { 58 "pname": "Google.Protobuf", 59 "version": "3.25.1", 60 + "hash": "sha256-UfP/iIcARptUcTVptj/5JQ9Jz9AG3aj+iKotsetOnH0=" 61 }, 62 { 63 "pname": "Grpc.Core.Api", 64 "version": "2.59.0", 65 + "hash": "sha256-8yARdHi5WEgINedQvMYaGfylsi2RipZ599bpBl7PUl0=" 66 }, 67 { 68 "pname": "Grpc.Tools", 69 + "version": "2.65.0", 70 + "hash": "sha256-Nzpq4DIBnhZ7kX+/bwqUSMDa5NJB52iKuXARYnM5yZw=" 71 }, 72 { 73 "pname": "GrpcDotNetNamedPipes", 74 "version": "3.0.0", 75 + "hash": "sha256-Zy9ry4iZQ1QgwJ/StPgOdE1nCq0EXBe3k402ET7Tzeo=" 76 }, 77 { 78 "pname": "GtkSharp", 79 "version": "3.24.24.95", 80 + "hash": "sha256-sBvk5Ecf2i6c2fYVjMBVoXz0I6IlucOWeE2czZH9QHg=" 81 }, 82 { 83 "pname": "IsExternalInit", 84 "version": "1.0.3", 85 + "hash": "sha256-UfyGrj+hAfsvS/R7tlugTToD//ax9Fy0CameinRn1AU=" 86 }, 87 { 88 "pname": "Makaretu.Dns", 89 "version": "2.0.1", 90 + "hash": "sha256-zeIKCov4J6rKfbgsre0hEDVoFyHVGsrRAf/izZqTytA=" 91 }, 92 { 93 "pname": "Microsoft.Bcl.AsyncInterfaces", 94 "version": "8.0.0", 95 + "hash": "sha256-9aWmiwMJKrKr9ohD1KSuol37y+jdDxPGJct3m2/Bknw=" 96 }, 97 { 98 "pname": "Microsoft.Extensions.Configuration.Abstractions", 99 "version": "8.0.0", 100 + "hash": "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o=" 101 }, 102 { 103 "pname": "Microsoft.Extensions.DependencyInjection", 104 "version": "8.0.0", 105 + "hash": "sha256-+qIDR8hRzreCHNEDtUcPfVHQdurzWPo/mqviCH78+EQ=" 106 }, 107 { 108 "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 109 "version": "8.0.0", 110 + "hash": "sha256-75KzEGWjbRELczJpCiJub+ltNUMMbz5A/1KQU+5dgP8=" 111 }, 112 { 113 "pname": "Microsoft.Extensions.DependencyInjection.Abstractions", 114 "version": "8.0.1", 115 + "hash": "sha256-lzTYLpRDAi3wW9uRrkTNJtMmaYdtGJJHdBLbUKu60PM=" 116 }, 117 { 118 "pname": "Microsoft.Extensions.Logging", 119 "version": "8.0.0", 120 + "hash": "sha256-Meh0Z0X7KyOEG4l0RWBcuHHihcABcvCyfUXgasmQ91o=" 121 }, 122 { 123 "pname": "Microsoft.Extensions.Logging.Abstractions", 124 "version": "8.0.0", 125 + "hash": "sha256-Jmddjeg8U5S+iBTwRlVAVLeIHxc4yrrNgqVMOB7EjM4=" 126 }, 127 { 128 "pname": "Microsoft.Extensions.Logging.Abstractions", 129 "version": "8.0.1", 130 + "hash": "sha256-TYce3qvMr92JbAZ62ATBsocaH0joJzw0px0tYGZ9N0U=" 131 }, 132 { 133 "pname": "Microsoft.Extensions.Options", 134 "version": "8.0.0", 135 + "hash": "sha256-n2m4JSegQKUTlOsKLZUUHHKMq926eJ0w9N9G+I3FoFw=" 136 }, 137 { 138 "pname": "Microsoft.Extensions.Primitives", 139 "version": "8.0.0", 140 + "hash": "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo=" 141 }, 142 { 143 "pname": "Microsoft.NETCore.App", 144 "version": "2.1.30", 145 + "hash": "sha256-DucpZ4+YQ0g7GMOcEjsNJj2Ol1jynqEyUZwpzY7keYE=" 146 }, 147 { 148 "pname": "Microsoft.NETCore.DotNetAppHost", 149 "version": "2.1.30", 150 + "hash": "sha256-S32dRd5Qw5P/Srjaz849B0P8hcG02ZzmJcDY0GLdS2U=" 151 }, 152 { 153 "pname": "Microsoft.NETCore.DotNetHostPolicy", 154 "version": "2.1.30", 155 + "hash": "sha256-/G5C9pmkaM1ReoMTD7QNUsm+oHkjZrK9qHdrTZVUZv4=" 156 }, 157 { 158 "pname": "Microsoft.NETCore.DotNetHostResolver", 159 "version": "2.1.30", 160 + "hash": "sha256-5gx6yqwbWsWWKOmldsLnN5o8fXQf2rbSUknSEhs1c0w=" 161 }, 162 { 163 "pname": "Microsoft.NETCore.Platforms", 164 "version": "1.1.1", 165 + "hash": "sha256-8hLiUKvy/YirCWlFwzdejD2Db3DaXhHxT7GSZx/znJg=" 166 }, 167 { 168 "pname": "Microsoft.NETCore.Platforms", 169 "version": "2.1.14", 170 + "hash": "sha256-eDbkdKujlhWqhcbembwpyM4DKrROdhJVB74YP/VjdVU=" 171 }, 172 { 173 "pname": "Microsoft.NETCore.Targets", 174 "version": "1.1.0", 175 + "hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=" 176 }, 177 { 178 "pname": "Microsoft.NETCore.Targets", 179 "version": "2.0.0", 180 + "hash": "sha256-Qk2PbbhZpPzb88JiQQcXlNK6RDBfP1of6g337RTMWVs=" 181 }, 182 { 183 "pname": "Microsoft.Win32.Primitives", 184 "version": "4.3.0", 185 + "hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=" 186 }, 187 { 188 "pname": "MimeKitLite", 189 + "version": "4.7.1", 190 + "hash": "sha256-vxCSs9w+xQDsUM8OiyCg6VmBi2twmqsD2BTJ1ESHLo8=" 191 }, 192 { 193 "pname": "NAPS2.Mdns", 194 "version": "1.0.1", 195 + "hash": "sha256-upKFE/ZQeDS94AFbRhKHU7FZJ1TO2aVyRVWye/MyJHY=" 196 }, 197 { 198 "pname": "NAPS2.NTwain", 199 "version": "1.0.0", 200 + "hash": "sha256-jXpUVhX8c9CutPJH5Q2JvJjPBRrV6gI0yI/mA8PgDSE=" 201 }, 202 { 203 "pname": "NAPS2.Pdfium.Binaries", 204 "version": "1.1.0", 205 + "hash": "sha256-mg88JinIvTJZHtaPoEQbVsL5PBO5iUiNMvcQ4M2c2GY=" 206 }, 207 { 208 "pname": "NAPS2.PdfSharp", 209 "version": "1.0.1", 210 + "hash": "sha256-HHBDTkCduzPNjwanQBvjjPP/A+kSFh0cyKVhCiXkoXQ=" 211 }, 212 { 213 "pname": "NAPS2.Tesseract.Binaries", 214 "version": "1.2.0", 215 + "hash": "sha256-4rtFr6ydc+LRgYK7asVRnMSigI2iwU2poG6TJ52eKlQ=" 216 }, 217 { 218 "pname": "NAPS2.Wia", 219 "version": "2.0.3", 220 + "hash": "sha256-ESVuxc3k74pJkol4ZJ1BTXSOjmqXrmmB6cI7tBibX3c=" 221 }, 222 { 223 "pname": "NETStandard.Library", 224 "version": "2.0.3", 225 + "hash": "sha256-Prh2RPebz/s8AzHb2sPHg3Jl8s31inv9k+Qxd293ybo=" 226 }, 227 { 228 "pname": "Newtonsoft.Json", 229 "version": "13.0.3", 230 + "hash": "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc=" 231 }, 232 { 233 "pname": "NLog", 234 + "version": "5.3.2", 235 + "hash": "sha256-b/y/IFUSe7qsSeJ8JVB0VFmJlkviFb8h934ktnn9Fgc=" 236 }, 237 { 238 "pname": "NLog.Extensions.Logging", 239 + "version": "5.3.11", 240 + "hash": "sha256-DP3R51h+9kk06N63U+1C4/JCZTFiADeYTROToAA2R0g=" 241 }, 242 { 243 "pname": "PangoSharp", 244 "version": "3.24.24.95", 245 + "hash": "sha256-YhltIz1jisJqR2ZxvbYy0ybi4oGw6qR2SkjF/2aWiBQ=" 246 }, 247 { 248 "pname": "Polyfill", 249 + "version": "4.9.0", 250 + "hash": "sha256-oTnmSAwMbxPFhzqBBrcSej0Nd3BKSX1kh0iwih2Iquo=" 251 }, 252 { 253 "pname": "runtime.any.System.Collections", 254 "version": "4.3.0", 255 + "hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=" 256 }, 257 { 258 "pname": "runtime.any.System.Diagnostics.Tracing", 259 "version": "4.3.0", 260 + "hash": "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI=" 261 }, 262 { 263 "pname": "runtime.any.System.Globalization", 264 "version": "4.3.0", 265 + "hash": "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU=" 266 }, 267 { 268 "pname": "runtime.any.System.Globalization.Calendars", 269 "version": "4.3.0", 270 + "hash": "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4=" 271 }, 272 { 273 "pname": "runtime.any.System.IO", 274 "version": "4.3.0", 275 + "hash": "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE=" 276 }, 277 { 278 "pname": "runtime.any.System.Reflection", 279 "version": "4.3.0", 280 + "hash": "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk=" 281 }, 282 { 283 "pname": "runtime.any.System.Reflection.Primitives", 284 "version": "4.3.0", 285 + "hash": "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ=" 286 }, 287 { 288 "pname": "runtime.any.System.Resources.ResourceManager", 289 "version": "4.3.0", 290 + "hash": "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4=" 291 }, 292 { 293 "pname": "runtime.any.System.Runtime", 294 "version": "4.3.0", 295 + "hash": "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM=" 296 }, 297 { 298 "pname": "runtime.any.System.Runtime.Handles", 299 "version": "4.3.0", 300 + "hash": "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4=" 301 }, 302 { 303 "pname": "runtime.any.System.Runtime.InteropServices", 304 "version": "4.3.0", 305 + "hash": "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA=" 306 }, 307 { 308 "pname": "runtime.any.System.Text.Encoding", 309 "version": "4.3.0", 310 + "hash": "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs=" 311 }, 312 { 313 "pname": "runtime.any.System.Text.Encoding.Extensions", 314 "version": "4.3.0", 315 + "hash": "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM=" 316 }, 317 { 318 "pname": "runtime.any.System.Threading.Tasks", 319 "version": "4.3.0", 320 + "hash": "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4=" 321 }, 322 { 323 "pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl", 324 "version": "4.3.2", 325 + "hash": "sha256-EbnOqPOrAgI9eNheXLR++VnY4pHzMsEKw1dFPJ/Fl2c=" 326 }, 327 { 328 "pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl", 329 "version": "4.3.2", 330 + "hash": "sha256-mVg02TNvJc1BuHU03q3fH3M6cMgkKaQPBxraSHl/Btg=" 331 }, 332 { 333 "pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl", 334 "version": "4.3.2", 335 + "hash": "sha256-g9Uiikrl+M40hYe0JMlGHe/lrR0+nN05YF64wzLmBBA=" 336 }, 337 { 338 "pname": "runtime.linux-arm64.Microsoft.NETCore.App", 339 "version": "2.1.30", 340 + "hash": "sha256-0kRKwOZr5ZAoYRlSSntAZkvbG9jjIosteg79KggjOQ0=" 341 }, 342 { 343 "pname": "runtime.linux-arm64.Microsoft.NETCore.DotNetAppHost", 344 "version": "2.1.30", 345 + "hash": "sha256-gdd3w8hQ4gg+wHx0p5dc9LS+Vw1GhNa0JKfsLQ8a9QI=" 346 }, 347 { 348 "pname": "runtime.linux-arm64.Microsoft.NETCore.DotNetHostPolicy", 349 "version": "2.1.30", 350 + "hash": "sha256-3FHYUUXakKScAxdfO9U4SQPAdslGewAeRaSntzvRUr4=" 351 }, 352 { 353 "pname": "runtime.linux-arm64.Microsoft.NETCore.DotNetHostResolver", 354 "version": "2.1.30", 355 + "hash": "sha256-a8bVHitAuYoDFlBZQ5oaQR9xTTiubQTko/TplHni30s=" 356 }, 357 { 358 "pname": "runtime.linux-x64.Microsoft.NETCore.App", 359 "version": "2.1.30", 360 + "hash": "sha256-C68Sv04pdUcOcZunGCv9BD6sC+80U3Iv3FsZyZ+ayfM=" 361 }, 362 { 363 "pname": "runtime.linux-x64.Microsoft.NETCore.DotNetAppHost", 364 "version": "2.1.30", 365 + "hash": "sha256-/VWZBxBvHI8n5so2GU6Eo3Jzj4lVk+ouIH0sbyrcNFc=" 366 }, 367 { 368 "pname": "runtime.linux-x64.Microsoft.NETCore.DotNetHostPolicy", 369 "version": "2.1.30", 370 + "hash": "sha256-gaUvRbpiC8ApcwC4FA0F4G8fmvp4xDL6FrnpizmKaf8=" 371 }, 372 { 373 "pname": "runtime.linux-x64.Microsoft.NETCore.DotNetHostResolver", 374 "version": "2.1.30", 375 + "hash": "sha256-Je0Ov7Mhqe6zH7+WTkbRkIbXbp/NefQ30xeYd6Ho3+g=" 376 }, 377 { 378 "pname": "runtime.native.System", 379 "version": "4.3.0", 380 + "hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=" 381 }, 382 { 383 "pname": "runtime.native.System.Net.Http", 384 "version": "4.3.0", 385 + "hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=" 386 }, 387 { 388 "pname": "runtime.native.System.Security.Cryptography.Apple", 389 "version": "4.3.0", 390 + "hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=" 391 }, 392 { 393 "pname": "runtime.native.System.Security.Cryptography.OpenSsl", 394 "version": "4.3.2", 395 + "hash": "sha256-xqF6LbbtpzNC9n1Ua16PnYgXHU0LvblEROTfK4vIxX8=" 396 }, 397 { 398 "pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl", 399 "version": "4.3.2", 400 + "hash": "sha256-aJBu6Frcg6webvzVcKNoUP1b462OAqReF2giTSyBzCQ=" 401 }, 402 { 403 "pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl", 404 "version": "4.3.2", 405 + "hash": "sha256-Mpt7KN2Kq51QYOEVesEjhWcCGTqWckuPf8HlQ110qLY=" 406 }, 407 { 408 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple", 409 "version": "4.3.0", 410 + "hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=" 411 }, 412 { 413 "pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 414 "version": "4.3.2", 415 + "hash": "sha256-JvMltmfVC53mCZtKDHE69G3RT6Id28hnskntP9MMP9U=" 416 }, 417 { 418 "pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl", 419 "version": "4.3.2", 420 + "hash": "sha256-QfFxWTVRNBhN4Dm1XRbCf+soNQpy81PsZed3x6op/bI=" 421 }, 422 { 423 "pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 424 "version": "4.3.2", 425 + "hash": "sha256-EaJHVc9aDZ6F7ltM2JwlIuiJvqM67CKRq682iVSo+pU=" 426 }, 427 { 428 "pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl", 429 "version": "4.3.2", 430 + "hash": "sha256-PHR0+6rIjJswn89eoiWYY1DuU8u6xRJLrtjykAMuFmA=" 431 }, 432 { 433 "pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl", 434 "version": "4.3.2", 435 + "hash": "sha256-LFkh7ua7R4rI5w2KGjcHlGXLecsncCy6kDXLuy4qD/Q=" 436 }, 437 { 438 "pname": "runtime.unix.Microsoft.Win32.Primitives", 439 "version": "4.3.0", 440 + "hash": "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg=" 441 }, 442 { 443 "pname": "runtime.unix.System.Diagnostics.Debug", 444 "version": "4.3.0", 445 + "hash": "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI=" 446 }, 447 { 448 "pname": "runtime.unix.System.IO.FileSystem", 449 "version": "4.3.0", 450 + "hash": "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I=" 451 }, 452 { 453 "pname": "runtime.unix.System.Net.Primitives", 454 "version": "4.3.0", 455 + "hash": "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0=" 456 }, 457 { 458 "pname": "runtime.unix.System.Private.Uri", 459 "version": "4.3.0", 460 + "hash": "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs=" 461 }, 462 { 463 "pname": "runtime.unix.System.Runtime.Extensions", 464 "version": "4.3.0", 465 + "hash": "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4=" 466 }, 467 { 468 "pname": "SharpZipLib", 469 "version": "1.4.2", 470 + "hash": "sha256-/giVqikworG2XKqfN9uLyjUSXr35zBuZ2FX2r8X/WUY=" 471 }, 472 { 473 "pname": "SimpleBase", 474 "version": "1.3.1", 475 + "hash": "sha256-FtRIcfLYXxUftEhq8kHgNNkahde6Fv2hPVGZNezCW1Y=" 476 }, 477 { 478 "pname": "SixLabors.Fonts", 479 "version": "1.0.1", 480 + "hash": "sha256-fox6f9Z5xunVXiy71KTSkb0DirMN00tuUlChyp96kiI=" 481 }, 482 { 483 "pname": "StandardSocketsHttpHandler", 484 "version": "2.2.0.8", 485 + "hash": "sha256-0ZqwMlt7rgfYisva0DSWS5UNOd+S1NBlNWvcm+DPA6I=" 486 }, 487 { 488 "pname": "System.Buffers", 489 "version": "4.3.0", 490 + "hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=" 491 }, 492 { 493 "pname": "System.Collections", 494 "version": "4.3.0", 495 + "hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=" 496 }, 497 { 498 "pname": "System.Collections.Concurrent", 499 "version": "4.3.0", 500 + "hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=" 501 }, 502 { 503 "pname": "System.Collections.Immutable", 504 "version": "8.0.0", 505 + "hash": "sha256-F7OVjKNwpqbUh8lTidbqJWYi476nsq9n+6k0+QVRo3w=" 506 }, 507 { 508 "pname": "System.Diagnostics.Debug", 509 "version": "4.3.0", 510 + "hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=" 511 }, 512 { 513 "pname": "System.Diagnostics.DiagnosticSource", 514 "version": "4.3.0", 515 + "hash": "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw=" 516 }, 517 { 518 "pname": "System.Diagnostics.DiagnosticSource", 519 "version": "7.0.2", 520 + "hash": "sha256-8Uawe7mWOQsDzMSAAP16nuGD1FRSajyS8q+cA++MJ8E=" 521 }, 522 { 523 "pname": "System.Diagnostics.Tracing", 524 "version": "4.3.0", 525 + "hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=" 526 }, 527 { 528 "pname": "System.Globalization", 529 "version": "4.3.0", 530 + "hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=" 531 }, 532 { 533 "pname": "System.Globalization.Calendars", 534 "version": "4.3.0", 535 + "hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=" 536 }, 537 { 538 "pname": "System.Globalization.Extensions", 539 "version": "4.3.0", 540 + "hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=" 541 }, 542 { 543 "pname": "System.IO", 544 "version": "4.3.0", 545 + "hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=" 546 }, 547 { 548 "pname": "System.IO.FileSystem", 549 "version": "4.3.0", 550 + "hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=" 551 }, 552 { 553 "pname": "System.IO.FileSystem.Primitives", 554 "version": "4.3.0", 555 + "hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=" 556 }, 557 { 558 "pname": "System.Linq", 559 "version": "4.3.0", 560 + "hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=" 561 }, 562 { 563 "pname": "System.Memory", 564 "version": "4.5.5", 565 + "hash": "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI=" 566 }, 567 { 568 "pname": "System.Net.Http", 569 "version": "4.3.4", 570 + "hash": "sha256-FMoU0K7nlPLxoDju0NL21Wjlga9GpnAoQjsFhFYYt00=" 571 }, 572 { 573 "pname": "System.Net.Primitives", 574 "version": "4.3.0", 575 + "hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=" 576 }, 577 { 578 "pname": "System.Private.Uri", 579 "version": "4.3.0", 580 + "hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=" 581 }, 582 { 583 "pname": "System.Reflection", 584 "version": "4.3.0", 585 + "hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=" 586 }, 587 { 588 "pname": "System.Reflection.Metadata", 589 "version": "5.0.0", 590 + "hash": "sha256-Wo+MiqhcP9dQ6NuFGrQTw6hpbJORFwp+TBNTq2yhGp8=" 591 }, 592 { 593 "pname": "System.Reflection.Primitives", 594 "version": "4.3.0", 595 + "hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=" 596 }, 597 { 598 "pname": "System.Resources.Extensions", 599 "version": "8.0.0", 600 + "hash": "sha256-5dHZdRwq0tdQanaU5Hw3QISvqSijSGrTa2VdgwifGDI=" 601 }, 602 { 603 "pname": "System.Resources.ResourceManager", 604 "version": "4.3.0", 605 + "hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=" 606 }, 607 { 608 "pname": "System.Runtime", 609 "version": "4.3.0", 610 + "hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=" 611 }, 612 { 613 "pname": "System.Runtime.Extensions", 614 "version": "4.3.0", 615 + "hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=" 616 }, 617 { 618 "pname": "System.Runtime.Handles", 619 "version": "4.3.0", 620 + "hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=" 621 }, 622 { 623 "pname": "System.Runtime.InteropServices", 624 "version": "4.3.0", 625 + "hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=" 626 }, 627 { 628 "pname": "System.Runtime.Numerics", 629 "version": "4.3.0", 630 + "hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=" 631 }, 632 { 633 "pname": "System.Security.Cryptography.Algorithms", 634 "version": "4.3.0", 635 + "hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=" 636 }, 637 { 638 "pname": "System.Security.Cryptography.Cng", 639 "version": "4.3.0", 640 + "hash": "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw=" 641 }, 642 { 643 "pname": "System.Security.Cryptography.Csp", 644 "version": "4.3.0", 645 + "hash": "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ=" 646 }, 647 { 648 "pname": "System.Security.Cryptography.Encoding", 649 "version": "4.3.0", 650 + "hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=" 651 }, 652 { 653 "pname": "System.Security.Cryptography.OpenSsl", 654 "version": "4.3.0", 655 + "hash": "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4=" 656 }, 657 { 658 "pname": "System.Security.Cryptography.Primitives", 659 "version": "4.3.0", 660 + "hash": "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318=" 661 }, 662 { 663 "pname": "System.Security.Cryptography.ProtectedData", 664 "version": "8.0.0", 665 + "hash": "sha256-fb0pa9sQxN+mr0vnXg1Igbx49CaOqS+GDkTfWNboUvs=" 666 }, 667 { 668 "pname": "System.Security.Cryptography.X509Certificates", 669 "version": "4.3.0", 670 + "hash": "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0=" 671 }, 672 { 673 "pname": "System.Text.Encoding", 674 "version": "4.3.0", 675 + "hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=" 676 }, 677 { 678 "pname": "System.Text.Encoding.Extensions", 679 "version": "4.3.0", 680 + "hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=" 681 }, 682 { 683 "pname": "System.Threading", 684 "version": "4.3.0", 685 + "hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=" 686 }, 687 { 688 "pname": "System.Threading.Tasks", 689 "version": "4.3.0", 690 + "hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=" 691 }, 692 { 693 "pname": "System.Threading.Tasks.Dataflow", 694 + "version": "8.0.1", 695 + "hash": "sha256-hgCfF91BDd/eOtLEd5jhjzgJdvwmVv4/b42fXRr3nvo=" 696 }, 697 { 698 "pname": "System.ValueTuple", 699 "version": "4.5.0", 700 + "hash": "sha256-niH6l2fU52vAzuBlwdQMw0OEoRS/7E1w5smBFoqSaAI=" 701 }, 702 { 703 "pname": "Unosquare.Swan.Lite", 704 "version": "3.1.0", 705 + "hash": "sha256-PL8N3CqIz/wku8/mkRMC3X868Byv47C20/rBLBhkS3o=" 706 }, 707 { 708 "pname": "ZXing.Net", 709 "version": "0.16.9", 710 + "hash": "sha256-ACVKyq6gaSYuaxA9I/GpNOlT1QPqQ6/illJycYOI8y4=" 711 } 712 ]
+18 -17
pkgs/by-name/na/naps2/package.nix
··· 4 buildDotnetModule, 5 dotnetCorePackages, 6 fetchFromGitHub, 7 gtk3, 8 gdk-pixbuf, 9 glib, ··· 13 14 buildDotnetModule rec { 15 pname = "naps2"; 16 - version = "7.4.3"; 17 18 src = fetchFromGitHub { 19 owner = "cyanfish"; 20 repo = "naps2"; 21 - rev = "v${version}"; 22 - hash = "sha256-/qSfxGHcCSoNp516LFYWgEL4csf8EKgtSffBt1C02uE="; 23 }; 24 25 projectFile = "NAPS2.App.Gtk/NAPS2.App.Gtk.csproj"; 26 nugetDeps = ./deps.json; 27 28 executables = [ "naps2" ]; 29 30 - dotnet-sdk = 31 - with dotnetCorePackages; 32 - sdk_8_0 33 - // { 34 - inherit 35 - (combinePackages [ 36 - sdk_8_0 37 - sdk_6_0-bin 38 - ]) 39 - packages 40 - targetPackages 41 - ; 42 - }; 43 dotnet-runtime = dotnetCorePackages.runtime_8_0; 44 selfContainedBuild = true; 45 runtimeDeps = [ 46 gtk3 ··· 68 maintainers = with lib.maintainers; [ eliandoran ]; 69 platforms = lib.platforms.linux; 70 mainProgram = "naps2"; 71 - broken = stdenv.hostPlatform.isAarch64; # Google.Protobuf.Tools dependency fails to build. 72 }; 73 74 }
··· 4 buildDotnetModule, 5 dotnetCorePackages, 6 fetchFromGitHub, 7 + wrapGAppsHook3, 8 gtk3, 9 gdk-pixbuf, 10 glib, ··· 14 15 buildDotnetModule rec { 16 pname = "naps2"; 17 + version = "7.5.3"; 18 19 src = fetchFromGitHub { 20 owner = "cyanfish"; 21 repo = "naps2"; 22 + tag = "v${version}"; 23 + hash = "sha256-vX+ZyCQsYqJjgYaufWJRnzX8retiFK5QHSP40bbBaCc="; 24 }; 25 26 projectFile = "NAPS2.App.Gtk/NAPS2.App.Gtk.csproj"; 27 nugetDeps = ./deps.json; 28 29 + postPatch = '' 30 + substituteInPlace NAPS2.Images.Gtk/NAPS2.Images.Gtk.csproj \ 31 + --replace-fail TargetFramework TargetFrameworks \ 32 + ''; 33 + 34 + dotnetFlags = [ 35 + "-p:TargetFrameworks=net8" 36 + "-p:EnablePreviewFeatures=true" 37 + ]; 38 + 39 executables = [ "naps2" ]; 40 41 + dotnet-sdk = dotnetCorePackages.sdk_8_0; 42 dotnet-runtime = dotnetCorePackages.runtime_8_0; 43 + 44 + nativeBuildInputs = [ wrapGAppsHook3 ]; 45 + 46 selfContainedBuild = true; 47 runtimeDeps = [ 48 gtk3 ··· 70 maintainers = with lib.maintainers; [ eliandoran ]; 71 platforms = lib.platforms.linux; 72 mainProgram = "naps2"; 73 }; 74 75 }
-5
pkgs/by-name/ol/ollama/package.nix
··· 19 cudaArches ? cudaPackages.cudaFlags.realArches or [ ], 20 darwin, 21 autoAddDriverRunpath, 22 - versionCheckHook, 23 24 # passthru 25 nixosTests, ··· 246 ]; 247 248 __darwinAllowLocalNetworking = true; 249 - 250 - nativeInstallCheck = [ versionCheckHook ]; 251 - versionCheckProgramArg = "--version"; 252 - doInstallCheck = true; 253 254 passthru = { 255 tests =
··· 19 cudaArches ? cudaPackages.cudaFlags.realArches or [ ], 20 darwin, 21 autoAddDriverRunpath, 22 23 # passthru 24 nixosTests, ··· 245 ]; 246 247 __darwinAllowLocalNetworking = true; 248 249 passthru = { 250 tests =
+3 -3
pkgs/by-name/om/omnictl/package.nix
··· 7 8 buildGoModule rec { 9 pname = "omnictl"; 10 - version = "0.48.0"; 11 12 src = fetchFromGitHub { 13 owner = "siderolabs"; 14 repo = "omni"; 15 rev = "v${version}"; 16 - hash = "sha256-/+ayHgqXnzA72ms0Z023Vw16rqDE5Eyu/RIPE2AOOG4="; 17 }; 18 19 - vendorHash = "sha256-hHQV28OpZJWgulHXFRb2n9CVxVo958y5FUoxsafzFw8="; 20 21 ldflags = [ 22 "-s"
··· 7 8 buildGoModule rec { 9 pname = "omnictl"; 10 + version = "0.48.3"; 11 12 src = fetchFromGitHub { 13 owner = "siderolabs"; 14 repo = "omni"; 15 rev = "v${version}"; 16 + hash = "sha256-D5CiIC9JVF3fhS0MplWekliOdGAblFzJPafrlYDq1Js="; 17 }; 18 19 + vendorHash = "sha256-LMDIpgtMbwr/cpVoAAnr56c/G81ocuOQCJDI+S0z1XU="; 20 21 ldflags = [ 22 "-s"
+45
pkgs/by-name/op/open-timeline-io/package.nix
···
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + cmake, 6 + imath, 7 + rapidjson, 8 + }: 9 + 10 + stdenv.mkDerivation rec { 11 + pname = "open-timeline-io"; 12 + version = "0.17.0"; 13 + 14 + src = fetchFromGitHub { 15 + owner = "AcademySoftwareFoundation"; 16 + repo = "OpenTimelineIO"; 17 + rev = "v${version}"; 18 + hash = "sha256-53KXjbhHxuEtu6iRGWrirvFamuZ/WbOTcKCfs1iqKmM="; 19 + }; 20 + 21 + nativeBuildInputs = [ 22 + cmake 23 + ]; 24 + 25 + propagatedBuildInputs = [ 26 + imath 27 + ]; 28 + 29 + buildInputs = [ 30 + rapidjson 31 + ]; 32 + 33 + cmakeFlags = [ 34 + "-DOTIO_DEPENDENCIES_INSTALL=0" 35 + "-DOTIO_FIND_IMATH=1" 36 + ]; 37 + 38 + meta = { 39 + description = "Open Source API and interchange format for editorial timeline information"; 40 + homepage = "https://github.com/AcademySoftwareFoundation/OpenTimelineIO"; 41 + license = lib.licenses.asl20; 42 + maintainers = [ ]; 43 + platforms = lib.platforms.all; 44 + }; 45 + }
+5 -2
pkgs/by-name/op/opkssh/package.nix
··· 31 32 meta = { 33 homepage = "https://github.com/openpubkey/opkssh"; 34 - description = "Integrating SSO with SSH - short-lived SSH keys with an OpenID provider"; 35 license = lib.licenses.asl20; 36 - maintainers = [ lib.maintainers.johnrichardrinehart ]; 37 mainProgram = "opkssh"; 38 }; 39 })
··· 31 32 meta = { 33 homepage = "https://github.com/openpubkey/opkssh"; 34 + description = "Enables SSH to be used with OpenID Connect"; 35 license = lib.licenses.asl20; 36 + maintainers = with lib.maintainers; [ 37 + johnrichardrinehart 38 + sarcasticadmin 39 + ]; 40 mainProgram = "opkssh"; 41 }; 42 })
+2 -2
pkgs/by-name/os/ossia-score/package.nix
··· 44 45 clangStdenv.mkDerivation (finalAttrs: { 46 pname = "ossia-score"; 47 - version = "3.4.1"; 48 49 src = fetchFromGitHub { 50 owner = "ossia"; 51 repo = "score"; 52 rev = "v${finalAttrs.version}"; 53 - hash = "sha256-PpIGlw3MmJYiLaKX+oHM7QUjlk6Bw/W2GwdkLgPK1Hg="; 54 fetchSubmodules = true; 55 }; 56
··· 44 45 clangStdenv.mkDerivation (finalAttrs: { 46 pname = "ossia-score"; 47 + version = "3.5.0"; 48 49 src = fetchFromGitHub { 50 owner = "ossia"; 51 repo = "score"; 52 rev = "v${finalAttrs.version}"; 53 + hash = "sha256-7gZTUdOVfMlNDuvLrt8twbHCBOz9hoZQaQdWdDF6qMg="; 54 fetchSubmodules = true; 55 }; 56
+1 -1
pkgs/by-name/os/ostree/package.nix
··· 181 homepage = "https://ostreedev.github.io/ostree/"; 182 license = licenses.lgpl2Plus; 183 platforms = platforms.linux; 184 - maintainers = with maintainers; [ copumpkin ]; 185 }; 186 })
··· 181 homepage = "https://ostreedev.github.io/ostree/"; 182 license = licenses.lgpl2Plus; 183 platforms = platforms.linux; 184 + maintainers = [ ]; 185 }; 186 })
-1
pkgs/by-name/pa/paxtest/package.nix
··· 30 license = licenses.gpl2Only; 31 platforms = platforms.linux; 32 maintainers = with maintainers; [ 33 - copumpkin 34 joachifm 35 ]; 36 };
··· 30 license = licenses.gpl2Only; 31 platforms = platforms.linux; 32 maintainers = with maintainers; [ 33 joachifm 34 ]; 35 };
+1 -1
pkgs/by-name/pe/petidomo/package.nix
··· 32 doCheck = true; 33 34 doInstallCheck = true; 35 - nativeInstallCheck = [ versionCheckHook ]; 36 37 meta = { 38 homepage = "https://petidomo.sourceforge.net/";
··· 32 doCheck = true; 33 34 doInstallCheck = true; 35 + nativeInstallCheckInputs = [ versionCheckHook ]; 36 37 meta = { 38 homepage = "https://petidomo.sourceforge.net/";
+2 -2
pkgs/by-name/po/portfolio/package.nix
··· 33 in 34 stdenvNoCC.mkDerivation (finalAttrs: { 35 pname = "PortfolioPerformance"; 36 - version = "0.74.2"; 37 38 src = fetchurl { 39 url = "https://github.com/buchen/portfolio/releases/download/${finalAttrs.version}/PortfolioPerformance-${finalAttrs.version}-linux.gtk.x86_64.tar.gz"; 40 - hash = "sha256-RPoEby12DiJwdM2ejVfOQyrJjy/qgQ9BbqYyaV9KMD0="; 41 }; 42 43 nativeBuildInputs = [
··· 33 in 34 stdenvNoCC.mkDerivation (finalAttrs: { 35 pname = "PortfolioPerformance"; 36 + version = "0.75.1"; 37 38 src = fetchurl { 39 url = "https://github.com/buchen/portfolio/releases/download/${finalAttrs.version}/PortfolioPerformance-${finalAttrs.version}-linux.gtk.x86_64.tar.gz"; 40 + hash = "sha256-TIkEv8YEKgvi2DQ7vc90ZjyvVNOiMQvBhb8rqPT2Xl0="; 41 }; 42 43 nativeBuildInputs = [
+3 -3
pkgs/by-name/pu/pulumictl/package.nix
··· 6 7 buildGoModule rec { 8 pname = "pulumictl"; 9 - version = "0.0.48"; 10 11 src = fetchFromGitHub { 12 owner = "pulumi"; 13 repo = "pulumictl"; 14 rev = "v${version}"; 15 - sha256 = "sha256-rFVxfWeESWmqH0BhKY6BO5AxSPXVW8tOPGyUXB5Kc/E="; 16 }; 17 18 - vendorHash = "sha256-x5CBSzwOfX0BwwbAOuW1ibrLnnkVSNjqG0Sj2EcmRbM="; 19 20 ldflags = [ 21 "-s"
··· 6 7 buildGoModule rec { 8 pname = "pulumictl"; 9 + version = "0.0.49"; 10 11 src = fetchFromGitHub { 12 owner = "pulumi"; 13 repo = "pulumictl"; 14 rev = "v${version}"; 15 + sha256 = "sha256-VEfDKkavZWWxfE1J2Cy/lnPyHiOJWOtwwcYpeb1pkkM="; 16 }; 17 18 + vendorHash = "sha256-IqJdbeayUcTTEiPAar1goqubAjTavJNYOzCyKXGd0Q8="; 19 20 ldflags = [ 21 "-s"
+2 -2
pkgs/by-name/rc/rclip/package.nix
··· 6 }: 7 python3Packages.buildPythonApplication rec { 8 pname = "rclip"; 9 - version = "1.11.0"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "yurijmikhalevich"; 14 repo = "rclip"; 15 tag = "v${version}"; 16 - hash = "sha256-bu9kz0CCq78lp+d2uPoApzZnVybwyWD/fwgnXYG52dk="; 17 }; 18 19 build-system = with python3Packages; [
··· 6 }: 7 python3Packages.buildPythonApplication rec { 8 pname = "rclip"; 9 + version = "2.0.5"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "yurijmikhalevich"; 14 repo = "rclip"; 15 tag = "v${version}"; 16 + hash = "sha256-d/jEtcBvOiebdI4DgWNWtP8ZfOy2x7EaQt/6mo7o2Ok="; 17 }; 18 19 build-system = with python3Packages; [
+2 -2
pkgs/by-name/rd/rdkafka/package.nix
··· 13 14 stdenv.mkDerivation (finalAttrs: { 15 pname = "rdkafka"; 16 - version = "2.8.0"; 17 18 src = fetchFromGitHub { 19 owner = "confluentinc"; 20 repo = "librdkafka"; 21 tag = "v${finalAttrs.version}"; 22 - sha256 = "sha256-OCCsxgEO8UvCcC0XwzqpqmaT8dV0Klrspp+2o1FbH2Y="; 23 }; 24 25 outputs = [
··· 13 14 stdenv.mkDerivation (finalAttrs: { 15 pname = "rdkafka"; 16 + version = "2.10.0"; 17 18 src = fetchFromGitHub { 19 owner = "confluentinc"; 20 repo = "librdkafka"; 21 tag = "v${finalAttrs.version}"; 22 + sha256 = "sha256-u4+qskNw18TD59aiSTyv1XOYT2DI24uZnGEAzJ4YBJU="; 23 }; 24 25 outputs = [
+2 -2
pkgs/by-name/re/remnote/package.nix
··· 6 }: 7 let 8 pname = "remnote"; 9 - version = "1.19.11"; 10 src = fetchurl { 11 url = "https://download2.remnote.io/remnote-desktop2/RemNote-${version}.AppImage"; 12 - hash = "sha256-rKvbh4TihITP+M4znObUU+80YfG9gookilLpIBUxt9U="; 13 }; 14 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 15 in
··· 6 }: 7 let 8 pname = "remnote"; 9 + version = "1.19.15"; 10 src = fetchurl { 11 url = "https://download2.remnote.io/remnote-desktop2/RemNote-${version}.AppImage"; 12 + hash = "sha256-gmhpxh/u5Ror3V2BMjAJzaWs66+nrsUiBXkVd5G8B/E="; 13 }; 14 appimageContents = appimageTools.extractType2 { inherit pname version src; }; 15 in
+1 -1
pkgs/by-name/rp/rpm-ostree/package.nix
··· 125 description = "Hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model"; 126 homepage = "https://coreos.github.io/rpm-ostree/"; 127 license = licenses.lgpl2Plus; 128 - maintainers = with maintainers; [ copumpkin ]; 129 platforms = platforms.linux; 130 mainProgram = "rpm-ostree"; 131 };
··· 125 description = "Hybrid image/package system. It uses OSTree as an image format, and uses RPM as a component model"; 126 homepage = "https://coreos.github.io/rpm-ostree/"; 127 license = licenses.lgpl2Plus; 128 + maintainers = [ ]; 129 platforms = platforms.linux; 130 mainProgram = "rpm-ostree"; 131 };
+35
pkgs/by-name/rq/rquickshare/fix-pnpm-outdated-lockfile.patch
···
··· 1 + diff --git a/app/legacy/pnpm-lock.yaml b/app/legacy/pnpm-lock.yaml 2 + index ce6a292..76ba03e 100644 3 + --- a/app/legacy/pnpm-lock.yaml 4 + +++ b/app/legacy/pnpm-lock.yaml 5 + @@ -12,8 +12,8 @@ importers: 6 + specifier: link:../../core_lib 7 + version: link:../../core_lib 8 + '@tauri-apps/api': 9 + - specifier: 1.5.6 10 + - version: 1.5.6 11 + + specifier: 1.6.0 12 + + version: 1.6.0 13 + pinia: 14 + specifier: ^2.2.1 15 + version: 2.2.1(typescript@5.6.0-dev.20240811)(vue@3.4.27(typescript@5.6.0-dev.20240811)) 16 + @@ -500,10 +500,6 @@ packages: 17 + peerDependencies: 18 + tailwindcss: '>=3.0.0 || insiders' 19 + 20 + - '@tauri-apps/api@1.5.6': 21 + - resolution: {integrity: sha512-LH5ToovAHnDVe5Qa9f/+jW28I6DeMhos8bNDtBOmmnaDpPmJmYLyHdeDblAWWWYc7KKRDg9/66vMuKyq0WIeFA==} 22 + - engines: {node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'} 23 + - 24 + '@tauri-apps/api@1.6.0': 25 + resolution: {integrity: sha512-rqI++FWClU5I2UBp4HXFvl+sBWkdigBkxnpJDQUWttNyG7IZP4FwQGhTNL5EOw0vI8i6eSAJ5frLqO7n7jbJdg==} 26 + engines: {node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'} 27 + @@ -2707,8 +2703,6 @@ snapshots: 28 + postcss-selector-parser: 6.0.10 29 + tailwindcss: 3.4.9 30 + 31 + - '@tauri-apps/api@1.5.6': {} 32 + - 33 + '@tauri-apps/api@1.6.0': {} 34 + 35 + '@tauri-apps/cli-darwin-arm64@1.5.14':
+12 -8
pkgs/by-name/rq/rquickshare/package.nix
··· 3 cargo-tauri, 4 cargo-tauri_1, 5 fetchFromGitHub, 6 glib-networking, 7 libayatana-appindicator, 8 libsoup_2_4, ··· 39 in 40 rustPlatform.buildRustPackage rec { 41 pname = "rquickshare" + (app-type-either "" "-legacy"); 42 - version = "0.11.4"; 43 44 - src = fetchFromGitHub { 45 - owner = "Martichou"; 46 - repo = "rquickshare"; 47 - tag = "v${version}"; 48 - hash = "sha256-Gq78vxM9hJ+dAHM3RAKHtkFIsoV0XQN4vNbOO3amvTs="; 49 }; 50 51 # from https://github.com/NixOS/nixpkgs/blob/04e40bca2a68d7ca85f1c47f00598abb062a8b12/pkgs/by-name/ca/cargo-tauri/test-app.nix#L23-L26 ··· 59 inherit pname version src; 60 61 sourceRoot = "${src.name}/app/${app-type}"; 62 - hash = app-type-either "sha256-V46V/VPwCKEe3sAp8zK0UUU5YigqgYh1GIOorqIAiNE=" "sha256-sDHysaKMdNcbL1szww7/wg0bGHOnEKsKoySZJJCcPik="; 63 }; 64 65 useFetchCargoVendor = true; 66 cargoRoot = "app/${app-type}/src-tauri"; 67 buildAndTestSubdir = cargoRoot; 68 cargoPatches = [ ./remove-duplicate-versions-of-sys-metrics.patch ]; 69 - cargoHash = app-type-either "sha256-wraCzzC7YVCXEXBTd8c1cbtCdBunENpUMQ1vZGwfGMs=" "sha256-TBsHlFwbWWa2LEZdmDyz/9vWiFOXKX39PCsjW6OqEGY="; 70 71 nativeBuildInputs = [ 72 proper-cargo-tauri.hook
··· 3 cargo-tauri, 4 cargo-tauri_1, 5 fetchFromGitHub, 6 + applyPatches, 7 glib-networking, 8 libayatana-appindicator, 9 libsoup_2_4, ··· 40 in 41 rustPlatform.buildRustPackage rec { 42 pname = "rquickshare" + (app-type-either "" "-legacy"); 43 + version = "0.11.5"; 44 45 + src = applyPatches { 46 + src = fetchFromGitHub { 47 + owner = "Martichou"; 48 + repo = "rquickshare"; 49 + tag = "v${version}"; 50 + hash = "sha256-DZdzk0wqKhVa51PgQf8UsAY6EbGKvRIGru71Z8rvrwA="; 51 + }; 52 + patches = [ ./fix-pnpm-outdated-lockfile.patch ]; 53 }; 54 55 # from https://github.com/NixOS/nixpkgs/blob/04e40bca2a68d7ca85f1c47f00598abb062a8b12/pkgs/by-name/ca/cargo-tauri/test-app.nix#L23-L26 ··· 63 inherit pname version src; 64 65 sourceRoot = "${src.name}/app/${app-type}"; 66 + hash = app-type-either "sha256-V46V/VPwCKEe3sAp8zK0UUU5YigqgYh1GIOorqIAiNE=" "sha256-8QRigYNtxirXidFFnTzA6rP0+L64M/iakPqe2lZKegs="; 67 }; 68 69 useFetchCargoVendor = true; 70 cargoRoot = "app/${app-type}/src-tauri"; 71 buildAndTestSubdir = cargoRoot; 72 cargoPatches = [ ./remove-duplicate-versions-of-sys-metrics.patch ]; 73 + cargoHash = app-type-either "sha256-XfN+/oC3lttDquLfoyJWBaFfdjW/wyODCIiZZksypLM=" "sha256-4vBHxuKg4P9H0FZYYNUT+AVj4Qvz99q7Bhd7x47UC2w="; 74 75 nativeBuildInputs = [ 76 proper-cargo-tauri.hook
+22 -24
pkgs/by-name/rq/rquickshare/remove-duplicate-versions-of-sys-metrics.patch
··· 1 diff --git a/app/legacy/src-tauri/Cargo.lock b/app/legacy/src-tauri/Cargo.lock 2 - index 1bba0ae..af24986 100644 3 --- a/app/legacy/src-tauri/Cargo.lock 4 +++ b/app/legacy/src-tauri/Cargo.lock 5 - @@ -4138,7 +4138,7 @@ dependencies = [ 6 - "rand 0.8.5", 7 "serde", 8 "sha2", 9 - "sys_metrics 0.2.7 (git+https://github.com/Martichou/sys_metrics)", ··· 11 "tokio", 12 "tokio-util", 13 "tracing-subscriber", 14 - @@ -4158,7 +4158,7 @@ dependencies = [ 15 "rqs_lib", 16 "serde", 17 "serde_json", ··· 20 "tauri", 21 "tauri-build", 22 "tauri-plugin-autostart", 23 - @@ -4759,22 +4759,7 @@ dependencies = [ 24 - [[package]] 25 - name = "sys_metrics" 26 - version = "0.2.7" 27 -source = "registry+https://github.com/rust-lang/crates.io-index" 28 -checksum = "c9b266b80f59f86e2e1e0a4938e316e32c3730d94a749f236305152279f77484" 29 -dependencies = [ ··· 36 - "serde", 37 -] 38 - 39 - -[[package]] 40 - -name = "sys_metrics" 41 - -version = "0.2.7" 42 - -source = "git+https://github.com/Martichou/sys_metrics#c0f4ec7b9156d3ab83ee61276984c7fd4e632098" 43 - +source = "git+https://github.com/Martichou/sys_metrics#e5b324a17d1724bd97923a173c3535cc06a44b0c" 44 - dependencies = [ 45 - "core-foundation-sys", 46 - "glob", 47 diff --git a/app/legacy/src-tauri/Cargo.toml b/app/legacy/src-tauri/Cargo.toml 48 - index b971c3d..44abf29 100644 49 --- a/app/legacy/src-tauri/Cargo.toml 50 +++ b/app/legacy/src-tauri/Cargo.toml 51 @@ -20,7 +20,7 @@ notify-rust = "4.10" ··· 54 serde_json = "1.0" 55 -sys_metrics = "0.2" 56 +sys_metrics = { git = "https://github.com/Martichou/sys_metrics" } 57 - tauri = { version = "1.5", features = ["api-all", "reqwest-native-tls-vendored", "system-tray", "devtools"] } 58 tauri-plugin-autostart = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } 59 tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } 60 diff --git a/app/main/src-tauri/Cargo.lock b/app/main/src-tauri/Cargo.lock 61 - index bc4753a..ed4c7e8 100644 62 --- a/app/main/src-tauri/Cargo.lock 63 +++ b/app/main/src-tauri/Cargo.lock 64 - @@ -4182,7 +4182,7 @@ dependencies = [ 65 - "rand 0.8.5", 66 "serde", 67 "sha2", 68 - "sys_metrics 0.2.7 (git+https://github.com/Martichou/sys_metrics)", ··· 70 "tokio", 71 "tokio-util", 72 "tracing-subscriber", 73 - @@ -4202,7 +4202,7 @@ dependencies = [ 74 "rqs_lib", 75 "serde", 76 "serde_json", ··· 79 "tauri", 80 "tauri-build", 81 "tauri-plugin-autostart", 82 - @@ -4867,21 +4867,6 @@ dependencies = [ 83 "syn 2.0.95", 84 ] 85 ··· 102 name = "sys_metrics" 103 version = "0.2.7" 104 diff --git a/app/main/src-tauri/Cargo.toml b/app/main/src-tauri/Cargo.toml 105 - index 5653700..5120513 100644 106 --- a/app/main/src-tauri/Cargo.toml 107 +++ b/app/main/src-tauri/Cargo.toml 108 @@ -20,7 +20,7 @@ notify-rust = "4.10"
··· 1 diff --git a/app/legacy/src-tauri/Cargo.lock b/app/legacy/src-tauri/Cargo.lock 2 + index 14872dc..341fcc8 100644 3 --- a/app/legacy/src-tauri/Cargo.lock 4 +++ b/app/legacy/src-tauri/Cargo.lock 5 + @@ -4296,7 +4296,7 @@ dependencies = [ 6 + "rand 0.9.0", 7 "serde", 8 "sha2", 9 - "sys_metrics 0.2.7 (git+https://github.com/Martichou/sys_metrics)", ··· 11 "tokio", 12 "tokio-util", 13 "tracing-subscriber", 14 + @@ -4316,7 +4316,7 @@ dependencies = [ 15 "rqs_lib", 16 "serde", 17 "serde_json", ··· 20 "tauri", 21 "tauri-build", 22 "tauri-plugin-autostart", 23 + @@ -4920,21 +4920,6 @@ dependencies = [ 24 + "libc", 25 + ] 26 + 27 + -[[package]] 28 + -name = "sys_metrics" 29 + -version = "0.2.7" 30 -source = "registry+https://github.com/rust-lang/crates.io-index" 31 -checksum = "c9b266b80f59f86e2e1e0a4938e316e32c3730d94a749f236305152279f77484" 32 -dependencies = [ ··· 39 - "serde", 40 -] 41 - 42 + [[package]] 43 + name = "sys_metrics" 44 + version = "0.2.7" 45 diff --git a/app/legacy/src-tauri/Cargo.toml b/app/legacy/src-tauri/Cargo.toml 46 + index fb735b2..cfd1349 100644 47 --- a/app/legacy/src-tauri/Cargo.toml 48 +++ b/app/legacy/src-tauri/Cargo.toml 49 @@ -20,7 +20,7 @@ notify-rust = "4.10" ··· 52 serde_json = "1.0" 53 -sys_metrics = "0.2" 54 +sys_metrics = { git = "https://github.com/Martichou/sys_metrics" } 55 + tauri = { version = "1.8", features = ["api-all", "reqwest-native-tls-vendored", "devtools", "system-tray"] } 56 tauri-plugin-autostart = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } 57 tauri-plugin-single-instance = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } 58 diff --git a/app/main/src-tauri/Cargo.lock b/app/main/src-tauri/Cargo.lock 59 + index 5580ef5..4327d4c 100644 60 --- a/app/main/src-tauri/Cargo.lock 61 +++ b/app/main/src-tauri/Cargo.lock 62 + @@ -4247,7 +4247,7 @@ dependencies = [ 63 + "rand 0.9.0", 64 "serde", 65 "sha2", 66 - "sys_metrics 0.2.7 (git+https://github.com/Martichou/sys_metrics)", ··· 68 "tokio", 69 "tokio-util", 70 "tracing-subscriber", 71 + @@ -4267,7 +4267,7 @@ dependencies = [ 72 "rqs_lib", 73 "serde", 74 "serde_json", ··· 77 "tauri", 78 "tauri-build", 79 "tauri-plugin-autostart", 80 + @@ -4932,21 +4932,6 @@ dependencies = [ 81 "syn 2.0.95", 82 ] 83 ··· 100 name = "sys_metrics" 101 version = "0.2.7" 102 diff --git a/app/main/src-tauri/Cargo.toml b/app/main/src-tauri/Cargo.toml 103 + index 8864112..7707922 100644 104 --- a/app/main/src-tauri/Cargo.toml 105 +++ b/app/main/src-tauri/Cargo.toml 106 @@ -20,7 +20,7 @@ notify-rust = "4.10"
+3 -3
pkgs/by-name/ru/ruff/package.nix
··· 17 18 rustPlatform.buildRustPackage (finalAttrs: { 19 pname = "ruff"; 20 - version = "0.11.5"; 21 22 src = fetchFromGitHub { 23 owner = "astral-sh"; 24 repo = "ruff"; 25 tag = finalAttrs.version; 26 - hash = "sha256-7R913Dt395qsyJCp7eXGQ9BcAAvV7GrJqoZAsXn6CTs="; 27 }; 28 29 useFetchCargoVendor = true; 30 - cargoHash = "sha256-dA2OEogzEBTu2c5OVoxU4dj5TuMWpxmHk7r63lFsEjU="; 31 32 nativeBuildInputs = [ installShellFiles ]; 33
··· 17 18 rustPlatform.buildRustPackage (finalAttrs: { 19 pname = "ruff"; 20 + version = "0.11.6"; 21 22 src = fetchFromGitHub { 23 owner = "astral-sh"; 24 repo = "ruff"; 25 tag = finalAttrs.version; 26 + hash = "sha256-Yi8eRA2xL+wumXXrq5c4NNtPORZ3BjEM5IowDEfsjwA="; 27 }; 28 29 useFetchCargoVendor = true; 30 + cargoHash = "sha256-rJNA6Lh3OnY60BZ8YnjP+7cSGftbCb69ISQyr7z523Q="; 31 32 nativeBuildInputs = [ installShellFiles ]; 33
-5
pkgs/by-name/ru/rust-stakeholder/package.nix
··· 2 lib, 3 fetchFromGitHub, 4 rustPlatform, 5 - versionCheckHook, 6 nix-update-script, 7 }: 8 rustPlatform.buildRustPackage { ··· 18 19 useFetchCargoVendor = true; 20 cargoHash = "sha256-NxO+7Wh8Ff6RPFtmbEa3EJszfDaZDXGWZDAoXPEAnpI="; 21 - 22 - nativeInstallCheck = [ versionCheckHook ]; 23 - versionCheckProgramArg = "--version"; 24 - doInstallCheck = true; 25 26 passthru.updateScript = nix-update-script { }; 27
··· 2 lib, 3 fetchFromGitHub, 4 rustPlatform, 5 nix-update-script, 6 }: 7 rustPlatform.buildRustPackage { ··· 17 18 useFetchCargoVendor = true; 19 cargoHash = "sha256-NxO+7Wh8Ff6RPFtmbEa3EJszfDaZDXGWZDAoXPEAnpI="; 20 21 passthru.updateScript = nix-update-script { }; 22
+1 -1
pkgs/by-name/sa/sauerbraten/package.nix
··· 65 cp -r "../docs/"* $out/share/doc/sauerbraten/ 66 cp sauer_client sauer_server $out/share/sauerbraten/ 67 cp -r ../packages ../data $out/share/sauerbraten/ 68 - ln -s $out/share/sauerbraten/cube.png $out/share/icon/sauerbraten.png 69 70 makeWrapper $out/share/sauerbraten/sauer_server $out/bin/sauerbraten_server \ 71 --chdir "$out/share/sauerbraten"
··· 65 cp -r "../docs/"* $out/share/doc/sauerbraten/ 66 cp sauer_client sauer_server $out/share/sauerbraten/ 67 cp -r ../packages ../data $out/share/sauerbraten/ 68 + ln -s $out/share/sauerbraten/data/cube.png $out/share/icon/sauerbraten.png 69 70 makeWrapper $out/share/sauerbraten/sauer_server $out/bin/sauerbraten_server \ 71 --chdir "$out/share/sauerbraten"
+2 -8
pkgs/by-name/sd/SDL2_classic/package.nix
··· 3 stdenv, 4 config, 5 fetchFromGitHub, 6 - fetchpatch, 7 nix-update-script, 8 pkg-config, 9 mesa, ··· 71 72 stdenv.mkDerivation (finalAttrs: { 73 pname = "SDL2"; 74 - version = "2.32.2"; 75 76 src = fetchFromGitHub { 77 owner = "libsdl-org"; 78 repo = "SDL"; 79 rev = "release-${finalAttrs.version}"; 80 - hash = "sha256-Gtg8G1tRouGZbes1KhsXpYbItpNHYqJCiQKW/L77b+U="; 81 }; 82 dontDisableStatic = if withStatic then 1 else 0; 83 outputs = [ ··· 92 # but on NixOS they're spread across different paths. 93 # This patch + the setup-hook will ensure that `sdl2-config --cflags` works correctly. 94 ./find-headers.patch 95 - # https://github.com/libsdl-org/SDL/issues/12224 96 - (fetchpatch { 97 - url = "https://github.com/libsdl-org/SDL/commit/9e079fe9c7931738ed63d257b1d7fb8a07b66824.diff"; 98 - hash = "sha256-G8gAivCtw5zuPVI9wvEq2oIo/NxFdnPqyLwrmHG1EJ4="; 99 - }) 100 ]; 101 102 postPatch = ''
··· 3 stdenv, 4 config, 5 fetchFromGitHub, 6 nix-update-script, 7 pkg-config, 8 mesa, ··· 70 71 stdenv.mkDerivation (finalAttrs: { 72 pname = "SDL2"; 73 + version = "2.32.4"; 74 75 src = fetchFromGitHub { 76 owner = "libsdl-org"; 77 repo = "SDL"; 78 rev = "release-${finalAttrs.version}"; 79 + hash = "sha256-4yUJkttUAbDC/5IdcCFY5ZTIG1qsxEEOjTTuplXV/p4="; 80 }; 81 dontDisableStatic = if withStatic then 1 else 0; 82 outputs = [ ··· 91 # but on NixOS they're spread across different paths. 92 # This patch + the setup-hook will ensure that `sdl2-config --cflags` works correctly. 93 ./find-headers.patch 94 ]; 95 96 postPatch = ''
+2 -2
pkgs/by-name/si/simdutf/package.nix
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "simdutf"; 11 - version = "6.4.2"; 12 13 src = fetchFromGitHub { 14 owner = "simdutf"; 15 repo = "simdutf"; 16 rev = "v${finalAttrs.version}"; 17 - hash = "sha256-at1MBvbsgu7Z7UJQqVaakT1Ux16jJVP5JSVubrqF7VY="; 18 }; 19 20 # Fix build on darwin
··· 8 9 stdenv.mkDerivation (finalAttrs: { 10 pname = "simdutf"; 11 + version = "6.5.0"; 12 13 src = fetchFromGitHub { 14 owner = "simdutf"; 15 repo = "simdutf"; 16 rev = "v${finalAttrs.version}"; 17 + hash = "sha256-bZ4r62GMz2Dkd3fKTJhelitaA8jUBaDjG6jOysEg8Nk="; 18 }; 19 20 # Fix build on darwin
+3 -3
pkgs/by-name/so/soapyremote/package.nix
··· 8 }: 9 10 let 11 - version = "0.5.2"; 12 13 in 14 stdenv.mkDerivation { ··· 18 src = fetchFromGitHub { 19 owner = "pothosware"; 20 repo = "SoapyRemote"; 21 - rev = "soapy-remote-${version}"; 22 - sha256 = "124sy9v08fm51ds1yzrxspychn34y0rl6y48mzariianazvzmfax"; 23 }; 24 25 nativeBuildInputs = [ cmake ];
··· 8 }: 9 10 let 11 + version = "0.5.2-unstable-2024-01-24"; 12 13 in 14 stdenv.mkDerivation { ··· 18 src = fetchFromGitHub { 19 owner = "pothosware"; 20 repo = "SoapyRemote"; 21 + rev = "54caa5b2af348906607c5516a112057650d0873d"; 22 + sha256 = "sha256-uekElbcbX2P5TEufWEoP6tgUM/4vxgSQZu8qaBCSo18="; 23 }; 24 25 nativeBuildInputs = [ cmake ];
+9 -5
pkgs/by-name/so/sou/package.nix
··· 3 buildGoModule, 4 fetchFromGitHub, 5 nix-update-script, 6 - versionCheckHook, 7 }: 8 9 buildGoModule (finalAttrs: { ··· 25 "-X=main.version=${finalAttrs.version}" 26 ]; 27 28 - doInstallCheck = true; 29 - nativeInstallCheck = [ versionCheckHook ]; 30 - 31 # Some of the tests use localhost networking 32 __darwinAllowLocalNetworking = true; 33 34 - passthru.updateScript = nix-update-script { }; 35 36 meta = { 37 description = "Tool for exploring files in container image layers";
··· 3 buildGoModule, 4 fetchFromGitHub, 5 nix-update-script, 6 + testers, 7 + sou, 8 }: 9 10 buildGoModule (finalAttrs: { ··· 26 "-X=main.version=${finalAttrs.version}" 27 ]; 28 29 # Some of the tests use localhost networking 30 __darwinAllowLocalNetworking = true; 31 32 + passthru = { 33 + updateScript = nix-update-script { }; 34 + tests.version = testers.testVersion { 35 + command = "HOME=$TMPDIR sou --version"; 36 + package = sou; 37 + }; 38 + }; 39 40 meta = { 41 description = "Tool for exploring files in container image layers";
-1
pkgs/by-name/so/souffle/package.nix
··· 97 platforms = platforms.unix; 98 maintainers = with maintainers; [ 99 thoughtpolice 100 - copumpkin 101 wchresta 102 markusscherer 103 ];
··· 97 platforms = platforms.unix; 98 maintainers = with maintainers; [ 99 thoughtpolice 100 wchresta 101 markusscherer 102 ];
+1 -1
pkgs/by-name/tf/tfmigrate/package.nix
··· 24 ]; 25 26 doInstallCheck = true; 27 - nativeInstallCheck = [ versionCheckHook ]; 28 29 passthru.updateScript = nix-update-script { }; 30
··· 24 ]; 25 26 doInstallCheck = true; 27 + nativeInstallCheckInputs = [ versionCheckHook ]; 28 29 passthru.updateScript = nix-update-script { }; 30
+5 -5
pkgs/by-name/tr/trayscale/package.nix
··· 12 13 buildGoModule rec { 14 pname = "trayscale"; 15 - version = "0.14.2"; 16 17 src = fetchFromGitHub { 18 owner = "DeedleFake"; 19 repo = "trayscale"; 20 - rev = "v${version}"; 21 - hash = "sha256-Ct52IcRm44aDibiZfA1YySC7/jocHC4rB418DQvrp1s="; 22 }; 23 24 - vendorHash = "sha256-GA3jmj1/OruiaDT+q5ZQyZfhehRIMrc9+K9CCoQ1fsE="; 25 26 subPackages = [ "cmd/trayscale" ]; 27 ··· 60 license = lib.licenses.mit; 61 maintainers = with lib.maintainers; [ sikmir ]; 62 mainProgram = "trayscale"; 63 - platforms = lib.platforms.linux; 64 }; 65 }
··· 12 13 buildGoModule rec { 14 pname = "trayscale"; 15 + version = "0.14.3"; 16 17 src = fetchFromGitHub { 18 owner = "DeedleFake"; 19 repo = "trayscale"; 20 + tag = "v${version}"; 21 + hash = "sha256-HIx3icecgu29jlrHpXfIXzJAxgKSgpeGexouiL2lYB8="; 22 }; 23 24 + vendorHash = "sha256-hFUzFjQ8LWOKifDp3FiIUwdttX0FrPpRdtWj6fqE5uQ="; 25 26 subPackages = [ "cmd/trayscale" ]; 27 ··· 60 license = lib.licenses.mit; 61 maintainers = with lib.maintainers; [ sikmir ]; 62 mainProgram = "trayscale"; 63 + platforms = lib.platforms.unix; 64 }; 65 }
+2 -6
pkgs/by-name/tw/twitch-dl/package.nix
··· 10 11 python3Packages.buildPythonApplication rec { 12 pname = "twitch-dl"; 13 - version = "2.11.0"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "ihabunek"; 18 repo = "twitch-dl"; 19 tag = version; 20 - hash = "sha256-L+IbcSUaxhTg2slNc5x1VJPnA5e2qrPEeWjspK2COAI="; 21 }; 22 - 23 - pythonRelaxDeps = [ 24 - "m3u8" 25 - ]; 26 27 nativeBuildInputs = [ 28 python3Packages.setuptools
··· 10 11 python3Packages.buildPythonApplication rec { 12 pname = "twitch-dl"; 13 + version = "3.0.0"; 14 pyproject = true; 15 16 src = fetchFromGitHub { 17 owner = "ihabunek"; 18 repo = "twitch-dl"; 19 tag = version; 20 + hash = "sha256-/TlJG6Mh8/Ax4bKKR/plhMMY2x6YXwcFP6zjClOPaD8="; 21 }; 22 23 nativeBuildInputs = [ 24 python3Packages.setuptools
+108
pkgs/by-name/vo/vors/package.nix
···
··· 1 + { 2 + curl, 3 + fetchurl, 4 + lib, 5 + genericUpdater, 6 + go, 7 + perl, 8 + stdenv, 9 + writeShellScript, 10 + zstd, 11 + pkg-config, 12 + opusfile, 13 + sox, 14 + makeWrapper, 15 + }: 16 + 17 + stdenv.mkDerivation (finalAttrs: { 18 + pname = "vors"; 19 + version = "3.1.0"; 20 + 21 + src = fetchurl { 22 + url = "http://www.vors.stargrave.org/download/vors-${finalAttrs.version}.tar.zst"; 23 + hash = "sha256-ZRQI96j0n00eh1qxO8NgJeOQPU9bfzHoHa45xQNuzv8="; 24 + }; 25 + 26 + buildInputs = [ 27 + go 28 + opusfile 29 + sox 30 + ]; 31 + 32 + nativeBuildInputs = [ 33 + zstd 34 + pkg-config 35 + perl 36 + makeWrapper 37 + ]; 38 + 39 + preConfigure = "export GOCACHE=$NIX_BUILD_TOP/gocache"; 40 + 41 + buildPhase = '' 42 + runHook preBuild 43 + ./mk-non-static 44 + mkdir -p ./local/lib # Required to prevent building libopusfile 45 + ./build 46 + runHook postBuild 47 + ''; 48 + 49 + installPhase = '' 50 + runHook preInstall 51 + mkdir -p "$out"/bin 52 + cp -f bin/* "$out"/bin 53 + chmod 755 "$out"/bin/* 54 + runHook postInstall 55 + ''; 56 + 57 + postInstall = '' 58 + wrapProgram "$out"/bin/vors-client \ 59 + --prefix PATH : ${lib.makeBinPath [ sox ]} 60 + ''; 61 + 62 + enableParallelBuilding = true; 63 + 64 + passthru.updateScript = genericUpdater { 65 + versionLister = writeShellScript "vors-versionLister" '' 66 + ${curl}/bin/curl -s ${finalAttrs.meta.downloadPage} | ${perl}/bin/perl -lne 'print $1 if /td.*>([0-9.]+)</' 67 + ''; 68 + }; 69 + 70 + meta = { 71 + broken = stdenv.hostPlatform.isDarwin; 72 + description = "Very simple and usable multi-user VoIP solution"; 73 + downloadPage = "http://www.vors.stargrave.org/Install.html"; 74 + homepage = "http://www.vors.stargrave.org/"; 75 + license = lib.licenses.gpl3Only; 76 + longDescription = '' 77 + VoRS – Vo(IP) Really Simple. Very simple and usable multi-user 78 + VoIP solution. Some kind of alternative to Mumble without 79 + gaming-related features. 80 + 81 + Mumble has wonderful simplicity and workability, but its 82 + client is written on Qt, which requires hundreds of megabytes 83 + of additional libraries to build it up. And users tend to 84 + complain about its newer client versions quality and 85 + convenience. 86 + 87 + So let’s write as simple VoIP talking client as it is possible, 88 + without compromising convenience and simplicity for the user! 89 + I just want a simple command, which only requires to specify 90 + the server’s address with the key to just immediately talk 91 + with someone. 92 + 93 + No GUI requirement. Why would someone need a GUI for voice 94 + application? But a fancy real-time refreshing TUI would be 95 + desirable. Mumble tends to output no information, sometimes 96 + hiding the fact of a problem and that everything stopped 97 + working. 98 + 99 + Mono-cypher, mono-codec protocol. 100 + 101 + Maximal easiness of usage: here is your address, key, do me good. 102 + ''; 103 + maintainers = with lib.maintainers; [ 104 + dvn0 105 + ]; 106 + platforms = lib.platforms.all; 107 + }; 108 + })
+1 -3
pkgs/by-name/xa/xar/package.nix
··· 183 homepage = "https://github.com/apple-oss-distributions/xar"; 184 description = "An easily extensible archive format"; 185 license = lib.licenses.bsd3; 186 - maintainers = 187 - lib.teams.darwin.members 188 - ++ lib.attrValues { inherit (lib.maintainers) copumpkin tie; }; 189 platforms = lib.platforms.unix; 190 mainProgram = "xar"; 191 };
··· 183 homepage = "https://github.com/apple-oss-distributions/xar"; 184 description = "An easily extensible archive format"; 185 license = lib.licenses.bsd3; 186 + maintainers = lib.teams.darwin.members ++ lib.attrValues { inherit (lib.maintainers) tie; }; 187 platforms = lib.platforms.unix; 188 mainProgram = "xar"; 189 };
+2 -2
pkgs/by-name/ya/yarn-berry/update.sh
··· 19 version=$(jq -r "[.data.repository.tag.nodes[].name | select(contains(\"-\")|not)] | max_by(split(\".\") | map(tonumber))" <<< "$payload") 20 version3=$(jq -r "[.data.repository.tag.nodes[].name | select(contains(\"-\")|not)] | map(select(. < \"4.0.0\")) | sort | last" <<< "$payload") 21 22 - update-source-version yarn-berry4 "$version" --version-key="version_4" 23 - update-source-version yarn-berry3 "$version3" --version-key="version_3"
··· 19 version=$(jq -r "[.data.repository.tag.nodes[].name | select(contains(\"-\")|not)] | max_by(split(\".\") | map(tonumber))" <<< "$payload") 20 version3=$(jq -r "[.data.repository.tag.nodes[].name | select(contains(\"-\")|not)] | map(select(. < \"4.0.0\")) | sort | last" <<< "$payload") 21 22 + update-source-version yarn-berry_4 "$version" --version-key="version_4" 23 + update-source-version yarn-berry_3 "$version3" --version-key="version_3"
+8
pkgs/development/libraries/qt-6/modules/qtdeclarative/default.nix
··· 38 }) 39 # add version specific QML import path 40 ./use-versioned-import-path.patch 41 # Backport patch to fix qmlsc crash on "if + for" 42 # FIXME: remove for 6.9.1 43 (fetchpatch2 {
··· 38 }) 39 # add version specific QML import path 40 ./use-versioned-import-path.patch 41 + 42 + # The build attempts to sign qmltestrunner, which may already be signed, causing it to fail unless forced. 43 + # FIXME: remove for 6.9.1 44 + (fetchpatch2 { 45 + url = "https://invent.kde.org/qt/qt/qtdeclarative/-/commit/8effbbcefd8cae27cd5da07b4ffe3aa86dad83bf.diff"; 46 + hash = "sha256-wKrKXdr1ddshpRVIZZ/dsn87wjPXSaoUvXT9edlPtzA="; 47 + }) 48 + 49 # Backport patch to fix qmlsc crash on "if + for" 50 # FIXME: remove for 6.9.1 51 (fetchpatch2 {
+1 -1
pkgs/development/python-modules/ansicolors/default.nix
··· 26 homepage = "https://github.com/verigak/colors/"; 27 description = "ANSI colors for Python"; 28 license = licenses.isc; 29 - maintainers = with maintainers; [ copumpkin ]; 30 }; 31 }
··· 26 homepage = "https://github.com/verigak/colors/"; 27 description = "ANSI colors for Python"; 28 license = licenses.isc; 29 + maintainers = [ ]; 30 }; 31 }
+2 -2
pkgs/development/python-modules/boto3-stubs/default.nix
··· 359 360 buildPythonPackage rec { 361 pname = "boto3-stubs"; 362 - version = "1.37.35"; 363 pyproject = true; 364 365 disabled = pythonOlder "3.7"; ··· 367 src = fetchPypi { 368 pname = "boto3_stubs"; 369 inherit version; 370 - hash = "sha256-OQDIBsLGaIBPFxPm79VmoGyZv/zI43CemCKp3saBkj8="; 371 }; 372 373 build-system = [ setuptools ];
··· 359 360 buildPythonPackage rec { 361 pname = "boto3-stubs"; 362 + version = "1.37.36"; 363 pyproject = true; 364 365 disabled = pythonOlder "3.7"; ··· 367 src = fetchPypi { 368 pname = "boto3_stubs"; 369 inherit version; 370 + hash = "sha256-0IlcyLMUpMGTNVuWUwrosFGlK5qge603HVswehQMimA="; 371 }; 372 373 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/botocore-stubs/default.nix
··· 10 11 buildPythonPackage rec { 12 pname = "botocore-stubs"; 13 - version = "1.37.29"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "botocore_stubs"; 20 inherit version; 21 - hash = "sha256-xZiYvx0Jv2qfSR9HBcVpbnS4MVa3ZqoXFoZ/EbigTqE="; 22 }; 23 24 nativeBuildInputs = [ setuptools ];
··· 10 11 buildPythonPackage rec { 12 pname = "botocore-stubs"; 13 + version = "1.37.36"; 14 pyproject = true; 15 16 disabled = pythonOlder "3.7"; ··· 18 src = fetchPypi { 19 pname = "botocore_stubs"; 20 inherit version; 21 + hash = "sha256-Ln/0bH08LADbZkWvRr4XYqOvqK0lsS/DnFgKoZmTyFI="; 22 }; 23 24 nativeBuildInputs = [ setuptools ];
-1
pkgs/development/python-modules/lmdb/default.nix
··· 40 changelog = "https://github.com/jnwatson/py-lmdb/blob/py-lmdb_${version}/ChangeLog"; 41 license = lib.licenses.openldap; 42 maintainers = with lib.maintainers; [ 43 - copumpkin 44 ivan 45 ]; 46 };
··· 40 changelog = "https://github.com/jnwatson/py-lmdb/blob/py-lmdb_${version}/ChangeLog"; 41 license = lib.licenses.openldap; 42 maintainers = with lib.maintainers; [ 43 ivan 44 ]; 45 };
+16 -16
pkgs/development/python-modules/mypy-boto3/default.nix
··· 46 in 47 rec { 48 mypy-boto3-accessanalyzer = 49 - buildMypyBoto3Package "accessanalyzer" "1.37.0" 50 - "sha256-mm2NgDfVTGN4LqbUR0YJhMwmcsftMRpyg3QZNo/p2Ko="; 51 52 mypy-boto3-account = 53 buildMypyBoto3Package "account" "1.37.0" ··· 62 "sha256-rq8i4Hs7gv8pwAXd9qJcLCvXIt7qiCnMaCuU80hCEs8="; 63 64 mypy-boto3-amp = 65 - buildMypyBoto3Package "amp" "1.37.0" 66 - "sha256-rxpBCIXOkSl5UeP1e0Rz8VK4tU3qD7nqG77YiGTv/0U="; 67 68 mypy-boto3-amplify = 69 buildMypyBoto3Package "amplify" "1.37.17" ··· 150 "sha256-wH8zPvix4Yd0uBbz71EJmk6YWe/bBZz4v+QHjl2yud0="; 151 152 mypy-boto3-autoscaling = 153 - buildMypyBoto3Package "autoscaling" "1.37.0" 154 - "sha256-C28bRk0IhJreEN0Zs/SfyBrhnvV12+Lbojp2oGJenfc="; 155 156 mypy-boto3-autoscaling-plans = 157 buildMypyBoto3Package "autoscaling-plans" "1.37.0" ··· 338 "sha256-ZksL1EtJj4H12D8JvRS8sTDnhKc2j+1UiRlMTN3yHGc="; 339 340 mypy-boto3-connect = 341 - buildMypyBoto3Package "connect" "1.37.10" 342 - "sha256-5oHBPdOYeB+6eAXrw0xPy7uLAORtflFbYzG8fGgzrXE="; 343 344 mypy-boto3-connect-contact-lens = 345 buildMypyBoto3Package "connect-contact-lens" "1.37.33" ··· 462 "sha256-7Sz4g1+0B99ZybhrzJOS0K71thybaDPUYmF4+SN1sGc="; 463 464 mypy-boto3-ecs = 465 - buildMypyBoto3Package "ecs" "1.37.26" 466 - "sha256-RsP/geW/mnQQuzglIlPgNMkBs5Q862S8fUBxLe6x7og="; 467 468 mypy-boto3-efs = 469 buildMypyBoto3Package "efs" "1.37.0" ··· 674 "sha256-eEq8LDmORpA464IecxTI6FqVIitn3t+t4ElsHkfSAs4="; 675 676 mypy-boto3-iotfleetwise = 677 - buildMypyBoto3Package "iotfleetwise" "1.37.30" 678 - "sha256-DYuNsbiLD2E+oJAcrqBppujmpyFye0m73b8YsE0Pydo="; 679 680 mypy-boto3-iotsecuretunneling = 681 buildMypyBoto3Package "iotsecuretunneling" "1.37.0" ··· 898 "sha256-bySahvnK2ZFX2wETtu+PQyhbMYyH2RdcYMNEDnYMTzM="; 899 900 mypy-boto3-memorydb = 901 - buildMypyBoto3Package "memorydb" "1.37.0" 902 - "sha256-88OSler+2SJ2zDYtLmM5NeOPafKIf5zaLV8MMLRb5es="; 903 904 mypy-boto3-meteringmarketplace = 905 buildMypyBoto3Package "meteringmarketplace" "1.37.33" ··· 966 "sha256-XJE33wPIGIlSVxrJ3qE09AmFLkYwKR6zWXXtDnEVvSA="; 967 968 mypy-boto3-omics = 969 - buildMypyBoto3Package "omics" "1.37.0" 970 - "sha256-L+XFhueTb9fq32oyVVbysBMXgds1UlXryqRwiDOI+Io="; 971 972 mypy-boto3-opensearch = 973 buildMypyBoto3Package "opensearch" "1.37.27"
··· 46 in 47 rec { 48 mypy-boto3-accessanalyzer = 49 + buildMypyBoto3Package "accessanalyzer" "1.37.36" 50 + "sha256-eCSfYW61ednEn1fbQoTJ5Wgl4S5kjevMlz2hzr5n2AQ="; 51 52 mypy-boto3-account = 53 buildMypyBoto3Package "account" "1.37.0" ··· 62 "sha256-rq8i4Hs7gv8pwAXd9qJcLCvXIt7qiCnMaCuU80hCEs8="; 63 64 mypy-boto3-amp = 65 + buildMypyBoto3Package "amp" "1.37.36" 66 + "sha256-odOqacsjn2opQla0k+jj1oAOIqjWUq6vmkX7tLK93/s="; 67 68 mypy-boto3-amplify = 69 buildMypyBoto3Package "amplify" "1.37.17" ··· 150 "sha256-wH8zPvix4Yd0uBbz71EJmk6YWe/bBZz4v+QHjl2yud0="; 151 152 mypy-boto3-autoscaling = 153 + buildMypyBoto3Package "autoscaling" "1.37.36" 154 + "sha256-H2w6UEQv1NraYA3jPWXI+PL4MYNOphsnx1AImYk3OHU="; 155 156 mypy-boto3-autoscaling-plans = 157 buildMypyBoto3Package "autoscaling-plans" "1.37.0" ··· 338 "sha256-ZksL1EtJj4H12D8JvRS8sTDnhKc2j+1UiRlMTN3yHGc="; 339 340 mypy-boto3-connect = 341 + buildMypyBoto3Package "connect" "1.37.36" 342 + "sha256-Hl1LkaaJ1UQkr0zKzT+RO3ISWQfu/AJKHUk3tCpgPAE="; 343 344 mypy-boto3-connect-contact-lens = 345 buildMypyBoto3Package "connect-contact-lens" "1.37.33" ··· 462 "sha256-7Sz4g1+0B99ZybhrzJOS0K71thybaDPUYmF4+SN1sGc="; 463 464 mypy-boto3-ecs = 465 + buildMypyBoto3Package "ecs" "1.37.36" 466 + "sha256-9bjyK1uqd81ecObI8jPW5hooS/07pqTdiVFcBzMQvTs="; 467 468 mypy-boto3-efs = 469 buildMypyBoto3Package "efs" "1.37.0" ··· 674 "sha256-eEq8LDmORpA464IecxTI6FqVIitn3t+t4ElsHkfSAs4="; 675 676 mypy-boto3-iotfleetwise = 677 + buildMypyBoto3Package "iotfleetwise" "1.37.36" 678 + "sha256-Rua+n9vvAiLAzy/DwDd6ErujD04q1Xsts0nle0KbUH0="; 679 680 mypy-boto3-iotsecuretunneling = 681 buildMypyBoto3Package "iotsecuretunneling" "1.37.0" ··· 898 "sha256-bySahvnK2ZFX2wETtu+PQyhbMYyH2RdcYMNEDnYMTzM="; 899 900 mypy-boto3-memorydb = 901 + buildMypyBoto3Package "memorydb" "1.37.36" 902 + "sha256-9WLf5gu0g3GBaSumy9HaWQrG5w5z9v++SNxYbk+iyTk="; 903 904 mypy-boto3-meteringmarketplace = 905 buildMypyBoto3Package "meteringmarketplace" "1.37.33" ··· 966 "sha256-XJE33wPIGIlSVxrJ3qE09AmFLkYwKR6zWXXtDnEVvSA="; 967 968 mypy-boto3-omics = 969 + buildMypyBoto3Package "omics" "1.37.36" 970 + "sha256-sJXXQ3pKKNmXDplUe24dEboelzNpQe/Mkj+DNTjAg08="; 971 972 mypy-boto3-opensearch = 973 buildMypyBoto3Package "opensearch" "1.37.27"
+2 -2
pkgs/development/python-modules/nicegui/default.nix
··· 50 51 buildPythonPackage rec { 52 pname = "nicegui"; 53 - version = "2.13.0"; 54 pyproject = true; 55 56 src = fetchFromGitHub { 57 owner = "zauberzeug"; 58 repo = "nicegui"; 59 tag = "v${version}"; 60 - hash = "sha256-CawBLQstWLZ7AOmoOxsU7W7bZnnqvMmZacBC9CI/h+M="; 61 }; 62 63 build-system = [
··· 50 51 buildPythonPackage rec { 52 pname = "nicegui"; 53 + version = "2.15.0"; 54 pyproject = true; 55 56 src = fetchFromGitHub { 57 owner = "zauberzeug"; 58 repo = "nicegui"; 59 tag = "v${version}"; 60 + hash = "sha256-pwR+9QBCIMZXFK9n8GRESl9UFsh7zcgOxTngdgdyMuc="; 61 }; 62 63 build-system = [
+1 -1
pkgs/development/python-modules/pathspec/default.nix
··· 42 homepage = "https://github.com/cpburnz/python-path-specification"; 43 changelog = "https://github.com/cpburnz/python-pathspec/blob/v${version}/CHANGES.rst"; 44 license = lib.licenses.mpl20; 45 - maintainers = with lib.maintainers; [ copumpkin ]; 46 }; 47 }
··· 42 homepage = "https://github.com/cpburnz/python-path-specification"; 43 changelog = "https://github.com/cpburnz/python-pathspec/blob/v${version}/CHANGES.rst"; 44 license = lib.licenses.mpl20; 45 + maintainers = [ ]; 46 }; 47 }
+1 -3
pkgs/development/python-modules/pex/default.nix
··· 64 homepage = "https://github.com/pantsbuild/pex"; 65 changelog = "https://github.com/pantsbuild/pex/releases/tag/v${version}"; 66 license = licenses.asl20; 67 - maintainers = with maintainers; [ 68 - copumpkin 69 - ]; 70 }; 71 }
··· 64 homepage = "https://github.com/pantsbuild/pex"; 65 changelog = "https://github.com/pantsbuild/pex/releases/tag/v${version}"; 66 license = licenses.asl20; 67 + maintainers = [ ]; 68 }; 69 }
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "publicsuffixlist"; 14 - version = "1.0.2.20250412"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 - hash = "sha256-bnsevMlfJY0cjfhhqA+RyB/SP2QklVmDM+Bgt3ATLko="; 22 }; 23 24 build-system = [ setuptools ];
··· 11 12 buildPythonPackage rec { 13 pname = "publicsuffixlist"; 14 + version = "1.0.2.20250417"; 15 pyproject = true; 16 17 disabled = pythonOlder "3.7"; 18 19 src = fetchPypi { 20 inherit pname version; 21 + hash = "sha256-hIZcImPbnSWtr9PV3etARhOweu+lxrgpTp//PCV47O0="; 22 }; 23 24 build-system = [ setuptools ];
+36 -6
pkgs/development/python-modules/pysdl2/default.nix
··· 21 22 buildPythonPackage rec { 23 pname = "pysdl2"; 24 - version = "0.9.17"; 25 pyproject = true; 26 27 pythonImportsCheck = [ "sdl2" ]; ··· 29 src = fetchFromGitHub { 30 owner = "py-sdl"; 31 repo = "py-sdl2"; 32 - tag = version; 33 - hash = "sha256-FqVgDGpImLN2a51TnU6eKjLK3rwW3ujdzOkK58ERBbE="; 34 }; 35 36 patches = [ 37 (replaceVars ./PySDL2-dll.patch ( 38 - builtins.mapAttrs 39 (_: pkg: "${pkg}/lib/lib${pkg.pname}${stdenv.hostPlatform.extensions.sharedLibrary}") 40 { 41 inherit 42 - SDL2 43 SDL2_ttf 44 SDL2_image 45 SDL2_gfx 46 SDL2_mixer 47 ; 48 } 49 )) 50 ]; 51 ··· 75 disabledTests = [ 76 # GetPrefPath for OrgName/AppName is None 77 "test_SDL_GetPrefPath" 78 ]; 79 80 meta = { 81 - changelog = "https://github.com/py-sdl/py-sdl2/releases/tag/${src.tag}"; 82 description = "Wrapper around the SDL2 library and as such similar to the discontinued PySDL project"; 83 homepage = "https://github.com/py-sdl/py-sdl2"; 84 license = lib.licenses.publicDomain;
··· 21 22 buildPythonPackage rec { 23 pname = "pysdl2"; 24 + version = "0.9.17-unstable-2025-04-03"; 25 pyproject = true; 26 27 pythonImportsCheck = [ "sdl2" ]; ··· 29 src = fetchFromGitHub { 30 owner = "py-sdl"; 31 repo = "py-sdl2"; 32 + rev = "6414ee1c5f4a6eb91b71f5f9e35d469eee395b9f"; 33 + hash = "sha256-E6Jpuin4bqDkvFTaZTsTNkNQJd2e5fuTf2oLsQ71uQ0="; 34 }; 35 36 patches = [ 37 (replaceVars ./PySDL2-dll.patch ( 38 + (builtins.mapAttrs 39 (_: pkg: "${pkg}/lib/lib${pkg.pname}${stdenv.hostPlatform.extensions.sharedLibrary}") 40 { 41 inherit 42 SDL2_ttf 43 SDL2_image 44 SDL2_gfx 45 SDL2_mixer 46 ; 47 } 48 + ) 49 + // { 50 + # sdl2-compat has the pname sdl2-compat, 51 + # but the shared object is named libSDL2.so for compatibility reasons. 52 + # This requires making the shared object path for SDL2 not depend on pname. 53 + SDL2 = (pkg: "${pkg}/lib/libSDL2${stdenv.hostPlatform.extensions.sharedLibrary}") SDL2; 54 + } 55 )) 56 ]; 57 ··· 81 disabledTests = [ 82 # GetPrefPath for OrgName/AppName is None 83 "test_SDL_GetPrefPath" 84 + 85 + # broken with sdl2-compat 86 + "test_SDL_AddDelHintCallback" 87 + "test_SDL_HasIntersectionF" 88 + "test_SDL_IntersectFRect" 89 + "test_SDL_UnionFRect" 90 + "test_SDL_EncloseFPoints" 91 + "test_SDL_IntersectFRectAndLine" 92 + "test_SDL_GetSetTextureScaleMode" 93 + "test_init" 94 + "test_logical_size" 95 + "test_copy" 96 + 97 + # sdl2-compat fails on these in our build sandbox 98 + "test_create_sprite" 99 + "test_create_software_sprite" 100 + "test_create_texture_sprite" 101 + "test_from_image" 102 + "test_from_surface" 103 + "test_from_text" 104 + 105 + "test_SDL_Init" 106 + "test_SDL_InitSubSystem" 107 + "test_SDL_SetWindowIcon" 108 ]; 109 110 meta = { 111 + changelog = "https://github.com/py-sdl/py-sdl2/compare/0.9.17..${src.rev}"; 112 description = "Wrapper around the SDL2 library and as such similar to the discontinued PySDL project"; 113 homepage = "https://github.com/py-sdl/py-sdl2"; 114 license = lib.licenses.publicDomain;
+1 -1
pkgs/development/python-modules/python-gnupg/default.nix
··· 41 homepage = "https://github.com/vsajip/python-gnupg"; 42 changelog = "https://github.com/vsajip/python-gnupg/releases/tag/${version}"; 43 license = licenses.bsd3; 44 - maintainers = with maintainers; [ copumpkin ]; 45 }; 46 }
··· 41 homepage = "https://github.com/vsajip/python-gnupg"; 42 changelog = "https://github.com/vsajip/python-gnupg/releases/tag/${version}"; 43 license = licenses.bsd3; 44 + maintainers = [ ]; 45 }; 46 }
+13 -9
pkgs/development/python-modules/rq/default.nix
··· 1 { 2 lib, 3 fetchFromGitHub, 4 buildPythonPackage, 5 - pythonOlder, 6 7 # build-system 8 hatchling, ··· 12 redis, 13 14 # tests 15 psutil, 16 pytestCheckHook, 17 redisTestHook, 18 sentry-sdk, 19 }: 20 21 buildPythonPackage rec { 22 pname = "rq"; 23 version = "2.2"; 24 pyproject = true; 25 - 26 - disabled = pythonOlder "3.7"; 27 28 src = fetchFromGitHub { 29 owner = "rq"; ··· 40 ]; 41 42 nativeCheckInputs = [ 43 psutil 44 pytestCheckHook 45 redisTestHook 46 sentry-sdk 47 ]; 48 49 __darwinAllowLocalNetworking = true; 50 51 - disabledTests = [ 52 - # https://github.com/rq/rq/commit/fd261d5d8fc0fe604fa396ee6b9c9b7a7bb4142f 53 - "test_clean_large_registry" 54 ]; 55 56 pythonImportsCheck = [ "rq" ]; 57 58 - meta = with lib; { 59 description = "Library for creating background jobs and processing them"; 60 homepage = "https://github.com/nvie/rq/"; 61 changelog = "https://github.com/rq/rq/releases/tag/${src.tag}"; 62 - license = licenses.bsd2; 63 - maintainers = with maintainers; [ mrmebelman ]; 64 }; 65 }
··· 1 { 2 lib, 3 + stdenv, 4 fetchFromGitHub, 5 buildPythonPackage, 6 7 # build-system 8 hatchling, ··· 12 redis, 13 14 # tests 15 + addBinToPathHook, 16 psutil, 17 pytestCheckHook, 18 redisTestHook, 19 sentry-sdk, 20 + versionCheckHook, 21 }: 22 23 buildPythonPackage rec { 24 pname = "rq"; 25 version = "2.2"; 26 pyproject = true; 27 28 src = fetchFromGitHub { 29 owner = "rq"; ··· 40 ]; 41 42 nativeCheckInputs = [ 43 + addBinToPathHook 44 psutil 45 pytestCheckHook 46 redisTestHook 47 sentry-sdk 48 + versionCheckHook 49 ]; 50 + versionCheckProgramArg = "--version"; 51 52 __darwinAllowLocalNetworking = true; 53 54 + disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [ 55 + # PermissionError: [Errno 13] Permission denied: '/tmp/rq-tests.txt' 56 + "test_deleted_jobs_arent_executed" 57 + "test_suspend_worker_execution" 58 ]; 59 60 pythonImportsCheck = [ "rq" ]; 61 62 + meta = { 63 description = "Library for creating background jobs and processing them"; 64 homepage = "https://github.com/nvie/rq/"; 65 changelog = "https://github.com/rq/rq/releases/tag/${src.tag}"; 66 + license = lib.licenses.bsd2; 67 + maintainers = with lib.maintainers; [ mrmebelman ]; 68 }; 69 }
+2 -2
pkgs/development/python-modules/xiaomi-ble/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "xiaomi-ble"; 22 - version = "0.36.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.9"; ··· 28 owner = "Bluetooth-Devices"; 29 repo = "xiaomi-ble"; 30 tag = "v${version}"; 31 - hash = "sha256-qk8eoPuyU8deEuQkRRtTt1AxIpjaXaS/byDxMfZnLgI="; 32 }; 33 34 build-system = [ poetry-core ];
··· 19 20 buildPythonPackage rec { 21 pname = "xiaomi-ble"; 22 + version = "0.38.0"; 23 pyproject = true; 24 25 disabled = pythonOlder "3.9"; ··· 28 owner = "Bluetooth-Devices"; 29 repo = "xiaomi-ble"; 30 tag = "v${version}"; 31 + hash = "sha256-ysuQBmTdBmV3U3D2K4Lf0h7yNsEIkmsFtzGZyTbVa/c="; 32 }; 33 34 build-system = [ poetry-core ];
+3 -3
pkgs/development/tools/rust/sqlx-cli/default.nix
··· 17 18 rustPlatform.buildRustPackage rec { 19 pname = "sqlx-cli"; 20 - version = "0.8.3"; 21 22 src = fetchFromGitHub { 23 owner = "launchbadge"; 24 repo = "sqlx"; 25 rev = "v${version}"; 26 - hash = "sha256-kAZUconMYUF9gZbLSg7KW3fVb7pkTq/d/yQyVzscxRw="; 27 }; 28 29 useFetchCargoVendor = true; 30 - cargoHash = "sha256-d+VOtFC+OTp6MQnzEIOfIxk1ARAcNYvS7U2+IJ1hqSs="; 31 32 buildNoDefaultFeatures = true; 33 buildFeatures = [
··· 17 18 rustPlatform.buildRustPackage rec { 19 pname = "sqlx-cli"; 20 + version = "0.8.5"; 21 22 src = fetchFromGitHub { 23 owner = "launchbadge"; 24 repo = "sqlx"; 25 rev = "v${version}"; 26 + hash = "sha256-R6T8sXuHlunXvqxQ95EKd+fdkPUZU8nTFkg9WBJWeRA="; 27 }; 28 29 useFetchCargoVendor = true; 30 + cargoHash = "sha256-ILv9sVBKhF+KDPfTsxYorRlx33tPolNE8KSNdNajzBc="; 31 32 buildNoDefaultFeatures = true; 33 buildFeatures = [
+1 -1
pkgs/kde/gear/akonadi-search/default.nix
··· 18 name = "${pname}-${version}"; 19 src = sources.${pname}; 20 sourceRoot = "${pname}-${version}/${cargoRoot}"; 21 - hash = "sha256-fx8q7b0KGEevn0DlMAGgAvQMXqZmBF8aINDwpaGyq7I="; 22 }; 23 24 extraNativeBuildInputs = [
··· 18 name = "${pname}-${version}"; 19 src = sources.${pname}; 20 sourceRoot = "${pname}-${version}/${cargoRoot}"; 21 + hash = "sha256-hdm4LfQcs4TTfBLzlZYJ0uzqfLxMXuYQExLGJg81W2U="; 22 }; 23 24 extraNativeBuildInputs = [
+1 -1
pkgs/kde/gear/angelfish/default.nix
··· 17 # include version in the name so we invalidate the FOD 18 name = "${pname}-${version}"; 19 src = sources.${pname}; 20 - hash = "sha256-5TMHytHLIjdzY6O1+V9do/JCfxFfBkYD+bd+FNLlrMk="; 21 }; 22 23 extraNativeBuildInputs = [
··· 17 # include version in the name so we invalidate the FOD 18 name = "${pname}-${version}"; 19 src = sources.${pname}; 20 + hash = "sha256-FgzmWw8FZb+DNSf2n6H14Rq07+x1LzG9hX4hFetuqDw="; 21 }; 22 23 extraNativeBuildInputs = [
+2 -2
pkgs/kde/gear/blinken/default.nix
··· 1 { 2 mkKdeDerivation, 3 qtsvg, 4 - phonon, 5 }: 6 mkKdeDerivation { 7 pname = "blinken"; 8 9 extraBuildInputs = [ 10 qtsvg 11 - phonon 12 ]; 13 meta.mainProgram = "blinken"; 14 }
··· 1 { 2 mkKdeDerivation, 3 + qtmultimedia, 4 qtsvg, 5 }: 6 mkKdeDerivation { 7 pname = "blinken"; 8 9 extraBuildInputs = [ 10 + qtmultimedia 11 qtsvg 12 ]; 13 meta.mainProgram = "blinken"; 14 }
+1 -1
pkgs/kde/gear/default.nix
··· 172 krecorder = callPackage ./krecorder { }; 173 kreversi = callPackage ./kreversi { }; 174 krfb = callPackage ./krfb { }; 175 - kross-interpreters = callPackage ./kross-interpreters { }; 176 kruler = callPackage ./kruler { }; 177 ksanecore = callPackage ./ksanecore { }; 178 kshisen = callPackage ./kshisen { }; ··· 237 plasmatube = callPackage ./plasmatube { }; 238 poxml = callPackage ./poxml { }; 239 qmlkonsole = callPackage ./qmlkonsole { }; 240 rocs = callPackage ./rocs { }; 241 signon-kwallet-extension = callPackage ./signon-kwallet-extension { }; 242 skanlite = callPackage ./skanlite { };
··· 172 krecorder = callPackage ./krecorder { }; 173 kreversi = callPackage ./kreversi { }; 174 krfb = callPackage ./krfb { }; 175 kruler = callPackage ./kruler { }; 176 ksanecore = callPackage ./ksanecore { }; 177 kshisen = callPackage ./kshisen { }; ··· 236 plasmatube = callPackage ./plasmatube { }; 237 poxml = callPackage ./poxml { }; 238 qmlkonsole = callPackage ./qmlkonsole { }; 239 + qrca = callPackage ./qrca { }; 240 rocs = callPackage ./rocs { }; 241 signon-kwallet-extension = callPackage ./signon-kwallet-extension { }; 242 skanlite = callPackage ./skanlite { };
-5
pkgs/kde/gear/falkon/default.nix
··· 9 mkKdeDerivation { 10 pname = "falkon"; 11 12 - # Fix build with PySide 6.9 13 - # Submitted upstream: https://invent.kde.org/network/falkon/-/merge_requests/128 14 - # FIXME: remove when merged 15 - patches = [ ./qt-6.9.patch ]; 16 - 17 extraNativeBuildInputs = [ 18 qttools 19 qtwebchannel
··· 9 mkKdeDerivation { 10 pname = "falkon"; 11 12 extraNativeBuildInputs = [ 13 qttools 14 qtwebchannel
-25
pkgs/kde/gear/falkon/qt-6.9.patch
··· 1 - diff --git a/src/plugins/PyFalkon/typesystem_pyfalkon.xml b/src/plugins/PyFalkon/typesystem_pyfalkon.xml 2 - index 45f23c49e..31eff876b 100644 3 - --- a/src/plugins/PyFalkon/typesystem_pyfalkon.xml 4 - +++ b/src/plugins/PyFalkon/typesystem_pyfalkon.xml 5 - @@ -265,7 +265,7 @@ 6 - QList&lt;QByteArray&gt; version = QByteArray(Qz::VERSION).split('.'); 7 - PyObject *pyFalkonVersion = PyTuple_New(3); 8 - for (int i = 0; i &lt; 3; ++i) 9 - - PyTuple_SET_ITEM(pyFalkonVersion, i, PyLong_FromLong(version[i].toInt())); 10 - + PyTuple_SetItem(pyFalkonVersion, i, PyLong_FromLong(version[i].toInt())); 11 - PyModule_AddObject(module, "__version_info__", pyFalkonVersion); 12 - PyModule_AddStringConstant(module, "__version__", Qz::VERSION); 13 - </inject-code> 14 - @@ -273,9 +273,9 @@ 15 - <template name="return_for_QFileDialog"> 16 - %RETURN_TYPE retval_ = %CPPSELF.%FUNCTION_NAME(%1, %2, %3, %4, %5, &amp;%6, %7); 17 - %PYARG_0 = PyTuple_New(2); 18 - - PyTuple_SET_ITEM(%PYARG_0, 0, %CONVERTTOPYTHON[%RETURN_TYPE](retval_)); 19 - + PyTuple_SetItem(%PYARG_0, 0, %CONVERTTOPYTHON[%RETURN_TYPE](retval_)); 20 - auto ARG6_PTR = &amp;%6; 21 - - PyTuple_SET_ITEM(%PYARG_0, 1, %CONVERTTOPYTHON[%ARG6_TYPE](ARG6_PTR)); 22 - + PyTuple_SetItem(%PYARG_0, 1, %CONVERTTOPYTHON[%ARG6_TYPE](ARG6_PTR)); 23 - </template> 24 - 25 - <suppress-warning text="Unable to translate type &quot;std::function&lt;QPoint (QSize)&gt;&quot;:*"/>
···
+7 -5
pkgs/kde/gear/kalarm/default.nix
··· 1 { 2 mkKdeDerivation, 3 - libcanberra, 4 - libvlc, 5 }: 6 mkKdeDerivation { 7 pname = "kalarm"; 8 9 - extraBuildInputs = [ 10 - libcanberra 11 - libvlc 12 ]; 13 }
··· 1 { 2 mkKdeDerivation, 3 + pkg-config, 4 + mpv, 5 }: 6 mkKdeDerivation { 7 pname = "kalarm"; 8 9 + extraCmakeFlags = [ 10 + "-DENABLE_LIBVLC=0" 11 ]; 12 + 13 + extraNativeBuildInputs = [ pkg-config ]; 14 + extraBuildInputs = [ mpv ]; 15 }
+2
pkgs/kde/gear/kcalc/default.nix
··· 2 mkKdeDerivation, 3 qt5compat, 4 gmp, 5 mpfr, 6 kdoctools, 7 }: ··· 11 extraBuildInputs = [ 12 qt5compat 13 gmp 14 mpfr 15 kdoctools 16 ];
··· 2 mkKdeDerivation, 3 qt5compat, 4 gmp, 5 + libmpc, 6 mpfr, 7 kdoctools, 8 }: ··· 12 extraBuildInputs = [ 13 qt5compat 14 gmp 15 + libmpc 16 mpfr 17 kdoctools 18 ];
-8
pkgs/kde/gear/kdeconnect-kde/default.nix
··· 10 wayland, 11 wayland-protocols, 12 libfakekey, 13 - fetchpatch, 14 }: 15 mkKdeDerivation { 16 pname = "kdeconnect-kde"; ··· 18 patches = [ 19 (replaceVars ./hardcode-sshfs-path.patch { 20 sshfs = lib.getExe sshfs; 21 - }) 22 - 23 - # Fix build with Qt 6.9 24 - # FIXME: remove in next update 25 - (fetchpatch { 26 - url = "https://invent.kde.org/network/kdeconnect-kde/-/commit/120a089ed8a45176289b8f1addf044817b13aa7b.patch"; 27 - hash = "sha256-ifos4wMFimhtksqMhhHPfHrEV5+PSXLdapgqGwQj/Hc="; 28 }) 29 ]; 30
··· 10 wayland, 11 wayland-protocols, 12 libfakekey, 13 }: 14 mkKdeDerivation { 15 pname = "kdeconnect-kde"; ··· 17 patches = [ 18 (replaceVars ./hardcode-sshfs-path.patch { 19 sshfs = lib.getExe sshfs; 20 }) 21 ]; 22
+8 -7
pkgs/kde/gear/kdenetwork-filesharing/samba-hint.patch
··· 1 --- a/samba/filepropertiesplugin/qml/MissingSambaPage.qml 2 +++ b/samba/filepropertiesplugin/qml/MissingSambaPage.qml 3 - @@ -16,7 +16,7 @@ Item { 4 - 5 icon.name: "dialog-error" 6 7 - - text: xi18nc("@info", "The <application>Samba</application> file sharing service must be installed before folders can be shared.") 8 - - explanation: i18n("Because this distro does not include PackageKit, we cannot show you a nice \"Install it\" button, and you will have to use your package manager to install the <command>samba</command> server package manually.") 9 - + text: xi18nc("@info", "File sharing service unavailable") 10 + explanation: i18n("Please enable the `services.samba.enable` and `services.samba.usershares.enable` options in your NixOS configuration.") 11 - } 12 - }
··· 1 + diff --git a/samba/filepropertiesplugin/qml/MissingSambaPage.qml b/samba/filepropertiesplugin/qml/MissingSambaPage.qml 2 + index 4419b25..f16e70b 100644 3 --- a/samba/filepropertiesplugin/qml/MissingSambaPage.qml 4 +++ b/samba/filepropertiesplugin/qml/MissingSambaPage.qml 5 + @@ -17,7 +17,7 @@ Item { 6 icon.name: "dialog-error" 7 8 + text: xi18nc("@info", "File sharing service unavailable") 9 + - explanation: i18n("Please ensure the Samba service is enabled and running.\nIf you haven't disabled it manually, consider reporting a bug to your distribution.") 10 + explanation: i18n("Please enable the `services.samba.enable` and `services.samba.usershares.enable` options in your NixOS configuration.") 11 + 12 + helpfulAction: Kirigami.Action { 13 + icon.name: "mail-message-new"
+18 -7
pkgs/kde/gear/kdenlive/default.nix
··· 1 { 2 mkKdeDerivation, 3 replaceVars, 4 qtsvg, 5 qtmultimedia, 6 qtnetworkauth, 7 qqc2-desktop-style, 8 - ffmpeg-full, 9 - mediainfo, 10 - mlt, 11 - shared-mime-info, 12 libv4l, 13 frei0r, 14 - glaxnimate, 15 }: 16 mkKdeDerivation { 17 pname = "kdenlive"; ··· 23 }) 24 ]; 25 26 - extraNativeBuildInputs = [ shared-mime-info ]; 27 28 extraBuildInputs = [ 29 qtsvg ··· 32 33 qqc2-desktop-style 34 35 - mlt 36 libv4l 37 ]; 38 39 qtWrapperArgs = [
··· 1 { 2 mkKdeDerivation, 3 replaceVars, 4 + mediainfo, 5 + mlt, 6 + glaxnimate, 7 + ffmpeg-full, 8 + pkg-config, 9 + shared-mime-info, 10 qtsvg, 11 qtmultimedia, 12 qtnetworkauth, 13 qqc2-desktop-style, 14 libv4l, 15 + open-timeline-io, 16 frei0r, 17 }: 18 mkKdeDerivation { 19 pname = "kdenlive"; ··· 25 }) 26 ]; 27 28 + extraCmakeFlags = [ 29 + "-DFETCH_OTIO=0" 30 + ]; 31 + 32 + extraNativeBuildInputs = [ 33 + pkg-config 34 + shared-mime-info 35 + ]; 36 37 extraBuildInputs = [ 38 qtsvg ··· 41 42 qqc2-desktop-style 43 44 + ffmpeg-full 45 libv4l 46 + mlt 47 + open-timeline-io 48 ]; 49 50 qtWrapperArgs = [
+3 -1
pkgs/kde/gear/kdepim-addons/default.nix
··· 1 { 2 mkKdeDerivation, 3 sources, 4 rustPlatform, 5 cargo, 6 rustc, ··· 20 name = "${pname}-${version}"; 21 src = sources.${pname}; 22 sourceRoot = "${pname}-${version}/${cargoRoot}"; 23 - hash = "sha256-v1TJ8xu4zXXig+ESYT0ZL6l1gOTbqyVA1P/6T/YnW0k="; 24 }; 25 26 extraNativeBuildInputs = [ 27 rustPlatform.cargoSetupHook 28 cargo 29 rustc
··· 1 { 2 mkKdeDerivation, 3 sources, 4 + pkg-config, 5 rustPlatform, 6 cargo, 7 rustc, ··· 21 name = "${pname}-${version}"; 22 src = sources.${pname}; 23 sourceRoot = "${pname}-${version}/${cargoRoot}"; 24 + hash = "sha256-66FqoD3JoPbtg6zc32uaPYaTo4zHxywiN8wPI2jtcjc="; 25 }; 26 27 extraNativeBuildInputs = [ 28 + pkg-config 29 rustPlatform.cargoSetupHook 30 cargo 31 rustc
+4
pkgs/kde/gear/keysmith/default.nix
··· 7 mkKdeDerivation { 8 pname = "keysmith"; 9 10 extraNativeBuildInputs = [ pkg-config ]; 11 extraBuildInputs = [ 12 qtsvg
··· 7 mkKdeDerivation { 8 pname = "keysmith"; 9 10 + patches = [ 11 + ./optional-runtime-dependencies.patch 12 + ]; 13 + 14 extraNativeBuildInputs = [ pkg-config ]; 15 extraBuildInputs = [ 16 qtsvg
+13
pkgs/kde/gear/keysmith/optional-runtime-dependencies.patch
···
··· 1 + diff --git a/CMakeLists.txt b/CMakeLists.txt 2 + index 55ce9e0..86af3e0 100644 3 + --- a/CMakeLists.txt 4 + +++ b/CMakeLists.txt 5 + @@ -47,7 +47,7 @@ find_package(KF6CoreAddons ${KF_MIN_VERSION} REQUIRED) 6 + find_package(KF6I18n ${KF_MIN_VERSION} REQUIRED) 7 + find_package(KF6Config ${KF_MIN_VERSION} REQUIRED) 8 + 9 + -ecm_find_qmlmodule(org.kde.prison.scanner REQUIRED) 10 + +ecm_find_qmlmodule(org.kde.prison.scanner) 11 + 12 + ecm_set_disabled_deprecation_versions(QT 6.0.0 13 + KF 6.12.0
+2 -2
pkgs/kde/gear/klettres/default.nix
··· 1 { 2 mkKdeDerivation, 3 qtsvg, 4 - phonon, 5 }: 6 mkKdeDerivation { 7 pname = "klettres"; 8 9 extraBuildInputs = [ 10 qtsvg 11 - phonon 12 ]; 13 meta.mainProgram = "klettres"; 14 }
··· 1 { 2 mkKdeDerivation, 3 + qtmultimedia, 4 qtsvg, 5 }: 6 mkKdeDerivation { 7 pname = "klettres"; 8 9 extraBuildInputs = [ 10 + qtmultimedia 11 qtsvg 12 ]; 13 meta.mainProgram = "klettres"; 14 }
-10
pkgs/kde/gear/kpimtextedit/default.nix
··· 1 { 2 mkKdeDerivation, 3 qt5compat, 4 - fetchpatch, 5 }: 6 mkKdeDerivation { 7 pname = "kpimtextedit"; 8 - 9 - # Fix build with Qt 6.9 10 - # FIXME: remove in 25.04 11 - patches = [ 12 - (fetchpatch { 13 - url = "https://invent.kde.org/pim/kpimtextedit/-/commit/2c36ea1bdd1dcb60cd042a10668d64447484615d.patch"; 14 - hash = "sha256-Uo8yl5v9tpjXRF1AtlCGnFhprOEug9WCdmfyb+DHSUQ="; 15 - }) 16 - ]; 17 18 extraBuildInputs = [ qt5compat ]; 19 }
··· 1 { 2 mkKdeDerivation, 3 qt5compat, 4 }: 5 mkKdeDerivation { 6 pname = "kpimtextedit"; 7 8 extraBuildInputs = [ qt5compat ]; 9 }
+2 -8
pkgs/kde/gear/krdc/default.nix
··· 1 { 2 - lib, 3 mkKdeDerivation, 4 pkg-config, 5 shared-mime-info, ··· 7 libssh, 8 libvncserver, 9 freerdp, 10 }: 11 mkKdeDerivation { 12 pname = "krdc"; 13 14 - # freerdp3 is not yet supported by 24.12 version of krdc 15 - # can be dropped with 25.04 kdePackages release, as that will default to freerdp3 16 - # backporting freerdp3 support is non-trivial 17 - cmakeFlags = [ 18 - (lib.cmakeBool "WITH_RDP" false) 19 - ]; 20 - 21 extraNativeBuildInputs = [ 22 pkg-config 23 shared-mime-info ··· 28 libssh 29 libvncserver 30 freerdp 31 ]; 32 33 meta.mainProgram = "krdc";
··· 1 { 2 mkKdeDerivation, 3 pkg-config, 4 shared-mime-info, ··· 6 libssh, 7 libvncserver, 8 freerdp, 9 + fuse3, 10 }: 11 mkKdeDerivation { 12 pname = "krdc"; 13 14 extraNativeBuildInputs = [ 15 pkg-config 16 shared-mime-info ··· 21 libssh 22 libvncserver 23 freerdp 24 + fuse3 25 ]; 26 27 meta.mainProgram = "krdc";
-11
pkgs/kde/gear/kross-interpreters/default.nix
··· 1 - { 2 - mkKdeDerivation, 3 - extra-cmake-modules, 4 - }: 5 - mkKdeDerivation { 6 - pname = "kross-interpreters"; 7 - 8 - extraBuildInputs = [ extra-cmake-modules ]; 9 - # FIXME(qt5) 10 - meta.broken = true; 11 - }
···
-15
pkgs/kde/gear/libktorrent/default.nix
··· 5 boost, 6 gmp, 7 libgcrypt, 8 - fetchpatch, 9 }: 10 mkKdeDerivation { 11 pname = "libktorrent"; 12 - 13 - # Backport patches to fix build with Qt 6.9 14 - # FIXME: remove in 25.04 15 - patches = [ 16 - (fetchpatch { 17 - url = "https://invent.kde.org/network/libktorrent/-/commit/4bcf7eb1e0cb781286eae33751acd8e827080ec5.patch"; 18 - includes = [ "src/utp/connection.cpp" ]; 19 - hash = "sha256-gj5jLViuzttfzCrx/izmajJiH3vE9TkfsXS+1r/qGNc="; 20 - }) 21 - (fetchpatch { 22 - url = "https://invent.kde.org/network/libktorrent/-/commit/4f73038c74b5d72b2f7f1377c7bf037f111e965d.patch"; 23 - hash = "sha256-dQeZLmnagxBOUR2hnxF65jIRSAntTrEggxdUf3NNzDE="; 24 - }) 25 - ]; 26 27 extraNativeBuildInputs = [ doxygen ]; 28 extraBuildInputs = [ qt5compat ];
··· 5 boost, 6 gmp, 7 libgcrypt, 8 }: 9 mkKdeDerivation { 10 pname = "libktorrent"; 11 12 extraNativeBuildInputs = [ doxygen ]; 13 extraBuildInputs = [ qt5compat ];
+4 -4
pkgs/kde/gear/mailcommon/default.nix
··· 1 { 2 mkKdeDerivation, 3 - qtwebengine, 4 qttools, 5 libxslt, 6 - phonon, 7 }: 8 mkKdeDerivation { 9 pname = "mailcommon"; 10 11 extraNativeBuildInputs = [ libxslt ]; 12 extraBuildInputs = [ 13 - qtwebengine 14 qttools 15 - phonon 16 ]; 17 }
··· 1 { 2 mkKdeDerivation, 3 + qtmultimedia, 4 qttools, 5 + qtwebengine, 6 libxslt, 7 }: 8 mkKdeDerivation { 9 pname = "mailcommon"; 10 11 extraNativeBuildInputs = [ libxslt ]; 12 extraBuildInputs = [ 13 + qtmultimedia 14 qttools 15 + qtwebengine 16 ]; 17 }
-14
pkgs/kde/gear/marble/default.nix
··· 17 gpsd, 18 protobuf, 19 shapelib, 20 - fetchpatch, 21 }: 22 mkKdeDerivation { 23 pname = "marble"; 24 - 25 - # Fix build with Qt 6.9 26 - # FIXME: remove in 25.04 27 - patches = [ 28 - (fetchpatch { 29 - url = "https://invent.kde.org/education/marble/-/commit/8d21b43f569adcd3bb76d3f9d921f2aaddb2c303.patch"; 30 - hash = "sha256-UdY/4yxRMHcLb76A3elOLIEH+4v+AgVeUbUKzdavXHA="; 31 - }) 32 - (fetchpatch { 33 - url = "https://invent.kde.org/education/marble/-/commit/a14a3a911f5a8f152783a97410267a6fd98cce48.patch"; 34 - hash = "sha256-WY28+Ea7DQ3qkNed25EtCtAKlM3Y/57gyM/DHQqdfCc="; 35 - }) 36 - ]; 37 38 extraNativeBuildInputs = [ 39 perl
··· 17 gpsd, 18 protobuf, 19 shapelib, 20 }: 21 mkKdeDerivation { 22 pname = "marble"; 23 24 extraNativeBuildInputs = [ 25 perl
+11
pkgs/kde/gear/qrca/default.nix
···
··· 1 + { 2 + mkKdeDerivation, 3 + pkg-config, 4 + qtmultimedia, 5 + }: 6 + mkKdeDerivation { 7 + pname = "qrca"; 8 + 9 + extraNativeBuildInputs = [ pkg-config ]; 10 + extraBuildInputs = [ qtmultimedia ]; 11 + }
+5 -3
pkgs/kde/generated/dependencies.json
··· 1147 "kirigami", 1148 "kirigami-addons", 1149 "kquickimageeditor", 1150 - "prison" 1151 ], 1152 "kajongg": [ 1153 "extra-cmake-modules", ··· 2769 "kitemmodels", 2770 "kmailtransport", 2771 "kmime", 2772 - "kstatusnotifieritem", 2773 "kwidgetsaddons", 2774 "kwindowsystem", 2775 "kxmlgui", ··· 3929 "kcoreaddons", 3930 "ki18n", 3931 "kio", 3932 "qtkeychain", 3933 "sonnet", 3934 "syntax-highlighting" ··· 6332 "kwindowsystem" 6333 ] 6334 }, 6335 - "version": "7e4e118f" 6336 }
··· 1147 "kirigami", 1148 "kirigami-addons", 1149 "kquickimageeditor", 1150 + "kwindowsystem", 1151 + "prison", 1152 + "qxmpp" 1153 ], 1154 "kajongg": [ 1155 "extra-cmake-modules", ··· 2771 "kitemmodels", 2772 "kmailtransport", 2773 "kmime", 2774 "kwidgetsaddons", 2775 "kwindowsystem", 2776 "kxmlgui", ··· 3930 "kcoreaddons", 3931 "ki18n", 3932 "kio", 3933 + "ktextwidgets", 3934 "qtkeychain", 3935 "sonnet", 3936 "syntax-highlighting" ··· 6334 "kwindowsystem" 6335 ] 6336 }, 6337 + "version": "f0a9ee94" 6338 }
+59 -18
pkgs/kde/generated/licenses.json
··· 6 "LGPL-2.0-or-later", 7 "LGPL-2.1-only", 8 "LGPL-3.0-only", 9 "LicenseRef-KDE-Accepted-LGPL" 10 ], 11 "akonadi": [ ··· 252 "GPL-2.0-or-later", 253 "GPL-3.0-only", 254 "LGPL-2.0-or-later", 255 "LicenseRef-KDE-Accepted-GPL", 256 "MIT" 257 ], 258 "breeze-grub": [ ··· 372 "GPL-2.0-only", 373 "GPL-2.0-or-later", 374 "GPL-3.0-only", 375 "LicenseRef-KDE-Accepted-GPL" 376 ], 377 "drkonqi": [ ··· 530 "kaccounts-providers": [ 531 "CC0-1.0", 532 "GPL-2.0-or-later", 533 - "GPL-3.0-or-later", 534 "LGPL-2.0-or-later" 535 ], 536 "kactivitymanagerd": [ ··· 553 ], 554 "kajongg": [ 555 "CC0-1.0", 556 - "GPL-2.0" 557 ], 558 "kalarm": [ 559 "BSD-3-Clause", ··· 951 "GPL-3.0-only", 952 "LGPL-2.0-only", 953 "LGPL-2.0-or-later", 954 "LGPL-3.0-only", 955 "LicenseRef-KDE-Accepted-GPL", 956 "LicenseRef-KDE-Accepted-LGPL", ··· 1096 "CC0-1.0", 1097 "GPL-3.0-or-later", 1098 "LGPL-2.1-only", 1099 "LGPL-3.0-only", 1100 "LicenseRef-KDE-Accepted-LGPL" 1101 ], ··· 1130 ], 1131 "kget": [ 1132 "BSD-3-Clause", 1133 - "CC0-1.0" 1134 ], 1135 "kglobalaccel": [ 1136 "CC0-1.0", ··· 1174 "khangman": [ 1175 "BSD-2-Clause", 1176 "CC0-1.0", 1177 - "GPL-2.0-only", 1178 "GPL-2.0-or-later", 1179 - "GPL-3.0-only", 1180 - "LGPL-2.1-or-later", 1181 - "LicenseRef-KDE-Accepted-GPL" 1182 ], 1183 "khealthcertificate": [ 1184 "Apache-2.0", ··· 1203 ], 1204 "ki18n": [ 1205 "BSD-3-Clause", 1206 - "BSD-3-clause", 1207 "CC0-1.0", 1208 "LGPL-2.0-or-later", 1209 "LGPL-2.1-only", ··· 1430 "GPL-2.0-or-later", 1431 "LGPL-2.0-only", 1432 "LGPL-2.0-or-later", 1433 - "LGPL-2.1-only", 1434 "LGPL-2.1-or-later", 1435 "LGPL-3.0-only", 1436 "LGPL-3.0-or-later", ··· 1510 "GPL-2.0-or-later" 1511 ], 1512 "kmix": [ 1513 "CC0-1.0", 1514 "GPL-2.0-or-later" 1515 ], ··· 1557 "LicenseRef-KDE-Accepted-GPL" 1558 ], 1559 "knotifications": [ 1560 "BSD-3-Clause", 1561 "CC0-1.0", 1562 "LGPL-2.0-only", ··· 1589 "GPL-2.0-or-later" 1590 ], 1591 "kolourpaint": [ 1592 - "CC0-1.0" 1593 ], 1594 "kompare": [ 1595 "CC0-1.0", ··· 1698 "kpackage": [ 1699 "CC0-1.0", 1700 "GPL-2.0-or-later", 1701 - "LGPL-2.0-or-later" 1702 ], 1703 "kparts": [ 1704 "CC0-1.0", ··· 1822 "LGPL-3.0-only", 1823 "LicenseRef-KDE-Accepted-LGPL" 1824 ], 1825 - "kross-interpreters": [ 1826 - "CC0-1.0" 1827 - ], 1828 "kruler": [ 1829 "BSD-3-Clause", 1830 "CC0-1.0", ··· 1910 "GPL-2.0-or-later" 1911 ], 1912 "kstatusnotifieritem": [ 1913 "CC0-1.0", 1914 - "LGPL-2.0-or-later" 1915 ], 1916 "ksudoku": [ 1917 "BSD-3-Clause", ··· 1988 "ktrip": [ 1989 "BSD-2-Clause", 1990 "BSD-3-Clause", 1991 "CC0-1.0", 1992 "GPL-2.0-only", 1993 "GPL-3.0-only", ··· 2015 "LGPL-2.0-or-later" 2016 ], 2017 "kunitconversion": [ 2018 "CC0-1.0", 2019 - "LGPL-2.0-or-later" 2020 ], 2021 "kuserfeedback": [ 2022 "BSD-3-Clause", ··· 2074 "LGPL-2.1-or-later" 2075 ], 2076 "kweathercore": [ 2077 "CC0-1.0", 2078 "LGPL-2.0-or-later" 2079 ], 2080 "kwidgetsaddons": [ 2081 "CC0-1.0", 2082 "GPL-2.0-or-later", 2083 "LGPL-2.0-only", ··· 2194 "LicenseRef-KDE-Accepted-LGPL" 2195 ], 2196 "libkleo": [ 2197 "BSD-3-Clause", 2198 "CC0-1.0", 2199 "GCC-exception-3.1", ··· 2534 "LicenseRef-KDE-Accepted-LGPL" 2535 ], 2536 "plasma-browser-integration": [ 2537 "CC0-1.0", 2538 "GPL-2.0-or-later", 2539 "GPL-3.0-or-later", 2540 "MIT" 2541 ], 2542 "plasma-desktop": [ ··· 2716 "plasma5support": [ 2717 "BSD-3-Clause", 2718 "CC0-1.0", 2719 "GPL-2.0-or-later", 2720 "LGPL-2.0-only", 2721 "LGPL-2.0-or-later", 2722 - "LGPL-2.1-or-later" 2723 ], 2724 "plasmatube": [ 2725 "CC-BY-SA-4.0", ··· 2727 "GPL-2.0-only", 2728 "GPL-3.0-only", 2729 "GPL-3.0-or-later", 2730 "LGPL-2.1-only", 2731 "LGPL-3.0-only", 2732 "LicenseRef-KDE-Accepted-GPL", ··· 2812 "LicenseRef-Qt-Commercial", 2813 "MIT" 2814 ], 2815 "rocs": [ 2816 "BSD-2-Clause", 2817 "CC0-1.0", ··· 2874 "GPL-2.0-or-later", 2875 "GPL-3.0-only", 2876 "LGPL-2.0-or-later", 2877 - "LicenseRef-KDE-Accepted-GPL" 2878 ], 2879 "spectacle": [ 2880 "BSD-3-Clause", ··· 2976 "GPL-2.0-or-later", 2977 "LGPL-2.0-or-later", 2978 "LGPL-2.1-only", 2979 "LGPL-3.0-only", 2980 "LicenseRef-KDE-Accepted-LGPL", 2981 "MIT"
··· 6 "LGPL-2.0-or-later", 7 "LGPL-2.1-only", 8 "LGPL-3.0-only", 9 + "LGPL-3.0-or-later", 10 "LicenseRef-KDE-Accepted-LGPL" 11 ], 12 "akonadi": [ ··· 253 "GPL-2.0-or-later", 254 "GPL-3.0-only", 255 "LGPL-2.0-or-later", 256 + "LGPL-3.0-only", 257 "LicenseRef-KDE-Accepted-GPL", 258 + "LicenseRef-Qt-Commercial", 259 "MIT" 260 ], 261 "breeze-grub": [ ··· 375 "GPL-2.0-only", 376 "GPL-2.0-or-later", 377 "GPL-3.0-only", 378 + "LGPL-3.0-or-later", 379 "LicenseRef-KDE-Accepted-GPL" 380 ], 381 "drkonqi": [ ··· 534 "kaccounts-providers": [ 535 "CC0-1.0", 536 "GPL-2.0-or-later", 537 "LGPL-2.0-or-later" 538 ], 539 "kactivitymanagerd": [ ··· 556 ], 557 "kajongg": [ 558 "CC0-1.0", 559 + "GPL-2.0", 560 + "GPL-2.0-only" 561 ], 562 "kalarm": [ 563 "BSD-3-Clause", ··· 955 "GPL-3.0-only", 956 "LGPL-2.0-only", 957 "LGPL-2.0-or-later", 958 + "LGPL-2.1-only", 959 "LGPL-3.0-only", 960 "LicenseRef-KDE-Accepted-GPL", 961 "LicenseRef-KDE-Accepted-LGPL", ··· 1101 "CC0-1.0", 1102 "GPL-3.0-or-later", 1103 "LGPL-2.1-only", 1104 + "LGPL-2.1-or-later", 1105 "LGPL-3.0-only", 1106 "LicenseRef-KDE-Accepted-LGPL" 1107 ], ··· 1136 ], 1137 "kget": [ 1138 "BSD-3-Clause", 1139 + "CC0-1.0", 1140 + "LGPL-3.0-or-later" 1141 ], 1142 "kglobalaccel": [ 1143 "CC0-1.0", ··· 1181 "khangman": [ 1182 "BSD-2-Clause", 1183 "CC0-1.0", 1184 "GPL-2.0-or-later", 1185 + "LGPL-2.1-or-later" 1186 ], 1187 "khealthcertificate": [ 1188 "Apache-2.0", ··· 1207 ], 1208 "ki18n": [ 1209 "BSD-3-Clause", 1210 "CC0-1.0", 1211 "LGPL-2.0-or-later", 1212 "LGPL-2.1-only", ··· 1433 "GPL-2.0-or-later", 1434 "LGPL-2.0-only", 1435 "LGPL-2.0-or-later", 1436 "LGPL-2.1-or-later", 1437 "LGPL-3.0-only", 1438 "LGPL-3.0-or-later", ··· 1512 "GPL-2.0-or-later" 1513 ], 1514 "kmix": [ 1515 + "BSD-2-Clause", 1516 "CC0-1.0", 1517 "GPL-2.0-or-later" 1518 ], ··· 1560 "LicenseRef-KDE-Accepted-GPL" 1561 ], 1562 "knotifications": [ 1563 + "BSD-2-Clause", 1564 "BSD-3-Clause", 1565 "CC0-1.0", 1566 "LGPL-2.0-only", ··· 1593 "GPL-2.0-or-later" 1594 ], 1595 "kolourpaint": [ 1596 + "BSD-2-Clause", 1597 + "CC0-1.0", 1598 + "LGPL-2.0-only", 1599 + "LGPL-2.0-or-later", 1600 + "LGPL-2.1-only", 1601 + "LGPL-3.0-only", 1602 + "LicenseRef-KDE-Accepted-LGPL" 1603 ], 1604 "kompare": [ 1605 "CC0-1.0", ··· 1708 "kpackage": [ 1709 "CC0-1.0", 1710 "GPL-2.0-or-later", 1711 + "LGPL-2.0-or-later", 1712 + "LGPL-2.1-or-later" 1713 ], 1714 "kparts": [ 1715 "CC0-1.0", ··· 1833 "LGPL-3.0-only", 1834 "LicenseRef-KDE-Accepted-LGPL" 1835 ], 1836 "kruler": [ 1837 "BSD-3-Clause", 1838 "CC0-1.0", ··· 1918 "GPL-2.0-or-later" 1919 ], 1920 "kstatusnotifieritem": [ 1921 + "BSD-2-Clause", 1922 "CC0-1.0", 1923 + "LGPL-2.0-or-later", 1924 + "LGPL-2.1-only", 1925 + "LGPL-3.0-only", 1926 + "LicenseRef-KDE-Accepted-LGPL", 1927 + "MIT" 1928 ], 1929 "ksudoku": [ 1930 "BSD-3-Clause", ··· 2001 "ktrip": [ 2002 "BSD-2-Clause", 2003 "BSD-3-Clause", 2004 + "CC-BY-SA-4.0", 2005 "CC0-1.0", 2006 "GPL-2.0-only", 2007 "GPL-3.0-only", ··· 2029 "LGPL-2.0-or-later" 2030 ], 2031 "kunitconversion": [ 2032 + "BSD-2-Clause", 2033 "CC0-1.0", 2034 + "LGPL-2.0-or-later", 2035 + "LGPL-2.1-only", 2036 + "LGPL-3.0-only", 2037 + "LicenseRef-KDE-Accepted-LGPL" 2038 ], 2039 "kuserfeedback": [ 2040 "BSD-3-Clause", ··· 2092 "LGPL-2.1-or-later" 2093 ], 2094 "kweathercore": [ 2095 + "BSD-2-Clause", 2096 "CC0-1.0", 2097 "LGPL-2.0-or-later" 2098 ], 2099 "kwidgetsaddons": [ 2100 + "BSD-2-Clause", 2101 "CC0-1.0", 2102 "GPL-2.0-or-later", 2103 "LGPL-2.0-only", ··· 2214 "LicenseRef-KDE-Accepted-LGPL" 2215 ], 2216 "libkleo": [ 2217 + "BSD-2-Clause", 2218 "BSD-3-Clause", 2219 "CC0-1.0", 2220 "GCC-exception-3.1", ··· 2555 "LicenseRef-KDE-Accepted-LGPL" 2556 ], 2557 "plasma-browser-integration": [ 2558 + "BSD-2-Clause", 2559 "CC0-1.0", 2560 + "GPL-2.0-only", 2561 "GPL-2.0-or-later", 2562 + "GPL-3.0-only", 2563 "GPL-3.0-or-later", 2564 + "LicenseRef-KDE-Accepted-GPL", 2565 "MIT" 2566 ], 2567 "plasma-desktop": [ ··· 2741 "plasma5support": [ 2742 "BSD-3-Clause", 2743 "CC0-1.0", 2744 + "GPL-2.0-only", 2745 "GPL-2.0-or-later", 2746 + "GPL-3.0-only", 2747 "LGPL-2.0-only", 2748 "LGPL-2.0-or-later", 2749 + "LGPL-2.1-or-later", 2750 + "LicenseRef-KDE-Accepted-GPL" 2751 ], 2752 "plasmatube": [ 2753 "CC-BY-SA-4.0", ··· 2755 "GPL-2.0-only", 2756 "GPL-3.0-only", 2757 "GPL-3.0-or-later", 2758 + "LGPL-2.0-or-later", 2759 "LGPL-2.1-only", 2760 "LGPL-3.0-only", 2761 "LicenseRef-KDE-Accepted-GPL", ··· 2841 "LicenseRef-Qt-Commercial", 2842 "MIT" 2843 ], 2844 + "qrca": [ 2845 + "BSD-2-Clause", 2846 + "BSD-3-Clause", 2847 + "CC0-1.0", 2848 + "GPL-3.0-or-later", 2849 + "LGPL-2.0-or-later", 2850 + "LGPL-2.1-or-later" 2851 + ], 2852 "rocs": [ 2853 "BSD-2-Clause", 2854 "CC0-1.0", ··· 2911 "GPL-2.0-or-later", 2912 "GPL-3.0-only", 2913 "LGPL-2.0-or-later", 2914 + "LGPL-2.1-only", 2915 + "LGPL-3.0-only", 2916 + "LicenseRef-KDE-Accepted-GPL", 2917 + "LicenseRef-KDE-Accepted-LGPL" 2918 ], 2919 "spectacle": [ 2920 "BSD-3-Clause", ··· 3016 "GPL-2.0-or-later", 3017 "LGPL-2.0-or-later", 3018 "LGPL-2.1-only", 3019 + "LGPL-2.1-or-later", 3020 "LGPL-3.0-only", 3021 "LicenseRef-KDE-Accepted-LGPL", 3022 "MIT"
+18
pkgs/kde/generated/projects.json
··· 899 "project_path": "documentation/hig-kde-org", 900 "repo_path": "documentation/hig-kde-org" 901 }, 902 "documentation-openraster-org": { 903 "description": "Sphinx setup for the Openraster.org (ORA specification) website", 904 "name": "documentation-openraster-org", ··· 2428 "name": "kdsoap-ws-discovery-client", 2429 "project_path": "playground/libs/kdsoap-ws-discovery-client", 2430 "repo_path": "libraries/kdsoap-ws-discovery-client" 2431 }, 2432 "keditbookmarks": { 2433 "description": "Bookmarks editor", ··· 5992 "name": "quanta", 5993 "project_path": "playground/devtools/quanta", 5994 "repo_path": "unmaintained/quanta" 5995 }, 5996 "qyoto": { 5997 "description": ".NET/Mono bindings for the Qt libraries.",
··· 899 "project_path": "documentation/hig-kde-org", 900 "repo_path": "documentation/hig-kde-org" 901 }, 902 + "documentation-kstars-docs-kde-org": { 903 + "description": "Documentation for KStars", 904 + "name": "documentation-kstars-docs-kde-org", 905 + "project_path": "documentation/kstars-docs-kde-org", 906 + "repo_path": "documentation/kstars-docs-kde-org" 907 + }, 908 "documentation-openraster-org": { 909 "description": "Sphinx setup for the Openraster.org (ORA specification) website", 910 "name": "documentation-openraster-org", ··· 2434 "name": "kdsoap-ws-discovery-client", 2435 "project_path": "playground/libs/kdsoap-ws-discovery-client", 2436 "repo_path": "libraries/kdsoap-ws-discovery-client" 2437 + }, 2438 + "kecolab": { 2439 + "description": "Measuring Energy Usage Remotely with Online Portal", 2440 + "name": "kecolab", 2441 + "project_path": "playground/sdk/kecolab", 2442 + "repo_path": "sdk/kecolab" 2443 }, 2444 "keditbookmarks": { 2445 "description": "Bookmarks editor", ··· 6004 "name": "quanta", 6005 "project_path": "playground/devtools/quanta", 6006 "repo_path": "unmaintained/quanta" 6007 + }, 6008 + "qxmpp": { 6009 + "description": "C++ XMPP client and server library", 6010 + "name": "qxmpp", 6011 + "project_path": "playground/libs/qxmpp", 6012 + "repo_path": "libraries/qxmpp" 6013 }, 6014 "qyoto": { 6015 "description": ".NET/Mono bindings for the Qt libraries.",
+752 -757
pkgs/kde/generated/sources/gear.json
··· 1 { 2 "accessibility-inspector": { 3 - "version": "24.12.3", 4 - "url": "mirror://kde/stable/release-service/24.12.3/src/accessibility-inspector-24.12.3.tar.xz", 5 - "hash": "sha256-a5ELMYtI3dnufMuUDWFm9iQMlmh8gXJwfzoyXFQz9sU=" 6 }, 7 "akonadi": { 8 - "version": "24.12.3", 9 - "url": "mirror://kde/stable/release-service/24.12.3/src/akonadi-24.12.3.tar.xz", 10 - "hash": "sha256-4eTegFDleOZdcbAnnRCuTQkGulpbAjn4jQFFYCsMF8g=" 11 }, 12 "akonadi-calendar": { 13 - "version": "24.12.3", 14 - "url": "mirror://kde/stable/release-service/24.12.3/src/akonadi-calendar-24.12.3.tar.xz", 15 - "hash": "sha256-KGWPC/hflgGRB8C05ect/xSutrI2xDYkn6vxi5T0nf4=" 16 }, 17 "akonadi-calendar-tools": { 18 - "version": "24.12.3", 19 - "url": "mirror://kde/stable/release-service/24.12.3/src/akonadi-calendar-tools-24.12.3.tar.xz", 20 - "hash": "sha256-5bNLkNakx7bjANkEqoF4Z+6n7L+uXI7saSNo0jBoVwM=" 21 }, 22 "akonadi-contacts": { 23 - "version": "24.12.3", 24 - "url": "mirror://kde/stable/release-service/24.12.3/src/akonadi-contacts-24.12.3.tar.xz", 25 - "hash": "sha256-Jy7uT4CxjX02seXXStY8nNNHe0Goq8tNrzEq6cT1vf4=" 26 }, 27 "akonadi-import-wizard": { 28 - "version": "24.12.3", 29 - "url": "mirror://kde/stable/release-service/24.12.3/src/akonadi-import-wizard-24.12.3.tar.xz", 30 - "hash": "sha256-7klYrJPDfuKd3r02/2C/EhLMt95iUzhxKN0q2jLy8yw=" 31 }, 32 "akonadi-mime": { 33 - "version": "24.12.3", 34 - "url": "mirror://kde/stable/release-service/24.12.3/src/akonadi-mime-24.12.3.tar.xz", 35 - "hash": "sha256-uN6OrsAxsrnxnRV5fzsQYQaxaAUof6TtYK5m0M7/YqE=" 36 }, 37 "akonadi-search": { 38 - "version": "24.12.3", 39 - "url": "mirror://kde/stable/release-service/24.12.3/src/akonadi-search-24.12.3.tar.xz", 40 - "hash": "sha256-gP8jDvfdN8VKDpVt7VEbdWdPx85R0K34Fsrm46qE0Jo=" 41 }, 42 "akonadiconsole": { 43 - "version": "24.12.3", 44 - "url": "mirror://kde/stable/release-service/24.12.3/src/akonadiconsole-24.12.3.tar.xz", 45 - "hash": "sha256-/XhTn0pn1R0Mqfi6m8q8smkMIrWA/wQcdMrVWa8uj3U=" 46 }, 47 "akregator": { 48 - "version": "24.12.3", 49 - "url": "mirror://kde/stable/release-service/24.12.3/src/akregator-24.12.3.tar.xz", 50 - "hash": "sha256-GwslvuLk1TjrfhydCg2oxiA29yRWRZ8JChR0T7cer0Q=" 51 }, 52 "alligator": { 53 - "version": "24.12.3", 54 - "url": "mirror://kde/stable/release-service/24.12.3/src/alligator-24.12.3.tar.xz", 55 - "hash": "sha256-azaFNhZSdPItyo0H8pjChza8Rrz3h37QFdAc+/fnVYU=" 56 }, 57 "analitza": { 58 - "version": "24.12.3", 59 - "url": "mirror://kde/stable/release-service/24.12.3/src/analitza-24.12.3.tar.xz", 60 - "hash": "sha256-jBajOOsSMiViQHeLhnqkaczGUBEtmmjzU2TCZ5uT2yQ=" 61 }, 62 "angelfish": { 63 - "version": "24.12.3", 64 - "url": "mirror://kde/stable/release-service/24.12.3/src/angelfish-24.12.3.tar.xz", 65 - "hash": "sha256-4IKrcrhLfV0ym0+oHoUlAfNGB8biRI44kN6RIBDo7S0=" 66 }, 67 "arianna": { 68 - "version": "24.12.3", 69 - "url": "mirror://kde/stable/release-service/24.12.3/src/arianna-24.12.3.tar.xz", 70 - "hash": "sha256-SU/z1L+5x7judjRLdCPEzPfaP5rb+KiZrtRuVzpe+CY=" 71 }, 72 "ark": { 73 - "version": "24.12.3", 74 - "url": "mirror://kde/stable/release-service/24.12.3/src/ark-24.12.3.tar.xz", 75 - "hash": "sha256-TrHUOHj1UWm/snpl5vDX9gk6adVtkF/f8kkThlP+Sr8=" 76 }, 77 "artikulate": { 78 - "version": "24.12.3", 79 - "url": "mirror://kde/stable/release-service/24.12.3/src/artikulate-24.12.3.tar.xz", 80 - "hash": "sha256-qmMkpOOoXqyoXhZ+ohOXb90i5Ycc9ASC/T/CY5pww5g=" 81 }, 82 "audex": { 83 - "version": "24.12.3", 84 - "url": "mirror://kde/stable/release-service/24.12.3/src/audex-24.12.3.tar.xz", 85 - "hash": "sha256-Iz/lLt915GF3V0kkLkeMMmqjouSg0wfwqwdcbLKcZWM=" 86 }, 87 "audiocd-kio": { 88 - "version": "24.12.3", 89 - "url": "mirror://kde/stable/release-service/24.12.3/src/audiocd-kio-24.12.3.tar.xz", 90 - "hash": "sha256-9hT2Hr7nKOlKZ6bO1TIL+wHgPF9t3m47vV0lCCXqSXU=" 91 }, 92 "audiotube": { 93 - "version": "24.12.3", 94 - "url": "mirror://kde/stable/release-service/24.12.3/src/audiotube-24.12.3.tar.xz", 95 - "hash": "sha256-Z+sduTnBIFTlvCK8H/+tAeAny0d1Ng7/m4ANb/8qF74=" 96 }, 97 "baloo-widgets": { 98 - "version": "24.12.3", 99 - "url": "mirror://kde/stable/release-service/24.12.3/src/baloo-widgets-24.12.3.tar.xz", 100 - "hash": "sha256-nWN1NJB5XHFRLitmIbSHtHJsHPs5Uu7p9z51qTDkz4c=" 101 }, 102 "blinken": { 103 - "version": "24.12.3", 104 - "url": "mirror://kde/stable/release-service/24.12.3/src/blinken-24.12.3.tar.xz", 105 - "hash": "sha256-eqFmkfkyinH+9DiIyojl799CuvH/aanpd6nQ7tPsRz4=" 106 }, 107 "bomber": { 108 - "version": "24.12.3", 109 - "url": "mirror://kde/stable/release-service/24.12.3/src/bomber-24.12.3.tar.xz", 110 - "hash": "sha256-0EqBMaJX2W49k1dXmQbu+XM4fIcZ+C5sWg2yiFrllA4=" 111 }, 112 "bovo": { 113 - "version": "24.12.3", 114 - "url": "mirror://kde/stable/release-service/24.12.3/src/bovo-24.12.3.tar.xz", 115 - "hash": "sha256-lbQixwDbU9B5hc5gRK0tCuo4j5Wmoui9xnnSz9WVxLs=" 116 }, 117 "calendarsupport": { 118 - "version": "24.12.3", 119 - "url": "mirror://kde/stable/release-service/24.12.3/src/calendarsupport-24.12.3.tar.xz", 120 - "hash": "sha256-0WEj6U/O2XRUqUYESYte3poU+SFDNNMWpM55m39m0Ks=" 121 }, 122 "calindori": { 123 - "version": "24.12.3", 124 - "url": "mirror://kde/stable/release-service/24.12.3/src/calindori-24.12.3.tar.xz", 125 - "hash": "sha256-5OR45Ud82An6z+k7WSqLoB91Cevhh7+97rVzQGR7VvY=" 126 }, 127 "calligra": { 128 - "version": "24.12.3", 129 - "url": "mirror://kde/stable/release-service/24.12.3/src/calligra-24.12.3.tar.xz", 130 - "hash": "sha256-F/QBVg/Ejf1oVZX6TOGHNhkDrRqtaN5LYe4GgFptqnI=" 131 }, 132 "cantor": { 133 - "version": "24.12.3", 134 - "url": "mirror://kde/stable/release-service/24.12.3/src/cantor-24.12.3.tar.xz", 135 - "hash": "sha256-KK6AooG9snf4qAf+3a2+y40/eXtrW4BOG/Nx8ypygkU=" 136 }, 137 "cervisia": { 138 - "version": "24.12.3", 139 - "url": "mirror://kde/stable/release-service/24.12.3/src/cervisia-24.12.3.tar.xz", 140 - "hash": "sha256-lZWEtKO4P6vAEmJyifUkTLcOdFgvMTPZX3t9csaJriU=" 141 }, 142 "colord-kde": { 143 - "version": "24.12.3", 144 - "url": "mirror://kde/stable/release-service/24.12.3/src/colord-kde-24.12.3.tar.xz", 145 - "hash": "sha256-URfAdRbgyk21BUR8TayPM9847MY5vZaiQEiaWxAz9lk=" 146 }, 147 "dolphin": { 148 - "version": "24.12.3", 149 - "url": "mirror://kde/stable/release-service/24.12.3/src/dolphin-24.12.3.tar.xz", 150 - "hash": "sha256-C877XG6t3bhnkk6QUtVDHFt8mKpAIsP6LKFtW2UVsPA=" 151 }, 152 "dolphin-plugins": { 153 - "version": "24.12.3", 154 - "url": "mirror://kde/stable/release-service/24.12.3/src/dolphin-plugins-24.12.3.tar.xz", 155 - "hash": "sha256-6kfW5s5badsD5ZKSmPXBHk1jCXDXakVVAinVfrBFBPA=" 156 }, 157 "dragon": { 158 - "version": "24.12.3", 159 - "url": "mirror://kde/stable/release-service/24.12.3/src/dragon-24.12.3.tar.xz", 160 - "hash": "sha256-+GVo+C2dyF2lkA9IMnJgY27XP6X/gMiQZl0hqMnBS4Q=" 161 }, 162 "elisa": { 163 - "version": "24.12.3", 164 - "url": "mirror://kde/stable/release-service/24.12.3/src/elisa-24.12.3.tar.xz", 165 - "hash": "sha256-XRmrPbQcshM6xRmPaG20noKyIo6Ao9b0JeBPJEWI/8M=" 166 }, 167 "eventviews": { 168 - "version": "24.12.3", 169 - "url": "mirror://kde/stable/release-service/24.12.3/src/eventviews-24.12.3.tar.xz", 170 - "hash": "sha256-DGcOoqZpBBJwwgka/cL0bcyZyIL7paLwN7zNp/FBw+I=" 171 }, 172 "falkon": { 173 - "version": "24.12.3", 174 - "url": "mirror://kde/stable/release-service/24.12.3/src/falkon-24.12.3.tar.xz", 175 - "hash": "sha256-jZ2Wegr3GQEYirT8UBE3pOt2Av/lIioyQKOP+pJDuVE=" 176 }, 177 "ffmpegthumbs": { 178 - "version": "24.12.3", 179 - "url": "mirror://kde/stable/release-service/24.12.3/src/ffmpegthumbs-24.12.3.tar.xz", 180 - "hash": "sha256-LSLyNC84y0wJwXppH/68+aCbICWlAfReaIuVIxnBDek=" 181 }, 182 "filelight": { 183 - "version": "24.12.3", 184 - "url": "mirror://kde/stable/release-service/24.12.3/src/filelight-24.12.3.tar.xz", 185 - "hash": "sha256-7DpDRbuYz8C75fH6+cAh81UhVe4z8ugmI65iN0axh+k=" 186 }, 187 "francis": { 188 - "version": "24.12.3", 189 - "url": "mirror://kde/stable/release-service/24.12.3/src/francis-24.12.3.tar.xz", 190 - "hash": "sha256-nMVYR3Bp0Xx8gw0eDvE+to9Z6SMV8vUHxrpBz0KTmaU=" 191 }, 192 "ghostwriter": { 193 - "version": "24.12.3", 194 - "url": "mirror://kde/stable/release-service/24.12.3/src/ghostwriter-24.12.3.tar.xz", 195 - "hash": "sha256-LshXgvCJnX376TM+M0cLvfxLHFUHAzAbj6NeR5yIPaA=" 196 }, 197 "granatier": { 198 - "version": "24.12.3", 199 - "url": "mirror://kde/stable/release-service/24.12.3/src/granatier-24.12.3.tar.xz", 200 - "hash": "sha256-zPMHrxhFYZZ/YNiZkG2Yx0D7/TAaNP8x3OShgA0/sPY=" 201 }, 202 "grantlee-editor": { 203 - "version": "24.12.3", 204 - "url": "mirror://kde/stable/release-service/24.12.3/src/grantlee-editor-24.12.3.tar.xz", 205 - "hash": "sha256-kuTb41YXXfs/MWnJhybmIAmIbPgQRCRjvawpqlUs+C8=" 206 }, 207 "grantleetheme": { 208 - "version": "24.12.3", 209 - "url": "mirror://kde/stable/release-service/24.12.3/src/grantleetheme-24.12.3.tar.xz", 210 - "hash": "sha256-1lAkIcRyguq0jJsXAjzpPaA0ZgtthKD4r15CxdRz4TY=" 211 }, 212 "gwenview": { 213 - "version": "24.12.3", 214 - "url": "mirror://kde/stable/release-service/24.12.3/src/gwenview-24.12.3.tar.xz", 215 - "hash": "sha256-y0WQuBEOiGqkq7pV0emEQCOubOv2Qn+hKqNCzBMRBGY=" 216 }, 217 "incidenceeditor": { 218 - "version": "24.12.3", 219 - "url": "mirror://kde/stable/release-service/24.12.3/src/incidenceeditor-24.12.3.tar.xz", 220 - "hash": "sha256-kMhzLUG/8nAp/mpYbTEGJdtJPspJWpc+FmGdKliPEH8=" 221 }, 222 "isoimagewriter": { 223 - "version": "24.12.3", 224 - "url": "mirror://kde/stable/release-service/24.12.3/src/isoimagewriter-24.12.3.tar.xz", 225 - "hash": "sha256-/+SfJXdOhdTrDVsHTO1tr1KSMUDXkAiG4iGQUNlR4qI=" 226 }, 227 "itinerary": { 228 - "version": "24.12.3", 229 - "url": "mirror://kde/stable/release-service/24.12.3/src/itinerary-24.12.3.tar.xz", 230 - "hash": "sha256-JBWqe2pdD7qR/Vyz5/28rzyNHKNHwha8ZMzSig64uU4=" 231 }, 232 "juk": { 233 - "version": "24.12.3", 234 - "url": "mirror://kde/stable/release-service/24.12.3/src/juk-24.12.3.tar.xz", 235 - "hash": "sha256-P78WYjR3abJzu+77r+pL8XDbF7/C6deSAwpGR+/7QXs=" 236 }, 237 "k3b": { 238 - "version": "24.12.3", 239 - "url": "mirror://kde/stable/release-service/24.12.3/src/k3b-24.12.3.tar.xz", 240 - "hash": "sha256-NDn/VGQmpC/LGQDkjQveVuCwPYU5Bg1YK7csA1lVqH4=" 241 }, 242 "kaccounts-integration": { 243 - "version": "24.12.3", 244 - "url": "mirror://kde/stable/release-service/24.12.3/src/kaccounts-integration-24.12.3.tar.xz", 245 - "hash": "sha256-1oW5ezK0kmyBsrA1xNIeTUdJV/QsC+/2c9ulmtTz6k8=" 246 }, 247 "kaccounts-providers": { 248 - "version": "24.12.3", 249 - "url": "mirror://kde/stable/release-service/24.12.3/src/kaccounts-providers-24.12.3.tar.xz", 250 - "hash": "sha256-JN90vun1PhmD2KVonXOCK/NgNHbsapQlZLeIaveK3Mk=" 251 }, 252 "kaddressbook": { 253 - "version": "24.12.3", 254 - "url": "mirror://kde/stable/release-service/24.12.3/src/kaddressbook-24.12.3.tar.xz", 255 - "hash": "sha256-+g5NdfLnv5wuNzVHAyq0O4qbawlGnclzWWZHa4dYhJA=" 256 }, 257 "kajongg": { 258 - "version": "24.12.3", 259 - "url": "mirror://kde/stable/release-service/24.12.3/src/kajongg-24.12.3.tar.xz", 260 - "hash": "sha256-pFjAGueybgpeeyLwSs4WOSTvEixtzJ06BJWUPWn9dVM=" 261 }, 262 "kalarm": { 263 - "version": "24.12.3", 264 - "url": "mirror://kde/stable/release-service/24.12.3/src/kalarm-24.12.3.tar.xz", 265 - "hash": "sha256-ClrGUalfYyWVxmLVcGdmQ5lac6VfqHgQuo7zklWcvpE=" 266 }, 267 "kalgebra": { 268 - "version": "24.12.3", 269 - "url": "mirror://kde/stable/release-service/24.12.3/src/kalgebra-24.12.3.tar.xz", 270 - "hash": "sha256-/6u4NiSxYUzxYR1O4UCdK8te7w8HFfXNajPCHeZfAS4=" 271 }, 272 "kalk": { 273 - "version": "24.12.3", 274 - "url": "mirror://kde/stable/release-service/24.12.3/src/kalk-24.12.3.tar.xz", 275 - "hash": "sha256-MCehvXZ3tXH4ekALFEEwpSqPsebaRDNT5RSdX5Ncn3c=" 276 }, 277 "kalm": { 278 - "version": "24.12.3", 279 - "url": "mirror://kde/stable/release-service/24.12.3/src/kalm-24.12.3.tar.xz", 280 - "hash": "sha256-w2VrfC69QomidD1xTLAMK9XzEylG20SaXqAKWlKPIes=" 281 }, 282 "kalzium": { 283 - "version": "24.12.3", 284 - "url": "mirror://kde/stable/release-service/24.12.3/src/kalzium-24.12.3.tar.xz", 285 - "hash": "sha256-yrqbTbWku3++CpqWd9P6Xt8P6xUP/8e18Ipvi4Gwq70=" 286 }, 287 "kamera": { 288 - "version": "24.12.3", 289 - "url": "mirror://kde/stable/release-service/24.12.3/src/kamera-24.12.3.tar.xz", 290 - "hash": "sha256-oMOn3RwleYAmviBaOduHvWOuACHJPDyK/om6KyEtbcs=" 291 }, 292 "kamoso": { 293 - "version": "24.12.3", 294 - "url": "mirror://kde/stable/release-service/24.12.3/src/kamoso-24.12.3.tar.xz", 295 - "hash": "sha256-C6rVPMTr3faT1u1zyT4MflPldZbD4n7zCUDcFy6ICa8=" 296 }, 297 "kanagram": { 298 - "version": "24.12.3", 299 - "url": "mirror://kde/stable/release-service/24.12.3/src/kanagram-24.12.3.tar.xz", 300 - "hash": "sha256-mjHUnGhBJdUArJmG7UXqrvT4VD/bKOSpECKlAHoHiWg=" 301 }, 302 "kapman": { 303 - "version": "24.12.3", 304 - "url": "mirror://kde/stable/release-service/24.12.3/src/kapman-24.12.3.tar.xz", 305 - "hash": "sha256-m7JGohFL5PKOW7cZGyH5670rBAEEsK1KFj763MuL8hE=" 306 }, 307 "kapptemplate": { 308 - "version": "24.12.3", 309 - "url": "mirror://kde/stable/release-service/24.12.3/src/kapptemplate-24.12.3.tar.xz", 310 - "hash": "sha256-/2XpGS1FAAmltzwOkyRzKckdHEC0yn+tkFGT/zgCUA0=" 311 }, 312 "kasts": { 313 - "version": "24.12.3", 314 - "url": "mirror://kde/stable/release-service/24.12.3/src/kasts-24.12.3.tar.xz", 315 - "hash": "sha256-RTUc410hiOcyVEzBS0jTWJ3+XlIGiEUC6WlfW97jdXA=" 316 }, 317 "kate": { 318 - "version": "24.12.3", 319 - "url": "mirror://kde/stable/release-service/24.12.3/src/kate-24.12.3.tar.xz", 320 - "hash": "sha256-yJUv6HMEEbMBNEvMacTvzBHhRHwBuZoJFrY9WeXWNX8=" 321 }, 322 "katomic": { 323 - "version": "24.12.3", 324 - "url": "mirror://kde/stable/release-service/24.12.3/src/katomic-24.12.3.tar.xz", 325 - "hash": "sha256-maIMyVdqMTJd2s4kzkeLUrcgQp8vCCzy9TwMCc7U5JY=" 326 }, 327 "kbackup": { 328 - "version": "24.12.3", 329 - "url": "mirror://kde/stable/release-service/24.12.3/src/kbackup-24.12.3.tar.xz", 330 - "hash": "sha256-0Jaa7WyAVJffcHJ1R3n47RHaXQ+XL8CsHYC6GHVIg20=" 331 }, 332 "kblackbox": { 333 - "version": "24.12.3", 334 - "url": "mirror://kde/stable/release-service/24.12.3/src/kblackbox-24.12.3.tar.xz", 335 - "hash": "sha256-VFYkL0xjr4osZz4yvhX++lTjtpGXWpr0cbFDm53RT+8=" 336 }, 337 "kblocks": { 338 - "version": "24.12.3", 339 - "url": "mirror://kde/stable/release-service/24.12.3/src/kblocks-24.12.3.tar.xz", 340 - "hash": "sha256-2MtGNegSv5qV6Ir4ihw8vJZH8I1m5NwByOIvhDnpV4c=" 341 }, 342 "kbounce": { 343 - "version": "24.12.3", 344 - "url": "mirror://kde/stable/release-service/24.12.3/src/kbounce-24.12.3.tar.xz", 345 - "hash": "sha256-fbLuxG3okXcavHusLQ4qRBmthxp1WRd7dfGZ2JfF3lI=" 346 }, 347 "kbreakout": { 348 - "version": "24.12.3", 349 - "url": "mirror://kde/stable/release-service/24.12.3/src/kbreakout-24.12.3.tar.xz", 350 - "hash": "sha256-HjlYEv+HL1eXsxjt8ZXhcrdY/yrShsfLnQejfhfg/ks=" 351 }, 352 "kbruch": { 353 - "version": "24.12.3", 354 - "url": "mirror://kde/stable/release-service/24.12.3/src/kbruch-24.12.3.tar.xz", 355 - "hash": "sha256-GEyVxFLF5hRqVMjJGGVWA4ciKsIZsw3A4QPdxwVylTw=" 356 }, 357 "kcachegrind": { 358 - "version": "24.12.3", 359 - "url": "mirror://kde/stable/release-service/24.12.3/src/kcachegrind-24.12.3.tar.xz", 360 - "hash": "sha256-9dhkMdrzedaBu/6Pl/Z0PhOAnbN1ODHFgxHICbMZask=" 361 }, 362 "kcalc": { 363 - "version": "24.12.3", 364 - "url": "mirror://kde/stable/release-service/24.12.3/src/kcalc-24.12.3.tar.xz", 365 - "hash": "sha256-u6O6ZlF37purKlX7MuBK5gQfXq8wXdaQFkm5uO81l1E=" 366 }, 367 "kcalutils": { 368 - "version": "24.12.3", 369 - "url": "mirror://kde/stable/release-service/24.12.3/src/kcalutils-24.12.3.tar.xz", 370 - "hash": "sha256-OJBWbzBH/j5BFpGt6WeFlXjORWi/6P+xUQ8E7fxobjI=" 371 }, 372 "kcharselect": { 373 - "version": "24.12.3", 374 - "url": "mirror://kde/stable/release-service/24.12.3/src/kcharselect-24.12.3.tar.xz", 375 - "hash": "sha256-BPqP1qDiuS4J6cTsJvClu7/ypZdlOfOBp7WTDCHMG2Y=" 376 }, 377 "kclock": { 378 - "version": "24.12.3", 379 - "url": "mirror://kde/stable/release-service/24.12.3/src/kclock-24.12.3.tar.xz", 380 - "hash": "sha256-Q9Mm3/0dDtm5760+dJlpDHRdSGeD4FUdtsw8CVLfFas=" 381 }, 382 "kcolorchooser": { 383 - "version": "24.12.3", 384 - "url": "mirror://kde/stable/release-service/24.12.3/src/kcolorchooser-24.12.3.tar.xz", 385 - "hash": "sha256-JqATwAFeJkwMKtbBOmY8+Yxom2wFY9Vr2ygnkNsEwik=" 386 }, 387 "kcron": { 388 - "version": "24.12.3", 389 - "url": "mirror://kde/stable/release-service/24.12.3/src/kcron-24.12.3.tar.xz", 390 - "hash": "sha256-mq3RF89m5qkMQe/M4S6Kk8UTfTYcVRWe9ZmciP+n3sw=" 391 }, 392 "kde-dev-scripts": { 393 - "version": "24.12.3", 394 - "url": "mirror://kde/stable/release-service/24.12.3/src/kde-dev-scripts-24.12.3.tar.xz", 395 - "hash": "sha256-mUL9hpXaEzIkMRiqCbTBJRPFIdpJT+fVVqOK96P/gYU=" 396 }, 397 "kde-dev-utils": { 398 - "version": "24.12.3", 399 - "url": "mirror://kde/stable/release-service/24.12.3/src/kde-dev-utils-24.12.3.tar.xz", 400 - "hash": "sha256-3rSi2ngf+eSPzmtviPiCIJk2joJhyA7WRbQRpFHyv6Y=" 401 }, 402 "kde-inotify-survey": { 403 - "version": "24.12.3", 404 - "url": "mirror://kde/stable/release-service/24.12.3/src/kde-inotify-survey-24.12.3.tar.xz", 405 - "hash": "sha256-a1cqGFFKIohRI4DM9eodu61ehdSl5NxwA9MrhDN9Rqg=" 406 }, 407 "kdebugsettings": { 408 - "version": "24.12.3", 409 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdebugsettings-24.12.3.tar.xz", 410 - "hash": "sha256-PFZCssm22VM0701GK0uCHdDb0PW2SbvXUbvA5c4XeNE=" 411 }, 412 "kdeconnect-kde": { 413 - "version": "24.12.3", 414 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdeconnect-kde-24.12.3.tar.xz", 415 - "hash": "sha256-SNDrkIU5oh824XhMLngqTcockEAv4kpjHtKv9Drrqxc=" 416 }, 417 "kdeedu-data": { 418 - "version": "24.12.3", 419 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdeedu-data-24.12.3.tar.xz", 420 - "hash": "sha256-KWHVj32A44ur5yS7ciU2nRYZxU0os70F2NzTM76dZm8=" 421 }, 422 "kdegraphics-mobipocket": { 423 - "version": "24.12.3", 424 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdegraphics-mobipocket-24.12.3.tar.xz", 425 - "hash": "sha256-OI5H+GCVcpEiiG0uA+tKf2NtmHrbiyvzCawrffAz7a0=" 426 }, 427 "kdegraphics-thumbnailers": { 428 - "version": "24.12.3", 429 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdegraphics-thumbnailers-24.12.3.tar.xz", 430 - "hash": "sha256-9RX2Skn5y4MlzOmGL+QEzt6fFoEws2GfTR7LS+NzIsc=" 431 }, 432 "kdenetwork-filesharing": { 433 - "version": "24.12.3", 434 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdenetwork-filesharing-24.12.3.tar.xz", 435 - "hash": "sha256-m8flutuXUzqOTadkFjGJac9+2oPAiAP+YMxJAfy2Auw=" 436 }, 437 "kdenlive": { 438 - "version": "24.12.3", 439 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdenlive-24.12.3.tar.xz", 440 - "hash": "sha256-RJx+U9lQH0NLlV8ijcsp88tCZCxBsFPdjkzTC4hhhD4=" 441 }, 442 "kdepim-addons": { 443 - "version": "24.12.3", 444 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdepim-addons-24.12.3.tar.xz", 445 - "hash": "sha256-CrSC5XJdAscCumWjpBx+53Sx5iHO24RzTYqPvqQfl9k=" 446 }, 447 "kdepim-runtime": { 448 - "version": "24.12.3", 449 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdepim-runtime-24.12.3.tar.xz", 450 - "hash": "sha256-ogdTe8XwUFe7b9sKRF/SgdaCk3DJh+UKpttn+1HkiSw=" 451 }, 452 "kdesdk-kio": { 453 - "version": "24.12.3", 454 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdesdk-kio-24.12.3.tar.xz", 455 - "hash": "sha256-Kv6mDEp6JEBW+uImmLwyCCBWTfg52wJ1oIHA+uBq5vQ=" 456 }, 457 "kdesdk-thumbnailers": { 458 - "version": "24.12.3", 459 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdesdk-thumbnailers-24.12.3.tar.xz", 460 - "hash": "sha256-SbkglWDzQeDKWTjUAzto/4m245jVJTPwPqkmQjr6d3U=" 461 }, 462 "kdev-php": { 463 - "version": "24.12.3", 464 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdev-php-24.12.3.tar.xz", 465 - "hash": "sha256-d5dFBHMrH0fOh+2umxcKvUTcleq7PT95F6flUZYab4g=" 466 }, 467 "kdev-python": { 468 - "version": "24.12.3", 469 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdev-python-24.12.3.tar.xz", 470 - "hash": "sha256-beyZMd/bpaZQ61jLXGrNza54cDXm8i6+yAC54MucRuc=" 471 }, 472 "kdevelop": { 473 - "version": "24.12.3", 474 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdevelop-24.12.3.tar.xz", 475 - "hash": "sha256-zSt3a2V+x+yi9ytnBK9k+LQ+ti+zkneSOAIMmHEWqrI=" 476 }, 477 "kdf": { 478 - "version": "24.12.3", 479 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdf-24.12.3.tar.xz", 480 - "hash": "sha256-209NfioHZbpvvd3BduqAHrsbllPzEp7KoSI+8O8S+6k=" 481 }, 482 "kdialog": { 483 - "version": "24.12.3", 484 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdialog-24.12.3.tar.xz", 485 - "hash": "sha256-QN5JGmg/u1lrjy+JJNvL6umnoTLeqp0MMCF/0UIRBEU=" 486 }, 487 "kdiamond": { 488 - "version": "24.12.3", 489 - "url": "mirror://kde/stable/release-service/24.12.3/src/kdiamond-24.12.3.tar.xz", 490 - "hash": "sha256-sQ6BEKHRIsOH/2eAMPsfXlJ/7YtgMXBmPyO9kNWVXtI=" 491 }, 492 "keditbookmarks": { 493 - "version": "24.12.3", 494 - "url": "mirror://kde/stable/release-service/24.12.3/src/keditbookmarks-24.12.3.tar.xz", 495 - "hash": "sha256-HQiGNOkce5AYqtwIqGvrz2fhkqUUqTi2qByhp+TBy4I=" 496 }, 497 "keysmith": { 498 - "version": "24.12.3", 499 - "url": "mirror://kde/stable/release-service/24.12.3/src/keysmith-24.12.3.tar.xz", 500 - "hash": "sha256-JRbllhHm8iCf+MrjTtrL654dzLFsO1r+ppySZMCWE8U=" 501 }, 502 "kfind": { 503 - "version": "24.12.3", 504 - "url": "mirror://kde/stable/release-service/24.12.3/src/kfind-24.12.3.tar.xz", 505 - "hash": "sha256-7VScB9HpHfr1NbfbwoqHYb/avut7gCuUl6LhPCgrBCs=" 506 }, 507 "kfourinline": { 508 - "version": "24.12.3", 509 - "url": "mirror://kde/stable/release-service/24.12.3/src/kfourinline-24.12.3.tar.xz", 510 - "hash": "sha256-U69V3/CYJBacteeU8izf3fDSF6LvRoTQhZ8JdoYptS8=" 511 }, 512 "kgeography": { 513 - "version": "24.12.3", 514 - "url": "mirror://kde/stable/release-service/24.12.3/src/kgeography-24.12.3.tar.xz", 515 - "hash": "sha256-2nNa0j3ogMwP+uUHlXrk7Dc19edjrSaU+LiM20POhzs=" 516 }, 517 "kget": { 518 - "version": "24.12.3", 519 - "url": "mirror://kde/stable/release-service/24.12.3/src/kget-24.12.3.tar.xz", 520 - "hash": "sha256-ALdEmWSbmWpoOxs6Q0zp9FcE2tNHDPhgAyYX9KRz+fg=" 521 }, 522 "kgoldrunner": { 523 - "version": "24.12.3", 524 - "url": "mirror://kde/stable/release-service/24.12.3/src/kgoldrunner-24.12.3.tar.xz", 525 - "hash": "sha256-SVbLAo7zgfu+V+6IuA70rVqfAAN/bw6SARjwrtJA2XI=" 526 }, 527 "kgpg": { 528 - "version": "24.12.3", 529 - "url": "mirror://kde/stable/release-service/24.12.3/src/kgpg-24.12.3.tar.xz", 530 - "hash": "sha256-a8At/SvkQtSa/w+BcD/HrdUSLQVoCoULgOYxe75AR4E=" 531 }, 532 "kgraphviewer": { 533 - "version": "24.12.3", 534 - "url": "mirror://kde/stable/release-service/24.12.3/src/kgraphviewer-24.12.3.tar.xz", 535 - "hash": "sha256-IfmDMBkCgX9cnHgFqrN7Ns50oOBeNrA1bQc5MAgGoPY=" 536 }, 537 "khangman": { 538 - "version": "24.12.3", 539 - "url": "mirror://kde/stable/release-service/24.12.3/src/khangman-24.12.3.tar.xz", 540 - "hash": "sha256-gPvaCp8R5yWgDtLoh0UL17BgS8uK84/ON8RHLc+6OFc=" 541 }, 542 "khealthcertificate": { 543 - "version": "24.12.3", 544 - "url": "mirror://kde/stable/release-service/24.12.3/src/khealthcertificate-24.12.3.tar.xz", 545 - "hash": "sha256-hpQxyrXXjB5ISYP5LSR6KJzHcPKqzQ2S8nKiCSIExTE=" 546 }, 547 "khelpcenter": { 548 - "version": "24.12.3", 549 - "url": "mirror://kde/stable/release-service/24.12.3/src/khelpcenter-24.12.3.tar.xz", 550 - "hash": "sha256-/c4fVHdkIcneSRbZENG9eCL+m+8nJ/3rq27QpX4fuG0=" 551 }, 552 "kidentitymanagement": { 553 - "version": "24.12.3", 554 - "url": "mirror://kde/stable/release-service/24.12.3/src/kidentitymanagement-24.12.3.tar.xz", 555 - "hash": "sha256-UBvLMhsfQbuhTRQITDonCPSoRmatYuqymddzC9GBQH8=" 556 }, 557 "kig": { 558 - "version": "24.12.3", 559 - "url": "mirror://kde/stable/release-service/24.12.3/src/kig-24.12.3.tar.xz", 560 - "hash": "sha256-8Q0FuxdZIkJn4bualgF726BQFV/gkBgRy88jgMqUk70=" 561 }, 562 "kigo": { 563 - "version": "24.12.3", 564 - "url": "mirror://kde/stable/release-service/24.12.3/src/kigo-24.12.3.tar.xz", 565 - "hash": "sha256-EfXpF2uu9shORiZiLIJpsd07gKsXaoPiDCwOzjfVk1s=" 566 }, 567 "killbots": { 568 - "version": "24.12.3", 569 - "url": "mirror://kde/stable/release-service/24.12.3/src/killbots-24.12.3.tar.xz", 570 - "hash": "sha256-1K0zuOIRplOGu8qyrHiqM03zeIo5GjQBEX3QVyiCBrU=" 571 }, 572 "kimagemapeditor": { 573 - "version": "24.12.3", 574 - "url": "mirror://kde/stable/release-service/24.12.3/src/kimagemapeditor-24.12.3.tar.xz", 575 - "hash": "sha256-UKAVVVkpq6tW0X/PcK3V7PRdBuSvhv7EfgFP+KYg7rY=" 576 }, 577 "kimap": { 578 - "version": "24.12.3", 579 - "url": "mirror://kde/stable/release-service/24.12.3/src/kimap-24.12.3.tar.xz", 580 - "hash": "sha256-dRoO2oWqfghNl+f4Pq2gLJD81MI/PplSO5+xpLrebz8=" 581 }, 582 "kio-admin": { 583 - "version": "24.12.3", 584 - "url": "mirror://kde/stable/release-service/24.12.3/src/kio-admin-24.12.3.tar.xz", 585 - "hash": "sha256-crvtMfT/+tlCApl5buTIoHLdZu4wx5B/fKLMBTlaSBE=" 586 }, 587 "kio-extras": { 588 - "version": "24.12.3", 589 - "url": "mirror://kde/stable/release-service/24.12.3/src/kio-extras-24.12.3.tar.xz", 590 - "hash": "sha256-xDdP426H57DrdFobuo9LBm9YuEE5+c17Qsq2cRv7bi8=" 591 }, 592 "kio-gdrive": { 593 - "version": "24.12.3", 594 - "url": "mirror://kde/stable/release-service/24.12.3/src/kio-gdrive-24.12.3.tar.xz", 595 - "hash": "sha256-dIEWx0a/TqohFKyP4dxMhbKF/wr44paCBqTZf7zrUSY=" 596 }, 597 "kio-zeroconf": { 598 - "version": "24.12.3", 599 - "url": "mirror://kde/stable/release-service/24.12.3/src/kio-zeroconf-24.12.3.tar.xz", 600 - "hash": "sha256-jcaOs0kwD7z7REYkATFefd5/oJjviO8aT8KdV+6Tf+M=" 601 }, 602 "kirigami-gallery": { 603 - "version": "24.12.3", 604 - "url": "mirror://kde/stable/release-service/24.12.3/src/kirigami-gallery-24.12.3.tar.xz", 605 - "hash": "sha256-ONcGpAzNSf5/5WlUAq5VsNylUpFdVBhnULAX9j3B3OQ=" 606 }, 607 "kiriki": { 608 - "version": "24.12.3", 609 - "url": "mirror://kde/stable/release-service/24.12.3/src/kiriki-24.12.3.tar.xz", 610 - "hash": "sha256-BPn5MUv7p+ZoaVKOqHjuynGLdHsDku4vcyzIg05Qf2Q=" 611 }, 612 "kiten": { 613 - "version": "24.12.3", 614 - "url": "mirror://kde/stable/release-service/24.12.3/src/kiten-24.12.3.tar.xz", 615 - "hash": "sha256-IU0krfsS7zmw4s+gr6WhLT10+OyOvsPn/aahAHyZ1yo=" 616 }, 617 "kitinerary": { 618 - "version": "24.12.3", 619 - "url": "mirror://kde/stable/release-service/24.12.3/src/kitinerary-24.12.3.tar.xz", 620 - "hash": "sha256-2olZNPJ/mbp7RjpN+PNl+0sS8VRYwmbpEME+u47wB4Q=" 621 }, 622 "kjournald": { 623 - "version": "24.12.3", 624 - "url": "mirror://kde/stable/release-service/24.12.3/src/kjournald-24.12.3.tar.xz", 625 - "hash": "sha256-NmIp1qocfnaXXncLAfC2LZswWUQtYn4chxtAPmPsUT4=" 626 }, 627 "kjumpingcube": { 628 - "version": "24.12.3", 629 - "url": "mirror://kde/stable/release-service/24.12.3/src/kjumpingcube-24.12.3.tar.xz", 630 - "hash": "sha256-QkgVhmkOyhinYl88UfGnBthYfnUocmO8S5C8q/L6XwM=" 631 }, 632 "kldap": { 633 - "version": "24.12.3", 634 - "url": "mirror://kde/stable/release-service/24.12.3/src/kldap-24.12.3.tar.xz", 635 - "hash": "sha256-dk1NvEgH3/acZbEfN5EV9cnUxAzZxkoK5/I6xe2ieCg=" 636 }, 637 "kleopatra": { 638 - "version": "24.12.3", 639 - "url": "mirror://kde/stable/release-service/24.12.3/src/kleopatra-24.12.3.tar.xz", 640 - "hash": "sha256-Nm/MfuRa+pbsq1ZHZp2wpQCOYJz3wX9mQUatOqhH2EU=" 641 }, 642 "klettres": { 643 - "version": "24.12.3", 644 - "url": "mirror://kde/stable/release-service/24.12.3/src/klettres-24.12.3.tar.xz", 645 - "hash": "sha256-muNsytn95mx8YRE9kuuPVGEX4bJZ7hjfuT2u690m9rQ=" 646 }, 647 "klickety": { 648 - "version": "24.12.3", 649 - "url": "mirror://kde/stable/release-service/24.12.3/src/klickety-24.12.3.tar.xz", 650 - "hash": "sha256-6wLfL8kDDemYSdJM+hJdWyY+RbrL68gZuE0MbnP0hCY=" 651 }, 652 "klines": { 653 - "version": "24.12.3", 654 - "url": "mirror://kde/stable/release-service/24.12.3/src/klines-24.12.3.tar.xz", 655 - "hash": "sha256-Ptc1lf/YdFe8/5CGOXkGOTkwfz8SyE63ZDg+v9QOi+g=" 656 }, 657 "kmag": { 658 - "version": "24.12.3", 659 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmag-24.12.3.tar.xz", 660 - "hash": "sha256-f+iJvvi0ypxj+P7b+RKV1UNQf8OBKTRjsal1GgQKTBE=" 661 }, 662 "kmahjongg": { 663 - "version": "24.12.3", 664 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmahjongg-24.12.3.tar.xz", 665 - "hash": "sha256-ouZwDfvt1jhp6RU9S+3OdZkbxeiaKHUfZZWpdV4hWTs=" 666 }, 667 "kmail": { 668 - "version": "24.12.3", 669 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmail-24.12.3.tar.xz", 670 - "hash": "sha256-IMqqT6vP4tLHOgOR+U28kbJlcHqzpvdd7xpzANl4cNc=" 671 }, 672 "kmail-account-wizard": { 673 - "version": "24.12.3", 674 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmail-account-wizard-24.12.3.tar.xz", 675 - "hash": "sha256-vQfit7whQi5cI1pOYZLEylycLOVmgDue2ySkmyYakww=" 676 }, 677 "kmailtransport": { 678 - "version": "24.12.3", 679 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmailtransport-24.12.3.tar.xz", 680 - "hash": "sha256-0cxPg6QsrmGMRNIW39LLkviDW++8krG0HIoH8VUX8Eo=" 681 }, 682 "kmbox": { 683 - "version": "24.12.3", 684 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmbox-24.12.3.tar.xz", 685 - "hash": "sha256-/gykQQlKcdkWnkv2k2KvHe6dwuZ+CK2jJRxr0l3LlyA=" 686 }, 687 "kmime": { 688 - "version": "24.12.3", 689 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmime-24.12.3.tar.xz", 690 - "hash": "sha256-98s2xA2U/Up/mWIjwyPvgcQ6ueVXPYsa9azQ+ZfhIcw=" 691 }, 692 "kmines": { 693 - "version": "24.12.3", 694 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmines-24.12.3.tar.xz", 695 - "hash": "sha256-U3kTzCz+oWlP3RqvCHK7pxgqqPk0EkXeIKRFXgrPQZ0=" 696 }, 697 "kmix": { 698 - "version": "24.12.3", 699 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmix-24.12.3.tar.xz", 700 - "hash": "sha256-6DS7ZTI0JVjUrP57HYkpQkFWXHrdyrnjjBSa0CVXDtg=" 701 }, 702 "kmousetool": { 703 - "version": "24.12.3", 704 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmousetool-24.12.3.tar.xz", 705 - "hash": "sha256-krU8UhZZFnYW6tnj/FE6+svfF9QcZXfenPutN+018io=" 706 }, 707 "kmouth": { 708 - "version": "24.12.3", 709 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmouth-24.12.3.tar.xz", 710 - "hash": "sha256-cDUfspsYMYitOOpk6tp5MXu67xr6wS5dAMHJWuZ0oro=" 711 }, 712 "kmplot": { 713 - "version": "24.12.3", 714 - "url": "mirror://kde/stable/release-service/24.12.3/src/kmplot-24.12.3.tar.xz", 715 - "hash": "sha256-64lgFAUmiXkCsS76hxL5H2T2PR9uF9X/KmcdnXJc1CE=" 716 }, 717 "knavalbattle": { 718 - "version": "24.12.3", 719 - "url": "mirror://kde/stable/release-service/24.12.3/src/knavalbattle-24.12.3.tar.xz", 720 - "hash": "sha256-d7yTHB+rUt6WCIGVo+QsXOg1GajqMo+rDyqJ3Yzyvqg=" 721 }, 722 "knetwalk": { 723 - "version": "24.12.3", 724 - "url": "mirror://kde/stable/release-service/24.12.3/src/knetwalk-24.12.3.tar.xz", 725 - "hash": "sha256-j2NFrZBj2GPa5eUuIH+5qnz30xM0ecn3yh/+0XOPo7Y=" 726 }, 727 "knights": { 728 - "version": "24.12.3", 729 - "url": "mirror://kde/stable/release-service/24.12.3/src/knights-24.12.3.tar.xz", 730 - "hash": "sha256-ueey2SRn3LHKaLO/ho7VpKW1dknUzjyFZVS4sytUKXk=" 731 }, 732 "koko": { 733 - "version": "24.12.3", 734 - "url": "mirror://kde/stable/release-service/24.12.3/src/koko-24.12.3.tar.xz", 735 - "hash": "sha256-KeOafdLvFj5awi5Jgw9m4pNnBC8S5yRxgyf79EmtfCc=" 736 }, 737 "kolf": { 738 - "version": "24.12.3", 739 - "url": "mirror://kde/stable/release-service/24.12.3/src/kolf-24.12.3.tar.xz", 740 - "hash": "sha256-5L3a8Zj3AMc+Lrvkdcisv71JX7uMsvL3ZSY+DlpWJW8=" 741 }, 742 "kollision": { 743 - "version": "24.12.3", 744 - "url": "mirror://kde/stable/release-service/24.12.3/src/kollision-24.12.3.tar.xz", 745 - "hash": "sha256-CnnqUQKepMVng5C/l1RUUS2zS7+OtH1Ww0CmDZDCdcY=" 746 }, 747 "kolourpaint": { 748 - "version": "24.12.3", 749 - "url": "mirror://kde/stable/release-service/24.12.3/src/kolourpaint-24.12.3.tar.xz", 750 - "hash": "sha256-0Ql9iN+ffIEyW8vMpqLnQNPsh3vJ4Qeq++tsaQU/cME=" 751 }, 752 "kompare": { 753 - "version": "24.12.3", 754 - "url": "mirror://kde/stable/release-service/24.12.3/src/kompare-24.12.3.tar.xz", 755 - "hash": "sha256-JjNY25DGBpuUIrVldpsg2nC8eYk99c7qk/C3ikXa4C4=" 756 }, 757 "kongress": { 758 - "version": "24.12.3", 759 - "url": "mirror://kde/stable/release-service/24.12.3/src/kongress-24.12.3.tar.xz", 760 - "hash": "sha256-o+lfFsVXVrZEc1KTaFY8SsCV6qnkf1SeYt80HMpWUPg=" 761 }, 762 "konqueror": { 763 - "version": "24.12.3", 764 - "url": "mirror://kde/stable/release-service/24.12.3/src/konqueror-24.12.3.tar.xz", 765 - "hash": "sha256-LtKrrtzvj5j68iTCh1kz+MFNmdWmymM93s/MdVZ9brE=" 766 }, 767 "konquest": { 768 - "version": "24.12.3", 769 - "url": "mirror://kde/stable/release-service/24.12.3/src/konquest-24.12.3.tar.xz", 770 - "hash": "sha256-A8QIXa9pVK0e8LDgPczPCTF0IXQPqB29viKrUJA7uzQ=" 771 }, 772 "konsole": { 773 - "version": "24.12.3", 774 - "url": "mirror://kde/stable/release-service/24.12.3/src/konsole-24.12.3.tar.xz", 775 - "hash": "sha256-/nwl4Nv5PC0qNpiPR5zTIC2MjFhlY5XOE+JIxZHBAkE=" 776 }, 777 "kontact": { 778 - "version": "24.12.3", 779 - "url": "mirror://kde/stable/release-service/24.12.3/src/kontact-24.12.3.tar.xz", 780 - "hash": "sha256-Dcc2gfVsl2+ooIS2wY6pACAwXwBY4h1nv0fPqOosiSk=" 781 }, 782 "kontactinterface": { 783 - "version": "24.12.3", 784 - "url": "mirror://kde/stable/release-service/24.12.3/src/kontactinterface-24.12.3.tar.xz", 785 - "hash": "sha256-JJn9DiGAd5Mjuw+ooHjrQwOiUNqrZ4KLQcN2G9rLRbU=" 786 }, 787 "kontrast": { 788 - "version": "24.12.3", 789 - "url": "mirror://kde/stable/release-service/24.12.3/src/kontrast-24.12.3.tar.xz", 790 - "hash": "sha256-zjhnnrwhD6kLHD8b8TTSsptaT0sxjkKoxWRvdeHxacE=" 791 }, 792 "konversation": { 793 - "version": "24.12.3", 794 - "url": "mirror://kde/stable/release-service/24.12.3/src/konversation-24.12.3.tar.xz", 795 - "hash": "sha256-O24Nawu/BViTeAoYAm7vaCzP/kTfJYDZIwiaCs7cIgw=" 796 }, 797 "kopeninghours": { 798 - "version": "24.12.3", 799 - "url": "mirror://kde/stable/release-service/24.12.3/src/kopeninghours-24.12.3.tar.xz", 800 - "hash": "sha256-EEnPCMn3Cpn7upVCYcpealSucrZ7XqK6mBobZKcOQjI=" 801 }, 802 "korganizer": { 803 - "version": "24.12.3", 804 - "url": "mirror://kde/stable/release-service/24.12.3/src/korganizer-24.12.3.tar.xz", 805 - "hash": "sha256-GXERgSgzhicwn6hv3gjUptPEjAi+kMW43uBrMZ5i5RQ=" 806 }, 807 "kosmindoormap": { 808 - "version": "24.12.3", 809 - "url": "mirror://kde/stable/release-service/24.12.3/src/kosmindoormap-24.12.3.tar.xz", 810 - "hash": "sha256-2TXEZzYEC6ABO7AsOqMOvT6UF/DxPKwON8JM9B3pdH0=" 811 }, 812 "kpat": { 813 - "version": "24.12.3", 814 - "url": "mirror://kde/stable/release-service/24.12.3/src/kpat-24.12.3.tar.xz", 815 - "hash": "sha256-RAz4XZd9irtfgJKJE9fr37svx2Aqs9cNHMX+eVSBDRY=" 816 }, 817 "kpimtextedit": { 818 - "version": "24.12.3", 819 - "url": "mirror://kde/stable/release-service/24.12.3/src/kpimtextedit-24.12.3.tar.xz", 820 - "hash": "sha256-LzI51hK3YXgV+hdI+tzigRCBQEfbK6t8bsK3YLHuvC4=" 821 }, 822 "kpkpass": { 823 - "version": "24.12.3", 824 - "url": "mirror://kde/stable/release-service/24.12.3/src/kpkpass-24.12.3.tar.xz", 825 - "hash": "sha256-zyLEWpQvJyPzCVQr8EmYlsJ9OBUhyvCyzJRlJGp9dKk=" 826 }, 827 "kpmcore": { 828 - "version": "24.12.3", 829 - "url": "mirror://kde/stable/release-service/24.12.3/src/kpmcore-24.12.3.tar.xz", 830 - "hash": "sha256-6sVxDvuVNrnenVq8X4G3q4Q6YGnFIjh5LLGieCRWrqc=" 831 }, 832 "kpublictransport": { 833 - "version": "24.12.3", 834 - "url": "mirror://kde/stable/release-service/24.12.3/src/kpublictransport-24.12.3.tar.xz", 835 - "hash": "sha256-dR/0nP2IRQ6Ve9XykgvwGzpFIBHf00HRitDQa7qq/+k=" 836 }, 837 "kqtquickcharts": { 838 - "version": "24.12.3", 839 - "url": "mirror://kde/stable/release-service/24.12.3/src/kqtquickcharts-24.12.3.tar.xz", 840 - "hash": "sha256-FjcvTR0H6rGk8HFGqd3QWGwovYwufc4AXoqkKAyg7ME=" 841 }, 842 "krdc": { 843 - "version": "24.12.3", 844 - "url": "mirror://kde/stable/release-service/24.12.3/src/krdc-24.12.3.tar.xz", 845 - "hash": "sha256-S/6eAfsW2XhRy/IlY9X7EJl248Vh6LB5xJMgFhOVN2Q=" 846 }, 847 "krecorder": { 848 - "version": "24.12.3", 849 - "url": "mirror://kde/stable/release-service/24.12.3/src/krecorder-24.12.3.tar.xz", 850 - "hash": "sha256-mCnCYv57/pQqY3T78AyQ1aGD390vuSJXmBgId5EatLY=" 851 }, 852 "kreversi": { 853 - "version": "24.12.3", 854 - "url": "mirror://kde/stable/release-service/24.12.3/src/kreversi-24.12.3.tar.xz", 855 - "hash": "sha256-CksIRjHsYN7r/gSL6H4Rk1+Osrwx+RlChpZ5iBHMlZc=" 856 }, 857 "krfb": { 858 - "version": "24.12.3", 859 - "url": "mirror://kde/stable/release-service/24.12.3/src/krfb-24.12.3.tar.xz", 860 - "hash": "sha256-8Wq/cANQ2/viUdMhBKftc/j6oqQ5np6nVDF98OGXz8E=" 861 - }, 862 - "kross-interpreters": { 863 - "version": "24.12.3", 864 - "url": "mirror://kde/stable/release-service/24.12.3/src/kross-interpreters-24.12.3.tar.xz", 865 - "hash": "sha256-0djS459WpKi3bREIqFz5BQAPRLBWoq9Sfss4erWso4g=" 866 }, 867 "kruler": { 868 - "version": "24.12.3", 869 - "url": "mirror://kde/stable/release-service/24.12.3/src/kruler-24.12.3.tar.xz", 870 - "hash": "sha256-q5D/vCrs+E/y1WnW1T4r66lEdViyeF1hk/638z1p3cc=" 871 }, 872 "ksanecore": { 873 - "version": "24.12.3", 874 - "url": "mirror://kde/stable/release-service/24.12.3/src/ksanecore-24.12.3.tar.xz", 875 - "hash": "sha256-k1fF49t1kkGxLr3EWGytShMmJ9I6FcvghE+JQ8Ma5Bk=" 876 }, 877 "kshisen": { 878 - "version": "24.12.3", 879 - "url": "mirror://kde/stable/release-service/24.12.3/src/kshisen-24.12.3.tar.xz", 880 - "hash": "sha256-qrMMEf7OGzdrGiS+m85NsQLN0hNLRrPkCBPuFboNShA=" 881 }, 882 "ksirk": { 883 - "version": "24.12.3", 884 - "url": "mirror://kde/stable/release-service/24.12.3/src/ksirk-24.12.3.tar.xz", 885 - "hash": "sha256-TZouiYyXuWQlrR5dESafTa1d/UVt5u92y4XKgkDcWaA=" 886 }, 887 "ksmtp": { 888 - "version": "24.12.3", 889 - "url": "mirror://kde/stable/release-service/24.12.3/src/ksmtp-24.12.3.tar.xz", 890 - "hash": "sha256-YAAS0jGovcRKzrD87kbrSdKBpfpndabtJNnKhXkP2Ts=" 891 }, 892 "ksnakeduel": { 893 - "version": "24.12.3", 894 - "url": "mirror://kde/stable/release-service/24.12.3/src/ksnakeduel-24.12.3.tar.xz", 895 - "hash": "sha256-HJmQQadNv2arD1+ZIH+y6c3KoMvWGvRffO+/h1uGUTg=" 896 }, 897 "kspaceduel": { 898 - "version": "24.12.3", 899 - "url": "mirror://kde/stable/release-service/24.12.3/src/kspaceduel-24.12.3.tar.xz", 900 - "hash": "sha256-2OT+c1DJ3ZoWPOdKiAAN250qEuf825c00O3j84SmXs4=" 901 }, 902 "ksquares": { 903 - "version": "24.12.3", 904 - "url": "mirror://kde/stable/release-service/24.12.3/src/ksquares-24.12.3.tar.xz", 905 - "hash": "sha256-9A3goqMFONbum/ET/j/nA9dZjj4ihyzC+ogknZZM7cs=" 906 }, 907 "ksudoku": { 908 - "version": "24.12.3", 909 - "url": "mirror://kde/stable/release-service/24.12.3/src/ksudoku-24.12.3.tar.xz", 910 - "hash": "sha256-KvLmP7G05vbsSMXUUaA6jCAiGUUjme2ppKWddFdCJTQ=" 911 }, 912 "ksystemlog": { 913 - "version": "24.12.3", 914 - "url": "mirror://kde/stable/release-service/24.12.3/src/ksystemlog-24.12.3.tar.xz", 915 - "hash": "sha256-lbt6byC4EDnSGJ9y5iPCDtbzkVuWQTCk28ycWsMurv8=" 916 }, 917 "kteatime": { 918 - "version": "24.12.3", 919 - "url": "mirror://kde/stable/release-service/24.12.3/src/kteatime-24.12.3.tar.xz", 920 - "hash": "sha256-eAHre/ugbsSfVXRXqXpTkPWX3EMo+RQRPdKjJoik/FQ=" 921 }, 922 "ktimer": { 923 - "version": "24.12.3", 924 - "url": "mirror://kde/stable/release-service/24.12.3/src/ktimer-24.12.3.tar.xz", 925 - "hash": "sha256-NfkK3UiEaUmnZwNMndiz0SCeuE8673VZYFgMDT4M/84=" 926 }, 927 "ktnef": { 928 - "version": "24.12.3", 929 - "url": "mirror://kde/stable/release-service/24.12.3/src/ktnef-24.12.3.tar.xz", 930 - "hash": "sha256-wtLxtk4WZ74y5+XQUdmPT0HvZ8EHd3gr+eSkG1dFcC0=" 931 }, 932 "ktorrent": { 933 - "version": "24.12.3", 934 - "url": "mirror://kde/stable/release-service/24.12.3/src/ktorrent-24.12.3.tar.xz", 935 - "hash": "sha256-puuL6RXUiu1d10XTvsGg9EYvB4RIoTJC3JTQz7lPj5w=" 936 }, 937 "ktouch": { 938 - "version": "24.12.3", 939 - "url": "mirror://kde/stable/release-service/24.12.3/src/ktouch-24.12.3.tar.xz", 940 - "hash": "sha256-xZ7dcixCXg34bvzPDXn3iD2CxbqvBnMWUFH14TqqH+s=" 941 }, 942 "ktrip": { 943 - "version": "24.12.3", 944 - "url": "mirror://kde/stable/release-service/24.12.3/src/ktrip-24.12.3.tar.xz", 945 - "hash": "sha256-nrAygRdV8E1ijVoXPAfanvkrVUCH1T0gPNVqYwzwmyg=" 946 }, 947 "ktuberling": { 948 - "version": "24.12.3", 949 - "url": "mirror://kde/stable/release-service/24.12.3/src/ktuberling-24.12.3.tar.xz", 950 - "hash": "sha256-UV6egQBA1y/L8intOCeWFUN3zLLQmCQTpge4DNKTJg8=" 951 }, 952 "kturtle": { 953 - "version": "24.12.3", 954 - "url": "mirror://kde/stable/release-service/24.12.3/src/kturtle-24.12.3.tar.xz", 955 - "hash": "sha256-3WENqOcXo/6uSUAICHMgdKPTW0NLcpwKyUQB+3f8Mec=" 956 }, 957 "kubrick": { 958 - "version": "24.12.3", 959 - "url": "mirror://kde/stable/release-service/24.12.3/src/kubrick-24.12.3.tar.xz", 960 - "hash": "sha256-j0KxOSAINvNZyYTmSTpcnvssM5iEqYgh0NruSJhvimI=" 961 }, 962 "kunifiedpush": { 963 - "version": "24.12.3", 964 - "url": "mirror://kde/stable/release-service/24.12.3/src/kunifiedpush-24.12.3.tar.xz", 965 - "hash": "sha256-hlzmrL+1EwtA7EBgA7maKBKVzpqYYo2ZQL87zFuHqTA=" 966 }, 967 "kwalletmanager": { 968 - "version": "24.12.3", 969 - "url": "mirror://kde/stable/release-service/24.12.3/src/kwalletmanager-24.12.3.tar.xz", 970 - "hash": "sha256-n5dTti94hvmthqOOMY9207VnfpKc9VJRLrs9lbbdKlA=" 971 }, 972 "kwave": { 973 - "version": "24.12.3", 974 - "url": "mirror://kde/stable/release-service/24.12.3/src/kwave-24.12.3.tar.xz", 975 - "hash": "sha256-veIKCeHk6Xw8bhiUSP2cBeGRN5/P2etMg6ZxWrWxKxY=" 976 }, 977 "kweather": { 978 - "version": "24.12.3", 979 - "url": "mirror://kde/stable/release-service/24.12.3/src/kweather-24.12.3.tar.xz", 980 - "hash": "sha256-9CP1uSbk5oXXrK71wTp5J5tR8vFYBwY1vHfvGRf1DtY=" 981 }, 982 "kweathercore": { 983 - "version": "24.12.3", 984 - "url": "mirror://kde/stable/release-service/24.12.3/src/kweathercore-24.12.3.tar.xz", 985 - "hash": "sha256-GMlWKgHCKVy1Wui+Qsk7nsAGWj+0pLt7EZM9uX0MwoU=" 986 }, 987 "kwordquiz": { 988 - "version": "24.12.3", 989 - "url": "mirror://kde/stable/release-service/24.12.3/src/kwordquiz-24.12.3.tar.xz", 990 - "hash": "sha256-jlT4niCXEGLizbQl0U8LpTIJxnDXZEJimm5ghXM99Jg=" 991 }, 992 "libgravatar": { 993 - "version": "24.12.3", 994 - "url": "mirror://kde/stable/release-service/24.12.3/src/libgravatar-24.12.3.tar.xz", 995 - "hash": "sha256-RNnxvWDqT8cJVogtZnwytN8AG1ze5KCD6F6s9qhGfA0=" 996 }, 997 "libkcddb": { 998 - "version": "24.12.3", 999 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkcddb-24.12.3.tar.xz", 1000 - "hash": "sha256-v0BLtWW1DWyhoDiBFrUUiZmPtVaCig4zQ1GsFAj9WA4=" 1001 }, 1002 "libkcompactdisc": { 1003 - "version": "24.12.3", 1004 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkcompactdisc-24.12.3.tar.xz", 1005 - "hash": "sha256-GlS8QOgtDwrgGHUtTt/l69rgQycb3a4/LzyuYZCcB1o=" 1006 }, 1007 "libkdcraw": { 1008 - "version": "24.12.3", 1009 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkdcraw-24.12.3.tar.xz", 1010 - "hash": "sha256-mC4JQFzedpEfA2gGqhL9a3D47iaxs3xz/lxA3cI0DVo=" 1011 }, 1012 "libkdegames": { 1013 - "version": "24.12.3", 1014 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkdegames-24.12.3.tar.xz", 1015 - "hash": "sha256-1kDVpZBFDkdukDo0HpFgBKRq1y0NsH9CAedeTlp8AuU=" 1016 }, 1017 "libkdepim": { 1018 - "version": "24.12.3", 1019 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkdepim-24.12.3.tar.xz", 1020 - "hash": "sha256-2DpwotJZ5Xmv3YLhu8CC81ySofxs8osyph4qx7hBBAo=" 1021 }, 1022 "libkeduvocdocument": { 1023 - "version": "24.12.3", 1024 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkeduvocdocument-24.12.3.tar.xz", 1025 - "hash": "sha256-m6pjp8admNhqWBolaKWfJITp15lJQV+GLIQQ+C0DmQk=" 1026 }, 1027 "libkexiv2": { 1028 - "version": "24.12.3", 1029 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkexiv2-24.12.3.tar.xz", 1030 - "hash": "sha256-MbiqED6g1NWPxfH5UXIpuvCrbQJRkQWtJyBfwc/BZBE=" 1031 }, 1032 "libkgapi": { 1033 - "version": "24.12.3", 1034 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkgapi-24.12.3.tar.xz", 1035 - "hash": "sha256-cfLA7XExxMdNmIKFuJWR4TiIFEjTuGdGZoD0tLdC4Xc=" 1036 }, 1037 "libkleo": { 1038 - "version": "24.12.3", 1039 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkleo-24.12.3.tar.xz", 1040 - "hash": "sha256-9ht3fGcuIarK3h4SVtt95Y46Li5AhMb/enky3McxYCQ=" 1041 }, 1042 "libkmahjongg": { 1043 - "version": "24.12.3", 1044 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkmahjongg-24.12.3.tar.xz", 1045 - "hash": "sha256-2yvbW4IU8orWj9rEJL7CP7GGISG3KZgsivJrCw4T9sY=" 1046 }, 1047 "libkomparediff2": { 1048 - "version": "24.12.3", 1049 - "url": "mirror://kde/stable/release-service/24.12.3/src/libkomparediff2-24.12.3.tar.xz", 1050 - "hash": "sha256-M8ci58aTW5/myntibRDQzQ4IeKA5ayq2WfTE1t1xSRI=" 1051 }, 1052 "libksane": { 1053 - "version": "24.12.3", 1054 - "url": "mirror://kde/stable/release-service/24.12.3/src/libksane-24.12.3.tar.xz", 1055 - "hash": "sha256-vLx+wczZao8k13cI+KKIWf9wieTl+Et7oVIBzIhbDKw=" 1056 }, 1057 "libksieve": { 1058 - "version": "24.12.3", 1059 - "url": "mirror://kde/stable/release-service/24.12.3/src/libksieve-24.12.3.tar.xz", 1060 - "hash": "sha256-Iic1l9Olh5z2f3R8IsDWjaSbGSA5ykggOz3osXDRzkc=" 1061 }, 1062 "libktorrent": { 1063 - "version": "24.12.3", 1064 - "url": "mirror://kde/stable/release-service/24.12.3/src/libktorrent-24.12.3.tar.xz", 1065 - "hash": "sha256-FsxpSdWwtLkY9vNT3lwJ3QxBefTDA/uwfj8mvFcmzkA=" 1066 }, 1067 "lokalize": { 1068 - "version": "24.12.3", 1069 - "url": "mirror://kde/stable/release-service/24.12.3/src/lokalize-24.12.3.tar.xz", 1070 - "hash": "sha256-80NIQDzqrXns6uCI0dDy3TyezTAxnOCyhHE1qggD8hg=" 1071 }, 1072 "lskat": { 1073 - "version": "24.12.3", 1074 - "url": "mirror://kde/stable/release-service/24.12.3/src/lskat-24.12.3.tar.xz", 1075 - "hash": "sha256-95hmlmMGAcSoaGiFN/4F2lReAQCK079m5WHf3BnbVoQ=" 1076 }, 1077 "mailcommon": { 1078 - "version": "24.12.3", 1079 - "url": "mirror://kde/stable/release-service/24.12.3/src/mailcommon-24.12.3.tar.xz", 1080 - "hash": "sha256-5gNIa9dttUhsivmAU9J5KhtH0J+9AuLbgH08BKrSqO8=" 1081 }, 1082 "mailimporter": { 1083 - "version": "24.12.3", 1084 - "url": "mirror://kde/stable/release-service/24.12.3/src/mailimporter-24.12.3.tar.xz", 1085 - "hash": "sha256-iN/g8xeQcB0DzlkCq+k0EEE71Ed7rz2nSWfF8Po9Za4=" 1086 }, 1087 "marble": { 1088 - "version": "24.12.3", 1089 - "url": "mirror://kde/stable/release-service/24.12.3/src/marble-24.12.3.tar.xz", 1090 - "hash": "sha256-lOB8/OOvP9b9Bdg/AyMBuaR4FEKro5EMUmBkzJLelfE=" 1091 }, 1092 "markdownpart": { 1093 - "version": "24.12.3", 1094 - "url": "mirror://kde/stable/release-service/24.12.3/src/markdownpart-24.12.3.tar.xz", 1095 - "hash": "sha256-jbaDL9xw/kQWGk/HwzayVHbSlr5ovJU1HNB8L0eL6BQ=" 1096 }, 1097 "massif-visualizer": { 1098 - "version": "24.12.3", 1099 - "url": "mirror://kde/stable/release-service/24.12.3/src/massif-visualizer-24.12.3.tar.xz", 1100 - "hash": "sha256-tW9OY7pT9OqmQLIUYfuZ0MQJ0hmk83CSWDkInCk+qiU=" 1101 }, 1102 "mbox-importer": { 1103 - "version": "24.12.3", 1104 - "url": "mirror://kde/stable/release-service/24.12.3/src/mbox-importer-24.12.3.tar.xz", 1105 - "hash": "sha256-60m7tQBNHEOfO+AaI6xCT8DC1eN7l05hzmQx7yUEjHc=" 1106 }, 1107 "merkuro": { 1108 - "version": "24.12.3", 1109 - "url": "mirror://kde/stable/release-service/24.12.3/src/merkuro-24.12.3.tar.xz", 1110 - "hash": "sha256-kl51tm0LYWbDTICHMekh+DEyxcRcjDcj67n9Qk708VM=" 1111 }, 1112 "messagelib": { 1113 - "version": "24.12.3", 1114 - "url": "mirror://kde/stable/release-service/24.12.3/src/messagelib-24.12.3.tar.xz", 1115 - "hash": "sha256-H47xZ94m/hwxr91IvzWfxRHlaR74263tM5D1A3dV74w=" 1116 }, 1117 "mimetreeparser": { 1118 - "version": "24.12.3", 1119 - "url": "mirror://kde/stable/release-service/24.12.3/src/mimetreeparser-24.12.3.tar.xz", 1120 - "hash": "sha256-EWpw7Scb5YYoND+crKt2v/VvPAJIzyNvlxfG4GQFkfA=" 1121 }, 1122 "minuet": { 1123 - "version": "24.12.3", 1124 - "url": "mirror://kde/stable/release-service/24.12.3/src/minuet-24.12.3.tar.xz", 1125 - "hash": "sha256-zcc+kIKC5NCHzJ9pMsE0g1u/94TNG/a1bj09yXSaL3c=" 1126 }, 1127 "neochat": { 1128 - "version": "24.12.3", 1129 - "url": "mirror://kde/stable/release-service/24.12.3/src/neochat-24.12.3.tar.xz", 1130 - "hash": "sha256-DaTvh2IGR+/KAZjUIOiXuXxWvPy8/apaeKpQ/UiDAeA=" 1131 }, 1132 "okular": { 1133 - "version": "24.12.3", 1134 - "url": "mirror://kde/stable/release-service/24.12.3/src/okular-24.12.3.tar.xz", 1135 - "hash": "sha256-jQiU3ABrcV3sLY1Xwii4qdXZSI4xRN0a+Ts7g2PkZqA=" 1136 }, 1137 "palapeli": { 1138 - "version": "24.12.3", 1139 - "url": "mirror://kde/stable/release-service/24.12.3/src/palapeli-24.12.3.tar.xz", 1140 - "hash": "sha256-EJE4lcYmox21td377Am/BRcPFpnKqX7mqYVIrXBj6CA=" 1141 }, 1142 "parley": { 1143 - "version": "24.12.3", 1144 - "url": "mirror://kde/stable/release-service/24.12.3/src/parley-24.12.3.tar.xz", 1145 - "hash": "sha256-bf7RJ5KywxgRSe6VQpeg/8nksIkrnud2Ac2KTMf0EX0=" 1146 }, 1147 "partitionmanager": { 1148 - "version": "24.12.3", 1149 - "url": "mirror://kde/stable/release-service/24.12.3/src/partitionmanager-24.12.3.tar.xz", 1150 - "hash": "sha256-ApWxsxUVwH2Z6D5xckiSGSELRhtOxd862GzdF5Ma5p4=" 1151 }, 1152 "picmi": { 1153 - "version": "24.12.3", 1154 - "url": "mirror://kde/stable/release-service/24.12.3/src/picmi-24.12.3.tar.xz", 1155 - "hash": "sha256-JszVWnjs4ZofhlxC4sHG2OZsYVghwlfJ4hu6lxgoemo=" 1156 }, 1157 "pim-data-exporter": { 1158 - "version": "24.12.3", 1159 - "url": "mirror://kde/stable/release-service/24.12.3/src/pim-data-exporter-24.12.3.tar.xz", 1160 - "hash": "sha256-zXCeixyWT3att8gW934udGn279q8AbLvrIahHjUfySo=" 1161 }, 1162 "pim-sieve-editor": { 1163 - "version": "24.12.3", 1164 - "url": "mirror://kde/stable/release-service/24.12.3/src/pim-sieve-editor-24.12.3.tar.xz", 1165 - "hash": "sha256-2/HUgf0OqrpAt6vkBP0Br6j7NyKfTAg6wLGcUxbyUhA=" 1166 }, 1167 "pimcommon": { 1168 - "version": "24.12.3", 1169 - "url": "mirror://kde/stable/release-service/24.12.3/src/pimcommon-24.12.3.tar.xz", 1170 - "hash": "sha256-tQ7KgXNZNZ/L6MBngTx2S8jkGbWdYI/2neELT3/5Wy8=" 1171 }, 1172 "plasmatube": { 1173 - "version": "24.12.3", 1174 - "url": "mirror://kde/stable/release-service/24.12.3/src/plasmatube-24.12.3.tar.xz", 1175 - "hash": "sha256-FlXx1omSWEBBJ+/qsD6z9nvGiL84XZbYQphB8yHSBRQ=" 1176 }, 1177 "poxml": { 1178 - "version": "24.12.3", 1179 - "url": "mirror://kde/stable/release-service/24.12.3/src/poxml-24.12.3.tar.xz", 1180 - "hash": "sha256-oftT6lIN6Igwb80GTG7heqS773vO3KuEDC1X8J6lrFo=" 1181 }, 1182 "qmlkonsole": { 1183 - "version": "24.12.3", 1184 - "url": "mirror://kde/stable/release-service/24.12.3/src/qmlkonsole-24.12.3.tar.xz", 1185 - "hash": "sha256-ttczlr+NA7jTOjhQOtR0kKfpsJuTXfQIhuwSUCjI+8w=" 1186 }, 1187 "rocs": { 1188 - "version": "24.12.3", 1189 - "url": "mirror://kde/stable/release-service/24.12.3/src/rocs-24.12.3.tar.xz", 1190 - "hash": "sha256-niL7P96beJz6yj21MmfG/11w+tV9LasD2JDpL6Pz/3A=" 1191 }, 1192 "signon-kwallet-extension": { 1193 - "version": "24.12.3", 1194 - "url": "mirror://kde/stable/release-service/24.12.3/src/signon-kwallet-extension-24.12.3.tar.xz", 1195 - "hash": "sha256-t8ch7wznckrLZ8Mw33+hS1BmZ24PcjudVxY7fzG+qsk=" 1196 }, 1197 "skanlite": { 1198 - "version": "24.12.3", 1199 - "url": "mirror://kde/stable/release-service/24.12.3/src/skanlite-24.12.3.tar.xz", 1200 - "hash": "sha256-Rd51Mzi6NY0ymK8LieHB8InACWw3SPP74QUMQ7r1WDQ=" 1201 }, 1202 "skanpage": { 1203 - "version": "24.12.3", 1204 - "url": "mirror://kde/stable/release-service/24.12.3/src/skanpage-24.12.3.tar.xz", 1205 - "hash": "sha256-1wMKcfoe9o+DCB51kSnkdb+5QvqAHpGQEPKyk02M5Ik=" 1206 }, 1207 "skladnik": { 1208 - "version": "24.12.3", 1209 - "url": "mirror://kde/stable/release-service/24.12.3/src/skladnik-24.12.3.tar.xz", 1210 - "hash": "sha256-VXJqNUkrMgzDdoXItpfzDfkNkb1DMnbE2HUUtzgWNGk=" 1211 - }, 1212 - "spectacle": { 1213 - "version": "24.12.3", 1214 - "url": "mirror://kde/stable/release-service/24.12.3/src/spectacle-24.12.3.tar.xz", 1215 - "hash": "sha256-TufPkzBfzIMdWYOxc8+gZYLFs8IYDFyb6D8WU8Zqxs8=" 1216 }, 1217 "step": { 1218 - "version": "24.12.3", 1219 - "url": "mirror://kde/stable/release-service/24.12.3/src/step-24.12.3.tar.xz", 1220 - "hash": "sha256-paHZukD+9JHm755jnvpqzqGiv46k/uagI1vLH0V0KkA=" 1221 }, 1222 "svgpart": { 1223 - "version": "24.12.3", 1224 - "url": "mirror://kde/stable/release-service/24.12.3/src/svgpart-24.12.3.tar.xz", 1225 - "hash": "sha256-7pK4gJ1lrPB+9/f8WHefsXjl+J44XE1WT/tZPcmzypA=" 1226 }, 1227 "sweeper": { 1228 - "version": "24.12.3", 1229 - "url": "mirror://kde/stable/release-service/24.12.3/src/sweeper-24.12.3.tar.xz", 1230 - "hash": "sha256-CN+H0dgkbcFWhqmqZ1TYDN3XBpaELDo0KsG9rrjAvWs=" 1231 }, 1232 "telly-skout": { 1233 - "version": "24.12.3", 1234 - "url": "mirror://kde/stable/release-service/24.12.3/src/telly-skout-24.12.3.tar.xz", 1235 - "hash": "sha256-Jq8CiiEat4E3a36Gyvn/PLEddwomaVVvI4doBVC9O3A=" 1236 }, 1237 "tokodon": { 1238 - "version": "24.12.3", 1239 - "url": "mirror://kde/stable/release-service/24.12.3/src/tokodon-24.12.3.tar.xz", 1240 - "hash": "sha256-YrLdzIyu6Iidg1oB0GNAGZBAzqRr+FjbrqOzkbs2pqo=" 1241 }, 1242 "umbrello": { 1243 - "version": "24.12.3", 1244 - "url": "mirror://kde/stable/release-service/24.12.3/src/umbrello-24.12.3.tar.xz", 1245 - "hash": "sha256-hhdZYGZUZY//lDrxpuNNmPmm2nv6ks1HObEsXHY/RYA=" 1246 }, 1247 "yakuake": { 1248 - "version": "24.12.3", 1249 - "url": "mirror://kde/stable/release-service/24.12.3/src/yakuake-24.12.3.tar.xz", 1250 - "hash": "sha256-taAPtL1Rjb1Wl8FCpSb0EhuSP5hGVFNjFgx1nKO5RQY=" 1251 }, 1252 "zanshin": { 1253 - "version": "24.12.3", 1254 - "url": "mirror://kde/stable/release-service/24.12.3/src/zanshin-24.12.3.tar.xz", 1255 - "hash": "sha256-1ieMLJFtug79GtwkiBYqhkmnT+PP+Ib3Q+fTJvsXx1A=" 1256 } 1257 }
··· 1 { 2 "accessibility-inspector": { 3 + "version": "25.04.0", 4 + "url": "mirror://kde/stable/release-service/25.04.0/src/accessibility-inspector-25.04.0.tar.xz", 5 + "hash": "sha256-Osk2I4udjuRw2+DqhjoVZh7MNL3UOR7Jf08UzjDxG/U=" 6 }, 7 "akonadi": { 8 + "version": "25.04.0", 9 + "url": "mirror://kde/stable/release-service/25.04.0/src/akonadi-25.04.0.tar.xz", 10 + "hash": "sha256-gDTf0vaU7Qf/idF7Qsz08WJthErTNqg9gfA/swVWZ54=" 11 }, 12 "akonadi-calendar": { 13 + "version": "25.04.0", 14 + "url": "mirror://kde/stable/release-service/25.04.0/src/akonadi-calendar-25.04.0.tar.xz", 15 + "hash": "sha256-6LEMa+/aqBV+dpdGjDvKN/hFrIdXYgj3sl28JRgjJW8=" 16 }, 17 "akonadi-calendar-tools": { 18 + "version": "25.04.0", 19 + "url": "mirror://kde/stable/release-service/25.04.0/src/akonadi-calendar-tools-25.04.0.tar.xz", 20 + "hash": "sha256-vTg5fNxqhNyRR/2NSz4LMIM4k/ERWsbOtsBpWYZkNow=" 21 }, 22 "akonadi-contacts": { 23 + "version": "25.04.0", 24 + "url": "mirror://kde/stable/release-service/25.04.0/src/akonadi-contacts-25.04.0.tar.xz", 25 + "hash": "sha256-WfQXxE6EMI99BSe/WsIwVT5wbDNn+rf5TV9qJbBQ4Yg=" 26 }, 27 "akonadi-import-wizard": { 28 + "version": "25.04.0", 29 + "url": "mirror://kde/stable/release-service/25.04.0/src/akonadi-import-wizard-25.04.0.tar.xz", 30 + "hash": "sha256-6x90ZFAiKO7S1LmmgUhXGeZmsSFQluxCC4qS39wOvsY=" 31 }, 32 "akonadi-mime": { 33 + "version": "25.04.0", 34 + "url": "mirror://kde/stable/release-service/25.04.0/src/akonadi-mime-25.04.0.tar.xz", 35 + "hash": "sha256-mtTvleVpjXqTbgn4nYr5Ko8pPaszK+sK7wgFtzjAhtM=" 36 }, 37 "akonadi-search": { 38 + "version": "25.04.0", 39 + "url": "mirror://kde/stable/release-service/25.04.0/src/akonadi-search-25.04.0.tar.xz", 40 + "hash": "sha256-2BvcOEowI0OWSSIOpt23wzdQW/17HBdLeWUzMq9G/TQ=" 41 }, 42 "akonadiconsole": { 43 + "version": "25.04.0", 44 + "url": "mirror://kde/stable/release-service/25.04.0/src/akonadiconsole-25.04.0.tar.xz", 45 + "hash": "sha256-Wl9ySX+Nh6al1+xVSqtDS+axvV6tAeBYW7AFSQLlC68=" 46 }, 47 "akregator": { 48 + "version": "25.04.0", 49 + "url": "mirror://kde/stable/release-service/25.04.0/src/akregator-25.04.0.tar.xz", 50 + "hash": "sha256-NN/iGr1eaW4JupqiMJ3gTm1u2HM/Alfpnvrvwvz2EaY=" 51 }, 52 "alligator": { 53 + "version": "25.04.0", 54 + "url": "mirror://kde/stable/release-service/25.04.0/src/alligator-25.04.0.tar.xz", 55 + "hash": "sha256-//1Eo5in6zTUYdw8yTyVoO+p6wtXoXjzbiasQefCocs=" 56 }, 57 "analitza": { 58 + "version": "25.04.0", 59 + "url": "mirror://kde/stable/release-service/25.04.0/src/analitza-25.04.0.tar.xz", 60 + "hash": "sha256-ZzkO7FQ41pOQ8tG6WJYEy4p4F/hryTGswk8CmrLbPyw=" 61 }, 62 "angelfish": { 63 + "version": "25.04.0", 64 + "url": "mirror://kde/stable/release-service/25.04.0/src/angelfish-25.04.0.tar.xz", 65 + "hash": "sha256-G81FOSBEoPocy88aS7qFnbD9F9qWInVy1Z17KwKX5CE=" 66 }, 67 "arianna": { 68 + "version": "25.04.0", 69 + "url": "mirror://kde/stable/release-service/25.04.0/src/arianna-25.04.0.tar.xz", 70 + "hash": "sha256-zbpWRh8f1d3weUPgIWsSsQRR3Ycjp8CGZINf/i9K8bo=" 71 }, 72 "ark": { 73 + "version": "25.04.0", 74 + "url": "mirror://kde/stable/release-service/25.04.0/src/ark-25.04.0.tar.xz", 75 + "hash": "sha256-B6/KvAvPM7bdadbvSlUd+JpFAr5nfTtQeK27qA2I1bc=" 76 }, 77 "artikulate": { 78 + "version": "25.04.0", 79 + "url": "mirror://kde/stable/release-service/25.04.0/src/artikulate-25.04.0.tar.xz", 80 + "hash": "sha256-BlecrtsvUXFm1v6H6osPl8H26ZKJqvnF3+oBw4ZIdmg=" 81 }, 82 "audex": { 83 + "version": "25.04.0", 84 + "url": "mirror://kde/stable/release-service/25.04.0/src/audex-25.04.0.tar.xz", 85 + "hash": "sha256-k+uS5fcuxlTLKyKS8OER/d6cPL3D+P/49Gab5FVo94c=" 86 }, 87 "audiocd-kio": { 88 + "version": "25.04.0", 89 + "url": "mirror://kde/stable/release-service/25.04.0/src/audiocd-kio-25.04.0.tar.xz", 90 + "hash": "sha256-cSdT7IOSJ2jkJXxQRADP21WBc767OcWUcNp1t3HB1rc=" 91 }, 92 "audiotube": { 93 + "version": "25.04.0", 94 + "url": "mirror://kde/stable/release-service/25.04.0/src/audiotube-25.04.0.tar.xz", 95 + "hash": "sha256-4obKYQbwXMQE4WiSru959XBDRiQbEmqlljRZJjgt81g=" 96 }, 97 "baloo-widgets": { 98 + "version": "25.04.0", 99 + "url": "mirror://kde/stable/release-service/25.04.0/src/baloo-widgets-25.04.0.tar.xz", 100 + "hash": "sha256-o9wY3dYFnIihE9oJpUcqk88I8R3Qw1jD07apgSfEXEU=" 101 }, 102 "blinken": { 103 + "version": "25.04.0", 104 + "url": "mirror://kde/stable/release-service/25.04.0/src/blinken-25.04.0.tar.xz", 105 + "hash": "sha256-f54djMxJIOSZ1GMr6IunGT9Q2Nt0N5328LmjBWG0oOM=" 106 }, 107 "bomber": { 108 + "version": "25.04.0", 109 + "url": "mirror://kde/stable/release-service/25.04.0/src/bomber-25.04.0.tar.xz", 110 + "hash": "sha256-HmOSKjIEIO3soitoaLSp/aVIMy9EF3TlUC6thqt5jOg=" 111 }, 112 "bovo": { 113 + "version": "25.04.0", 114 + "url": "mirror://kde/stable/release-service/25.04.0/src/bovo-25.04.0.tar.xz", 115 + "hash": "sha256-peUux/RaGKprjUF2Sq5aq7/JDpBAw1YYUkfDd0dLveU=" 116 }, 117 "calendarsupport": { 118 + "version": "25.04.0", 119 + "url": "mirror://kde/stable/release-service/25.04.0/src/calendarsupport-25.04.0.tar.xz", 120 + "hash": "sha256-+XgMuYtG3DGxUSqMBm5gtlCdF0fCr+wBzMu+LeaTBQI=" 121 }, 122 "calindori": { 123 + "version": "25.04.0", 124 + "url": "mirror://kde/stable/release-service/25.04.0/src/calindori-25.04.0.tar.xz", 125 + "hash": "sha256-GHz7J6tVezyyk+g7nWUBWY5JLpvj0MyJ6USy7RIPLyQ=" 126 }, 127 "calligra": { 128 + "version": "25.04.0", 129 + "url": "mirror://kde/stable/release-service/25.04.0/src/calligra-25.04.0.tar.xz", 130 + "hash": "sha256-W/d8bG3H6JGzucu4rxDDOGo9TLegoTv3VoAkwwA5yR8=" 131 }, 132 "cantor": { 133 + "version": "25.04.0", 134 + "url": "mirror://kde/stable/release-service/25.04.0/src/cantor-25.04.0.tar.xz", 135 + "hash": "sha256-mPlmYfIK1Mkfpf5kvA7L7wPYWWm2SFHGYNLTaWgsPwA=" 136 }, 137 "cervisia": { 138 + "version": "25.04.0", 139 + "url": "mirror://kde/stable/release-service/25.04.0/src/cervisia-25.04.0.tar.xz", 140 + "hash": "sha256-H+KlDqEL6OohiqGrXWEtUZsQu7UbTcH/oGqtQbpFMgk=" 141 }, 142 "colord-kde": { 143 + "version": "25.04.0", 144 + "url": "mirror://kde/stable/release-service/25.04.0/src/colord-kde-25.04.0.tar.xz", 145 + "hash": "sha256-rFbO6E6QM8RsKGcds8p79BvPOAAA9QJXjBZI58oJWFw=" 146 }, 147 "dolphin": { 148 + "version": "25.04.0", 149 + "url": "mirror://kde/stable/release-service/25.04.0/src/dolphin-25.04.0.tar.xz", 150 + "hash": "sha256-iZfsBO8SryJkff72exXqjxME964HbHuP1TGEpVoBKhg=" 151 }, 152 "dolphin-plugins": { 153 + "version": "25.04.0", 154 + "url": "mirror://kde/stable/release-service/25.04.0/src/dolphin-plugins-25.04.0.tar.xz", 155 + "hash": "sha256-/xq+kEtfBRftcLsXr6mHvYQWKXtEulmIEBnE/58vTZs=" 156 }, 157 "dragon": { 158 + "version": "25.04.0", 159 + "url": "mirror://kde/stable/release-service/25.04.0/src/dragon-25.04.0.tar.xz", 160 + "hash": "sha256-0h9RHLswV3FJRKqytM2knIqm81NLTqcb7H55kE0Mkx4=" 161 }, 162 "elisa": { 163 + "version": "25.04.0", 164 + "url": "mirror://kde/stable/release-service/25.04.0/src/elisa-25.04.0.tar.xz", 165 + "hash": "sha256-lkmRkDcPeOB7OtIdlNkk0CHdF8S/WYsh0BvwKip0lq8=" 166 }, 167 "eventviews": { 168 + "version": "25.04.0", 169 + "url": "mirror://kde/stable/release-service/25.04.0/src/eventviews-25.04.0.tar.xz", 170 + "hash": "sha256-rskuFiW4wJJOp91bf1lE5fAMy3Ymk+H54GH8WLhOz5o=" 171 }, 172 "falkon": { 173 + "version": "25.04.0", 174 + "url": "mirror://kde/stable/release-service/25.04.0/src/falkon-25.04.0.tar.xz", 175 + "hash": "sha256-qtAQ1mQifd/h/AhLtvs2au11I0DgDA833fo6oyNi6Ew=" 176 }, 177 "ffmpegthumbs": { 178 + "version": "25.04.0", 179 + "url": "mirror://kde/stable/release-service/25.04.0/src/ffmpegthumbs-25.04.0.tar.xz", 180 + "hash": "sha256-b+Q2NyjT1LUrXRLTmrEpWdY+CLZ7rTwcA01Y+7pU/XM=" 181 }, 182 "filelight": { 183 + "version": "25.04.0", 184 + "url": "mirror://kde/stable/release-service/25.04.0/src/filelight-25.04.0.tar.xz", 185 + "hash": "sha256-/s9BI6B0GjcCaeP5i3I/bQq1CkFAtJh5EDhWw30qysk=" 186 }, 187 "francis": { 188 + "version": "25.04.0", 189 + "url": "mirror://kde/stable/release-service/25.04.0/src/francis-25.04.0.tar.xz", 190 + "hash": "sha256-zFQm8q+iJofpPzvV6Lq7x/kTsIu8Ovlsfs5+NNgYFtY=" 191 }, 192 "ghostwriter": { 193 + "version": "25.04.0", 194 + "url": "mirror://kde/stable/release-service/25.04.0/src/ghostwriter-25.04.0.tar.xz", 195 + "hash": "sha256-hurVJ6oB1KMc6DsoJCQq8gXsG7hL0l2Z+FYRLU37pm8=" 196 }, 197 "granatier": { 198 + "version": "25.04.0", 199 + "url": "mirror://kde/stable/release-service/25.04.0/src/granatier-25.04.0.tar.xz", 200 + "hash": "sha256-bxt7wH7dEBb7XvstqxFyXbJnZpVCeCnSu8BN/lAiEs0=" 201 }, 202 "grantlee-editor": { 203 + "version": "25.04.0", 204 + "url": "mirror://kde/stable/release-service/25.04.0/src/grantlee-editor-25.04.0.tar.xz", 205 + "hash": "sha256-k3bDLOHCV2Uz/rLdu+9SqDTXWAFGxZ/A1R+DRsBJsqc=" 206 }, 207 "grantleetheme": { 208 + "version": "25.04.0", 209 + "url": "mirror://kde/stable/release-service/25.04.0/src/grantleetheme-25.04.0.tar.xz", 210 + "hash": "sha256-mz8O/UYDlgOWINgLB3V6UMCgGfPZa7SGDa7XJMNbLXA=" 211 }, 212 "gwenview": { 213 + "version": "25.04.0", 214 + "url": "mirror://kde/stable/release-service/25.04.0/src/gwenview-25.04.0.tar.xz", 215 + "hash": "sha256-q2x1RgqVxe49zK7FR47Wr8nuCbShnwH443+hdT8pqzw=" 216 }, 217 "incidenceeditor": { 218 + "version": "25.04.0", 219 + "url": "mirror://kde/stable/release-service/25.04.0/src/incidenceeditor-25.04.0.tar.xz", 220 + "hash": "sha256-FoXNgP+AYu0RRyFpwO+M91JPuyENlytlZn4rMDtq44E=" 221 }, 222 "isoimagewriter": { 223 + "version": "25.04.0", 224 + "url": "mirror://kde/stable/release-service/25.04.0/src/isoimagewriter-25.04.0.tar.xz", 225 + "hash": "sha256-vyypKnlLNARhxAEIpRp3afZ3Q+E7BuZsJbGyrHFOwJM=" 226 }, 227 "itinerary": { 228 + "version": "25.04.0", 229 + "url": "mirror://kde/stable/release-service/25.04.0/src/itinerary-25.04.0.tar.xz", 230 + "hash": "sha256-N3VcqvLlWoQfcpIsnOSTLhrTRrr8HpzKE20RH21nk+g=" 231 }, 232 "juk": { 233 + "version": "25.04.0", 234 + "url": "mirror://kde/stable/release-service/25.04.0/src/juk-25.04.0.tar.xz", 235 + "hash": "sha256-N2IkFMdl99SERmBzJPcVEe/M6JJSJOh/cOntX+CfkVU=" 236 }, 237 "k3b": { 238 + "version": "25.04.0", 239 + "url": "mirror://kde/stable/release-service/25.04.0/src/k3b-25.04.0.tar.xz", 240 + "hash": "sha256-/yBy2M8BpApNG7xS3F1w7vyry1OPHvBr3MscUpF9LpM=" 241 }, 242 "kaccounts-integration": { 243 + "version": "25.04.0", 244 + "url": "mirror://kde/stable/release-service/25.04.0/src/kaccounts-integration-25.04.0.tar.xz", 245 + "hash": "sha256-wyZGHTnJyMw2bEL0aj7jVO5+4d5Ci3qDXyIhpSUrYpk=" 246 }, 247 "kaccounts-providers": { 248 + "version": "25.04.0", 249 + "url": "mirror://kde/stable/release-service/25.04.0/src/kaccounts-providers-25.04.0.tar.xz", 250 + "hash": "sha256-P7VLieJDybDALepk6783wfrgmcbnhirPFExvUxAs9lY=" 251 }, 252 "kaddressbook": { 253 + "version": "25.04.0", 254 + "url": "mirror://kde/stable/release-service/25.04.0/src/kaddressbook-25.04.0.tar.xz", 255 + "hash": "sha256-0Href/km0Hevf3l+rfBPUfWXxzpvQ2pwkHxYy9bqJhU=" 256 }, 257 "kajongg": { 258 + "version": "25.04.0", 259 + "url": "mirror://kde/stable/release-service/25.04.0/src/kajongg-25.04.0.tar.xz", 260 + "hash": "sha256-59ebskJ+NZuglTXMZVl1L1JU6Dt2QtSxhMTY4/vfAF8=" 261 }, 262 "kalarm": { 263 + "version": "25.04.0", 264 + "url": "mirror://kde/stable/release-service/25.04.0/src/kalarm-25.04.0.tar.xz", 265 + "hash": "sha256-v1Z1Qj8IAjXCIwn0SOTfttShuqqMYMv6Yya1WFFuPpI=" 266 }, 267 "kalgebra": { 268 + "version": "25.04.0", 269 + "url": "mirror://kde/stable/release-service/25.04.0/src/kalgebra-25.04.0.tar.xz", 270 + "hash": "sha256-mTvca8axbTrySod5QQ/EgY+SZgKUSUwlW2jmP0p8zcI=" 271 }, 272 "kalk": { 273 + "version": "25.04.0", 274 + "url": "mirror://kde/stable/release-service/25.04.0/src/kalk-25.04.0.tar.xz", 275 + "hash": "sha256-IrFqMvokYUHqaCrkBQf9Pp0L3tKJOxLIcv4uMooKqu8=" 276 }, 277 "kalm": { 278 + "version": "25.04.0", 279 + "url": "mirror://kde/stable/release-service/25.04.0/src/kalm-25.04.0.tar.xz", 280 + "hash": "sha256-CL+WAa5Xlvo2Z9ScyumiW3U913wiPHFMZFImK9J8t9k=" 281 }, 282 "kalzium": { 283 + "version": "25.04.0", 284 + "url": "mirror://kde/stable/release-service/25.04.0/src/kalzium-25.04.0.tar.xz", 285 + "hash": "sha256-dlco2xT4NIY/o4k/cNA00qdrBqpMhs5V8Vv9VEN/1fA=" 286 }, 287 "kamera": { 288 + "version": "25.04.0", 289 + "url": "mirror://kde/stable/release-service/25.04.0/src/kamera-25.04.0.tar.xz", 290 + "hash": "sha256-Qu9pyhUJBDZ4rsVT4U83EsdTQ5BX1Ti7qJQsNX2ciJA=" 291 }, 292 "kamoso": { 293 + "version": "25.04.0", 294 + "url": "mirror://kde/stable/release-service/25.04.0/src/kamoso-25.04.0.tar.xz", 295 + "hash": "sha256-cpIrsuTUKV2r25qLyWNfDdXQRkN8qOreDvksPKZwP+s=" 296 }, 297 "kanagram": { 298 + "version": "25.04.0", 299 + "url": "mirror://kde/stable/release-service/25.04.0/src/kanagram-25.04.0.tar.xz", 300 + "hash": "sha256-TNGs8qEvTZm0tGbMEqMky1Jfjyb2P67CzZhYWYHq8tw=" 301 }, 302 "kapman": { 303 + "version": "25.04.0", 304 + "url": "mirror://kde/stable/release-service/25.04.0/src/kapman-25.04.0.tar.xz", 305 + "hash": "sha256-CAQHc8cQ5dkiyhrB1Xv6pASiI8mvjoAKNF2nljXTjsE=" 306 }, 307 "kapptemplate": { 308 + "version": "25.04.0", 309 + "url": "mirror://kde/stable/release-service/25.04.0/src/kapptemplate-25.04.0.tar.xz", 310 + "hash": "sha256-D/Hb+KMYkoOo+HgdloouqW2XNK045TEt7WAX+lUww8w=" 311 }, 312 "kasts": { 313 + "version": "25.04.0", 314 + "url": "mirror://kde/stable/release-service/25.04.0/src/kasts-25.04.0.tar.xz", 315 + "hash": "sha256-SeCYPPcNF+F3ElXAMh10YCxU4oz30U0xQyhtmiLImP4=" 316 }, 317 "kate": { 318 + "version": "25.04.0", 319 + "url": "mirror://kde/stable/release-service/25.04.0/src/kate-25.04.0.tar.xz", 320 + "hash": "sha256-9uDk2lakvwOR2INjvr4/hoHKA35uKeCVHDlifjKZJxI=" 321 }, 322 "katomic": { 323 + "version": "25.04.0", 324 + "url": "mirror://kde/stable/release-service/25.04.0/src/katomic-25.04.0.tar.xz", 325 + "hash": "sha256-z+0oa/BhoC+3ac5Jc9og4nIYpXkWVw4f2LXT6IZFZjU=" 326 }, 327 "kbackup": { 328 + "version": "25.04.0", 329 + "url": "mirror://kde/stable/release-service/25.04.0/src/kbackup-25.04.0.tar.xz", 330 + "hash": "sha256-WIffFKUgRtSeOAzJw//DtF9TDX1ntYfkUsoPPS+VY84=" 331 }, 332 "kblackbox": { 333 + "version": "25.04.0", 334 + "url": "mirror://kde/stable/release-service/25.04.0/src/kblackbox-25.04.0.tar.xz", 335 + "hash": "sha256-nJYE11AcDWBCvbYY+zXt/b2PGQdud2wKiAyGoWNAQa4=" 336 }, 337 "kblocks": { 338 + "version": "25.04.0", 339 + "url": "mirror://kde/stable/release-service/25.04.0/src/kblocks-25.04.0.tar.xz", 340 + "hash": "sha256-DKR2HWFqNjfri1NtL/WBs7NZzbe2KchfbM+kHqe+UVk=" 341 }, 342 "kbounce": { 343 + "version": "25.04.0", 344 + "url": "mirror://kde/stable/release-service/25.04.0/src/kbounce-25.04.0.tar.xz", 345 + "hash": "sha256-EkWBSdNgSNQ4esJ0o6gT0FHBRBXpt6xGTnYSEYnluc0=" 346 }, 347 "kbreakout": { 348 + "version": "25.04.0", 349 + "url": "mirror://kde/stable/release-service/25.04.0/src/kbreakout-25.04.0.tar.xz", 350 + "hash": "sha256-IHHLed5Oxzefuw27/J/crqZB9Y/hVNFib+A4rs72CwM=" 351 }, 352 "kbruch": { 353 + "version": "25.04.0", 354 + "url": "mirror://kde/stable/release-service/25.04.0/src/kbruch-25.04.0.tar.xz", 355 + "hash": "sha256-YIh0xrcW5CAh74wM4g/LdTZZHq8gKC/rV3qd0nndhqs=" 356 }, 357 "kcachegrind": { 358 + "version": "25.04.0", 359 + "url": "mirror://kde/stable/release-service/25.04.0/src/kcachegrind-25.04.0.tar.xz", 360 + "hash": "sha256-m1yKH5fo3Ymfho/sAjbivdVdPgBk8acRnZtUgfL1hnI=" 361 }, 362 "kcalc": { 363 + "version": "25.04.0", 364 + "url": "mirror://kde/stable/release-service/25.04.0/src/kcalc-25.04.0.tar.xz", 365 + "hash": "sha256-o0ZOoYVi9ZniC5rDBMRlh1aHhgnjf5hFpJ9T5/NueR4=" 366 }, 367 "kcalutils": { 368 + "version": "25.04.0", 369 + "url": "mirror://kde/stable/release-service/25.04.0/src/kcalutils-25.04.0.tar.xz", 370 + "hash": "sha256-9JDrcXBJoXB32+UnLdk3JR2GmncZhiMjAXrLOYINOb0=" 371 }, 372 "kcharselect": { 373 + "version": "25.04.0", 374 + "url": "mirror://kde/stable/release-service/25.04.0/src/kcharselect-25.04.0.tar.xz", 375 + "hash": "sha256-TeU80JkpHgRs9HmHhojNJomn5/nuJ1UNmwNwMyPKtKQ=" 376 }, 377 "kclock": { 378 + "version": "25.04.0", 379 + "url": "mirror://kde/stable/release-service/25.04.0/src/kclock-25.04.0.tar.xz", 380 + "hash": "sha256-JIlTBbFXbYDLZTRzU+sKEq8of5jvzEZZjx6QzYcafM0=" 381 }, 382 "kcolorchooser": { 383 + "version": "25.04.0", 384 + "url": "mirror://kde/stable/release-service/25.04.0/src/kcolorchooser-25.04.0.tar.xz", 385 + "hash": "sha256-C6WVrXen1HlwsjCL8yGVmJ8G4Gx+nBBcQ2grJdE0kTU=" 386 }, 387 "kcron": { 388 + "version": "25.04.0", 389 + "url": "mirror://kde/stable/release-service/25.04.0/src/kcron-25.04.0.tar.xz", 390 + "hash": "sha256-VlxAmvF9p+I5ixx+DFABa9HMdPbCGIg3R1aTQy7cDJM=" 391 }, 392 "kde-dev-scripts": { 393 + "version": "25.04.0", 394 + "url": "mirror://kde/stable/release-service/25.04.0/src/kde-dev-scripts-25.04.0.tar.xz", 395 + "hash": "sha256-pyZPucf5+ggWniPOb4l2UIMnwSsi8OWB8hu9Wr1IXZ0=" 396 }, 397 "kde-dev-utils": { 398 + "version": "25.04.0", 399 + "url": "mirror://kde/stable/release-service/25.04.0/src/kde-dev-utils-25.04.0.tar.xz", 400 + "hash": "sha256-ZM8quFcNmrkE4blRQZDwuvm85dohMsrvDAVlzn2mSNA=" 401 }, 402 "kde-inotify-survey": { 403 + "version": "25.04.0", 404 + "url": "mirror://kde/stable/release-service/25.04.0/src/kde-inotify-survey-25.04.0.tar.xz", 405 + "hash": "sha256-ub1Jpw90c+B/+p69gaZ0IZwKrG8LIeaAWquwHdwk3Pg=" 406 }, 407 "kdebugsettings": { 408 + "version": "25.04.0", 409 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdebugsettings-25.04.0.tar.xz", 410 + "hash": "sha256-88OxI1bM5liCRRdd0gjFnM5Vxa0us0aMfcs+QopyDzg=" 411 }, 412 "kdeconnect-kde": { 413 + "version": "25.04.0", 414 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdeconnect-kde-25.04.0.tar.xz", 415 + "hash": "sha256-FEpl7XQd03vsTjBwPJOfSbi+zbUQdb1XAtet7ekdXKg=" 416 }, 417 "kdeedu-data": { 418 + "version": "25.04.0", 419 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdeedu-data-25.04.0.tar.xz", 420 + "hash": "sha256-adEYhhECnNCqpLVKurPRi35Br/TfPJPxDzhmVzx+pyk=" 421 }, 422 "kdegraphics-mobipocket": { 423 + "version": "25.04.0", 424 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdegraphics-mobipocket-25.04.0.tar.xz", 425 + "hash": "sha256-vM/Wnj2/B5ox4G0/9a6dsfxu8AUlFjrxYubMEG8OkHk=" 426 }, 427 "kdegraphics-thumbnailers": { 428 + "version": "25.04.0", 429 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdegraphics-thumbnailers-25.04.0.tar.xz", 430 + "hash": "sha256-8szI+tGeU3AZiQ88Fg6f1abwn5NWZbUxsrJ/YKMU2+c=" 431 }, 432 "kdenetwork-filesharing": { 433 + "version": "25.04.0", 434 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdenetwork-filesharing-25.04.0.tar.xz", 435 + "hash": "sha256-j5Hr2zZnff64UijdHQ5RmJrOPpDbtqUaGrC4Do2GuZk=" 436 }, 437 "kdenlive": { 438 + "version": "25.04.0", 439 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdenlive-25.04.0.tar.xz", 440 + "hash": "sha256-PwfiPl5YRBrNAridlpszlAmU2dGoqABrFeYetXWr1Rk=" 441 }, 442 "kdepim-addons": { 443 + "version": "25.04.0", 444 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdepim-addons-25.04.0.tar.xz", 445 + "hash": "sha256-odxwbLoeg2h7gEVUvDQdtninHYBUA2SuE9D2xC8HNuE=" 446 }, 447 "kdepim-runtime": { 448 + "version": "25.04.0", 449 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdepim-runtime-25.04.0.tar.xz", 450 + "hash": "sha256-kvh1mx8dPMXGaBtRp3B514rBAOHdkWXOZBZ11hmkKpI=" 451 }, 452 "kdesdk-kio": { 453 + "version": "25.04.0", 454 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdesdk-kio-25.04.0.tar.xz", 455 + "hash": "sha256-jCIDHIcKgrv0+63WtiLZKny8qhwZF+aXWlCp2RFbfx0=" 456 }, 457 "kdesdk-thumbnailers": { 458 + "version": "25.04.0", 459 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdesdk-thumbnailers-25.04.0.tar.xz", 460 + "hash": "sha256-8W2iNz5wPIi1frMJT+H+vahdXVo9ei5f3lD9Z0dJ3ng=" 461 }, 462 "kdev-php": { 463 + "version": "25.04.0", 464 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdev-php-25.04.0.tar.xz", 465 + "hash": "sha256-dZuUJJMnnOPv2PXaWC1fI9YZ6d12UKMpQQRAJY2gYyE=" 466 }, 467 "kdev-python": { 468 + "version": "25.04.0", 469 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdev-python-25.04.0.tar.xz", 470 + "hash": "sha256-f2KDAmhvn1FgfTkmeWS2+Z3Wvrf2oluXzxNNwxbiwfY=" 471 }, 472 "kdevelop": { 473 + "version": "25.04.0", 474 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdevelop-25.04.0.tar.xz", 475 + "hash": "sha256-S+NV1tJCaluK6jX8X/wCLgs5TlWNIlojIVgbDVRSc20=" 476 }, 477 "kdf": { 478 + "version": "25.04.0", 479 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdf-25.04.0.tar.xz", 480 + "hash": "sha256-XAxJ/i1ffKCfBacO3GdgGd0Zla23ILDy1RZsZ3oBJTA=" 481 }, 482 "kdialog": { 483 + "version": "25.04.0", 484 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdialog-25.04.0.tar.xz", 485 + "hash": "sha256-Vj2zg82cIMOHw0uSB1X1LhRoT4vKKh997s92weDg1jk=" 486 }, 487 "kdiamond": { 488 + "version": "25.04.0", 489 + "url": "mirror://kde/stable/release-service/25.04.0/src/kdiamond-25.04.0.tar.xz", 490 + "hash": "sha256-BDKO7pUAsChcef8Q+1GHFLotmmstLpqZH1/XyVx7Tqg=" 491 }, 492 "keditbookmarks": { 493 + "version": "25.04.0", 494 + "url": "mirror://kde/stable/release-service/25.04.0/src/keditbookmarks-25.04.0.tar.xz", 495 + "hash": "sha256-AHuiPlIakssc6VJpjbCuLFg6lNQo7Q/qSvSeYKSKM90=" 496 }, 497 "keysmith": { 498 + "version": "25.04.0", 499 + "url": "mirror://kde/stable/release-service/25.04.0/src/keysmith-25.04.0.tar.xz", 500 + "hash": "sha256-AgHx35avF6+lqfC6P9Ll9YG154nmNPKYdQcfBmFlby4=" 501 }, 502 "kfind": { 503 + "version": "25.04.0", 504 + "url": "mirror://kde/stable/release-service/25.04.0/src/kfind-25.04.0.tar.xz", 505 + "hash": "sha256-1T48om8FCDIAHNpvmogDJx4eVJabDTHfqKkk0a9UvQU=" 506 }, 507 "kfourinline": { 508 + "version": "25.04.0", 509 + "url": "mirror://kde/stable/release-service/25.04.0/src/kfourinline-25.04.0.tar.xz", 510 + "hash": "sha256-FJ6ipgr1JKt3nJdmK+wNVG7gARYzmlf5IrbBtZVsjRU=" 511 }, 512 "kgeography": { 513 + "version": "25.04.0", 514 + "url": "mirror://kde/stable/release-service/25.04.0/src/kgeography-25.04.0.tar.xz", 515 + "hash": "sha256-qLuk5NH3wVQXwLJQKI+fvlyNqbSRm+WOM1Z63GSS0bA=" 516 }, 517 "kget": { 518 + "version": "25.04.0", 519 + "url": "mirror://kde/stable/release-service/25.04.0/src/kget-25.04.0.tar.xz", 520 + "hash": "sha256-VgoFTZqt9POaWMbaowlPSzK7bzq+b/htG9Qhtb+vMMo=" 521 }, 522 "kgoldrunner": { 523 + "version": "25.04.0", 524 + "url": "mirror://kde/stable/release-service/25.04.0/src/kgoldrunner-25.04.0.tar.xz", 525 + "hash": "sha256-W87KVVbGyGAFEsqImzmdSlZwaDePXwsHza69l6ZIvx4=" 526 }, 527 "kgpg": { 528 + "version": "25.04.0", 529 + "url": "mirror://kde/stable/release-service/25.04.0/src/kgpg-25.04.0.tar.xz", 530 + "hash": "sha256-GgVZTU6LzyrTkfSMRvJTZbGajptuLCvMHTqI/SlI6QY=" 531 }, 532 "kgraphviewer": { 533 + "version": "25.04.0", 534 + "url": "mirror://kde/stable/release-service/25.04.0/src/kgraphviewer-25.04.0.tar.xz", 535 + "hash": "sha256-Sf8nZdMUR9nLPWnuphcdeXWCPAHc8cdatboj6Qx7ngY=" 536 }, 537 "khangman": { 538 + "version": "25.04.0", 539 + "url": "mirror://kde/stable/release-service/25.04.0/src/khangman-25.04.0.tar.xz", 540 + "hash": "sha256-7xtk1n+C2oBj2fM84wVB8eqvzE32RGBbd9dm7C6HarI=" 541 }, 542 "khealthcertificate": { 543 + "version": "25.04.0", 544 + "url": "mirror://kde/stable/release-service/25.04.0/src/khealthcertificate-25.04.0.tar.xz", 545 + "hash": "sha256-ANWJ1m7mbDZ2X8NsN+CyxRGYNgl9phIhyFm/20j+D3U=" 546 }, 547 "khelpcenter": { 548 + "version": "25.04.0", 549 + "url": "mirror://kde/stable/release-service/25.04.0/src/khelpcenter-25.04.0.tar.xz", 550 + "hash": "sha256-2Xo7I87cOStelcK1f1A1VvZ97WQ4KmJNzODaH5XDIg8=" 551 }, 552 "kidentitymanagement": { 553 + "version": "25.04.0", 554 + "url": "mirror://kde/stable/release-service/25.04.0/src/kidentitymanagement-25.04.0.tar.xz", 555 + "hash": "sha256-5r0CY1z0df3z3+pAvA9c4RCcw7wx1k4NWEQXdRBoiwk=" 556 }, 557 "kig": { 558 + "version": "25.04.0", 559 + "url": "mirror://kde/stable/release-service/25.04.0/src/kig-25.04.0.tar.xz", 560 + "hash": "sha256-FTFeAzMYLz2VYTb/dhjvJ+wqWWxWrcJtFCai6Y2597M=" 561 }, 562 "kigo": { 563 + "version": "25.04.0", 564 + "url": "mirror://kde/stable/release-service/25.04.0/src/kigo-25.04.0.tar.xz", 565 + "hash": "sha256-OHQneu01hrAbJYpsMX+0TCWVxeMKtSmhWHOqXH7WSb4=" 566 }, 567 "killbots": { 568 + "version": "25.04.0", 569 + "url": "mirror://kde/stable/release-service/25.04.0/src/killbots-25.04.0.tar.xz", 570 + "hash": "sha256-6jEbyBR5880WCie6HfONbCSr10crizrKfYEYz4UdMsA=" 571 }, 572 "kimagemapeditor": { 573 + "version": "25.04.0", 574 + "url": "mirror://kde/stable/release-service/25.04.0/src/kimagemapeditor-25.04.0.tar.xz", 575 + "hash": "sha256-2tCr2aLayLHGGbeu4xsqBNIhJYiXRZqdkyMcKssa5A0=" 576 }, 577 "kimap": { 578 + "version": "25.04.0", 579 + "url": "mirror://kde/stable/release-service/25.04.0/src/kimap-25.04.0.tar.xz", 580 + "hash": "sha256-fKBbqIlmpXI/Z+SNERZ+3HERP2F55R7T8RJoByeRao8=" 581 }, 582 "kio-admin": { 583 + "version": "25.04.0", 584 + "url": "mirror://kde/stable/release-service/25.04.0/src/kio-admin-25.04.0.tar.xz", 585 + "hash": "sha256-ncSlOHVI7MKE8q7zUEnBuABZWenYkk8KvAahiFHXmhY=" 586 }, 587 "kio-extras": { 588 + "version": "25.04.0", 589 + "url": "mirror://kde/stable/release-service/25.04.0/src/kio-extras-25.04.0.tar.xz", 590 + "hash": "sha256-fIfcEH7TdfXf7XT/r4aiWZDBMeU5pHibeLpwdRsv76w=" 591 }, 592 "kio-gdrive": { 593 + "version": "25.04.0", 594 + "url": "mirror://kde/stable/release-service/25.04.0/src/kio-gdrive-25.04.0.tar.xz", 595 + "hash": "sha256-9mR/fm517sddD/jpTmpJvZcmVfF2Di+iRhzyBgYuCyc=" 596 }, 597 "kio-zeroconf": { 598 + "version": "25.04.0", 599 + "url": "mirror://kde/stable/release-service/25.04.0/src/kio-zeroconf-25.04.0.tar.xz", 600 + "hash": "sha256-6EVUOprXRpFtXC+bA5jM6Bmz+to21WEDAjnxIJKsD0M=" 601 }, 602 "kirigami-gallery": { 603 + "version": "25.04.0", 604 + "url": "mirror://kde/stable/release-service/25.04.0/src/kirigami-gallery-25.04.0.tar.xz", 605 + "hash": "sha256-06vD2xMsbkGqg+4o7fkuBm4koLASMYBBCkQo8v0hpVU=" 606 }, 607 "kiriki": { 608 + "version": "25.04.0", 609 + "url": "mirror://kde/stable/release-service/25.04.0/src/kiriki-25.04.0.tar.xz", 610 + "hash": "sha256-pr5Chj0zRBES576W7S6/lT4SzguEpbOwIFriyNezn64=" 611 }, 612 "kiten": { 613 + "version": "25.04.0", 614 + "url": "mirror://kde/stable/release-service/25.04.0/src/kiten-25.04.0.tar.xz", 615 + "hash": "sha256-ucefwSciHEQvIWfQDzQQMZKA54eyzCqqTC6TDXNRAHw=" 616 }, 617 "kitinerary": { 618 + "version": "25.04.0", 619 + "url": "mirror://kde/stable/release-service/25.04.0/src/kitinerary-25.04.0.tar.xz", 620 + "hash": "sha256-jameNSR81CTb6u4DUZYVSQq58fCuWP0k97ReNYsjC74=" 621 }, 622 "kjournald": { 623 + "version": "25.04.0", 624 + "url": "mirror://kde/stable/release-service/25.04.0/src/kjournald-25.04.0.tar.xz", 625 + "hash": "sha256-qqr9Y6LX/Y/WboqDfXGAlHnkpc4g1465rpYGqEU/R6c=" 626 }, 627 "kjumpingcube": { 628 + "version": "25.04.0", 629 + "url": "mirror://kde/stable/release-service/25.04.0/src/kjumpingcube-25.04.0.tar.xz", 630 + "hash": "sha256-nm++p4iPGSJADIj2qFCLtACc7HjAK6NpFHXNcfpaGhU=" 631 }, 632 "kldap": { 633 + "version": "25.04.0", 634 + "url": "mirror://kde/stable/release-service/25.04.0/src/kldap-25.04.0.tar.xz", 635 + "hash": "sha256-5D251kfnQq1onYu/cSzM6nE9epLA2wACklHraj3SDz0=" 636 }, 637 "kleopatra": { 638 + "version": "25.04.0", 639 + "url": "mirror://kde/stable/release-service/25.04.0/src/kleopatra-25.04.0.tar.xz", 640 + "hash": "sha256-vp+N4tMnCqsZTVmFvJiHW01+E2+EaSwP02dHkP2B/ko=" 641 }, 642 "klettres": { 643 + "version": "25.04.0", 644 + "url": "mirror://kde/stable/release-service/25.04.0/src/klettres-25.04.0.tar.xz", 645 + "hash": "sha256-tQ+duBynqPWWYYal4NtjgRkMu8/GXVutE7x1Nt36nU0=" 646 }, 647 "klickety": { 648 + "version": "25.04.0", 649 + "url": "mirror://kde/stable/release-service/25.04.0/src/klickety-25.04.0.tar.xz", 650 + "hash": "sha256-pr+vOoPAKcbrkLs88OQPl9431D8/1DtOXOg+3pYeT2s=" 651 }, 652 "klines": { 653 + "version": "25.04.0", 654 + "url": "mirror://kde/stable/release-service/25.04.0/src/klines-25.04.0.tar.xz", 655 + "hash": "sha256-k+u2rNnjt38nKXvyg85AbuGKrcaUiY1OkcL638FvDXc=" 656 }, 657 "kmag": { 658 + "version": "25.04.0", 659 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmag-25.04.0.tar.xz", 660 + "hash": "sha256-hTq6LZjsDEbSNPz3LHF7jkTlKhwAg3JMkQAvKQLqxRQ=" 661 }, 662 "kmahjongg": { 663 + "version": "25.04.0", 664 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmahjongg-25.04.0.tar.xz", 665 + "hash": "sha256-IgtNd41CR2Ui+iw1vxkKW6CXB3o2R2FIGEwsHROxnTM=" 666 }, 667 "kmail": { 668 + "version": "25.04.0", 669 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmail-25.04.0.tar.xz", 670 + "hash": "sha256-uVfkfYCoiRY0clchHMglBBdlOjQfJbVG+8rQhzlvWXU=" 671 }, 672 "kmail-account-wizard": { 673 + "version": "25.04.0", 674 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmail-account-wizard-25.04.0.tar.xz", 675 + "hash": "sha256-ecbfGEsdM2wOBvgQ3Gfi41A58bVM7nwWH9wp7Klea8Y=" 676 }, 677 "kmailtransport": { 678 + "version": "25.04.0", 679 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmailtransport-25.04.0.tar.xz", 680 + "hash": "sha256-oVkPvGCdEh7kK/FR/HJ/icKAKzMqhdHghh/otG1IOIM=" 681 }, 682 "kmbox": { 683 + "version": "25.04.0", 684 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmbox-25.04.0.tar.xz", 685 + "hash": "sha256-pMx3aPHtcoM4k2UBqEyWwnPz2OWgR7KdNNqAvGCzFEU=" 686 }, 687 "kmime": { 688 + "version": "25.04.0", 689 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmime-25.04.0.tar.xz", 690 + "hash": "sha256-eo5Bdu8owRfVWTa3A7tUHsbAQQxS3o5AGCrqiWXiG6Q=" 691 }, 692 "kmines": { 693 + "version": "25.04.0", 694 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmines-25.04.0.tar.xz", 695 + "hash": "sha256-WHanFIFUZ+o91m1LhfRfrEV3aJtVHNqCUCy8cj0whGM=" 696 }, 697 "kmix": { 698 + "version": "25.04.0", 699 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmix-25.04.0.tar.xz", 700 + "hash": "sha256-3XKbd0M558WpUCiqVbYpNAepDqwfVtaAXLzuX0CQuf8=" 701 }, 702 "kmousetool": { 703 + "version": "25.04.0", 704 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmousetool-25.04.0.tar.xz", 705 + "hash": "sha256-pJhx90gE9YKuFj/Ssb8fgjHAnVcc1O3ZTy8lEoJPjN8=" 706 }, 707 "kmouth": { 708 + "version": "25.04.0", 709 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmouth-25.04.0.tar.xz", 710 + "hash": "sha256-PEukX/Cs9GQFW23KjintZ13FjcjnVfxF/fJfKWht7fQ=" 711 }, 712 "kmplot": { 713 + "version": "25.04.0", 714 + "url": "mirror://kde/stable/release-service/25.04.0/src/kmplot-25.04.0.tar.xz", 715 + "hash": "sha256-WOp5dNxeVmuNn2lt3V0M6DS2mR4wTWUMFGfTg4mbf/s=" 716 }, 717 "knavalbattle": { 718 + "version": "25.04.0", 719 + "url": "mirror://kde/stable/release-service/25.04.0/src/knavalbattle-25.04.0.tar.xz", 720 + "hash": "sha256-IepNixZ372+k21wc2qOOAnadjS+IjbwqVbt8oYCtVTU=" 721 }, 722 "knetwalk": { 723 + "version": "25.04.0", 724 + "url": "mirror://kde/stable/release-service/25.04.0/src/knetwalk-25.04.0.tar.xz", 725 + "hash": "sha256-fVLLks9ux+Z/KLhkiFYuvSPbaVlneZWx2XzqdzozO7U=" 726 }, 727 "knights": { 728 + "version": "25.04.0", 729 + "url": "mirror://kde/stable/release-service/25.04.0/src/knights-25.04.0.tar.xz", 730 + "hash": "sha256-Hsi0FZsx9zkDyCZni+HD2ZydlSOcCHW5U5eutGNdOXs=" 731 }, 732 "koko": { 733 + "version": "25.04.0", 734 + "url": "mirror://kde/stable/release-service/25.04.0/src/koko-25.04.0.tar.xz", 735 + "hash": "sha256-mzaGQMWmgvb2jMhef47boTmjS5i3WXbpUqel+TdT2KM=" 736 }, 737 "kolf": { 738 + "version": "25.04.0", 739 + "url": "mirror://kde/stable/release-service/25.04.0/src/kolf-25.04.0.tar.xz", 740 + "hash": "sha256-9Qxb/OO9KenxZZBukkpAAQmtX+jAbEouMVQiSdAOeF0=" 741 }, 742 "kollision": { 743 + "version": "25.04.0", 744 + "url": "mirror://kde/stable/release-service/25.04.0/src/kollision-25.04.0.tar.xz", 745 + "hash": "sha256-qpptrm2+hK6FoMztv5/jbXv5oq6ClPsWSKFFLugvCEI=" 746 }, 747 "kolourpaint": { 748 + "version": "25.04.0", 749 + "url": "mirror://kde/stable/release-service/25.04.0/src/kolourpaint-25.04.0.tar.xz", 750 + "hash": "sha256-D0EsPW+baSergq/AJ6Xqf7xNpmfvBo1Ty6fFmTGssGY=" 751 }, 752 "kompare": { 753 + "version": "25.04.0", 754 + "url": "mirror://kde/stable/release-service/25.04.0/src/kompare-25.04.0.tar.xz", 755 + "hash": "sha256-bO3gAj1+jKVWkMswLxMFBkm1fbuqXqVBAFmsDKz4Eh4=" 756 }, 757 "kongress": { 758 + "version": "25.04.0", 759 + "url": "mirror://kde/stable/release-service/25.04.0/src/kongress-25.04.0.tar.xz", 760 + "hash": "sha256-XDj4Vtm/gWOLdkErd3QKRxa2XyqHmPVs5Q5sA7XFVHA=" 761 }, 762 "konqueror": { 763 + "version": "25.04.0", 764 + "url": "mirror://kde/stable/release-service/25.04.0/src/konqueror-25.04.0.tar.xz", 765 + "hash": "sha256-y2LufTOlMdSER1VrD+qIo0YYuWnJT5XX8AnFxb2amkU=" 766 }, 767 "konquest": { 768 + "version": "25.04.0", 769 + "url": "mirror://kde/stable/release-service/25.04.0/src/konquest-25.04.0.tar.xz", 770 + "hash": "sha256-hqODiJ1vk6OG6dIgjp1lIdgKvbIrZcSRA7EZDMToRM8=" 771 }, 772 "konsole": { 773 + "version": "25.04.0", 774 + "url": "mirror://kde/stable/release-service/25.04.0/src/konsole-25.04.0.tar.xz", 775 + "hash": "sha256-0ybbpXsXMx5QMO1rq96h0zh2vAEfnJ+qAp+WWuc6edE=" 776 }, 777 "kontact": { 778 + "version": "25.04.0", 779 + "url": "mirror://kde/stable/release-service/25.04.0/src/kontact-25.04.0.tar.xz", 780 + "hash": "sha256-PrXDvqyWeqQkYHj6uTxFu6brmrg4NJ2Kh7bWYCZUCek=" 781 }, 782 "kontactinterface": { 783 + "version": "25.04.0", 784 + "url": "mirror://kde/stable/release-service/25.04.0/src/kontactinterface-25.04.0.tar.xz", 785 + "hash": "sha256-/83ycrd7qe9z3IKVBMYNmYAROu2byIMCVsjewQ41HFQ=" 786 }, 787 "kontrast": { 788 + "version": "25.04.0", 789 + "url": "mirror://kde/stable/release-service/25.04.0/src/kontrast-25.04.0.tar.xz", 790 + "hash": "sha256-bQRIuugrVRBWtiiBus+fsX6bPjuY+gAr4MkDA+bWMgw=" 791 }, 792 "konversation": { 793 + "version": "25.04.0", 794 + "url": "mirror://kde/stable/release-service/25.04.0/src/konversation-25.04.0.tar.xz", 795 + "hash": "sha256-ktHfx8uvqeHJ46QmrE6A4o30oVfgjwdvBlTDzm6YlNQ=" 796 }, 797 "kopeninghours": { 798 + "version": "25.04.0", 799 + "url": "mirror://kde/stable/release-service/25.04.0/src/kopeninghours-25.04.0.tar.xz", 800 + "hash": "sha256-shG83S04speVewaUx0+vV/qJvGpaphDdJFgoaa+koxo=" 801 }, 802 "korganizer": { 803 + "version": "25.04.0", 804 + "url": "mirror://kde/stable/release-service/25.04.0/src/korganizer-25.04.0.tar.xz", 805 + "hash": "sha256-9aPpo9hqTWWT097libswJ06GNPEG5PgeH2GVXRuBjmM=" 806 }, 807 "kosmindoormap": { 808 + "version": "25.04.0", 809 + "url": "mirror://kde/stable/release-service/25.04.0/src/kosmindoormap-25.04.0.tar.xz", 810 + "hash": "sha256-uFmU2vb3FikoF3SCXgmu4bAUgTqXQe2Ytwuv889Wq1A=" 811 }, 812 "kpat": { 813 + "version": "25.04.0", 814 + "url": "mirror://kde/stable/release-service/25.04.0/src/kpat-25.04.0.tar.xz", 815 + "hash": "sha256-YvU8wlVK/58FHGN6R7roucX9rVc0xAptVwPaq2yjVmk=" 816 }, 817 "kpimtextedit": { 818 + "version": "25.04.0", 819 + "url": "mirror://kde/stable/release-service/25.04.0/src/kpimtextedit-25.04.0.tar.xz", 820 + "hash": "sha256-O6o3lIifDJu8hixdcCHqfExZUo+fse5MBTYRMleD6ck=" 821 }, 822 "kpkpass": { 823 + "version": "25.04.0", 824 + "url": "mirror://kde/stable/release-service/25.04.0/src/kpkpass-25.04.0.tar.xz", 825 + "hash": "sha256-Ob3hgx9wBVXImsBiFFELnx5Y8vXlg27BEZawf/H2IWo=" 826 }, 827 "kpmcore": { 828 + "version": "25.04.0", 829 + "url": "mirror://kde/stable/release-service/25.04.0/src/kpmcore-25.04.0.tar.xz", 830 + "hash": "sha256-lGOa/RRpPv0/WPvuVmVUKyov7UDF77fOqGfsq0VmoRo=" 831 }, 832 "kpublictransport": { 833 + "version": "25.04.0", 834 + "url": "mirror://kde/stable/release-service/25.04.0/src/kpublictransport-25.04.0.tar.xz", 835 + "hash": "sha256-ITTlHclWvUPOZz6FfNYsFa2YOyymipyhpn3tLOLANfQ=" 836 }, 837 "kqtquickcharts": { 838 + "version": "25.04.0", 839 + "url": "mirror://kde/stable/release-service/25.04.0/src/kqtquickcharts-25.04.0.tar.xz", 840 + "hash": "sha256-F8G6JOn5lmkXHwr/8n48bkLHZaQWsP2+mr94YRyCND0=" 841 }, 842 "krdc": { 843 + "version": "25.04.0", 844 + "url": "mirror://kde/stable/release-service/25.04.0/src/krdc-25.04.0.tar.xz", 845 + "hash": "sha256-yA0AjNQ3DNef+Yf+eS74oQ2l6ZSt24TohDQ6RtFLPfQ=" 846 }, 847 "krecorder": { 848 + "version": "25.04.0", 849 + "url": "mirror://kde/stable/release-service/25.04.0/src/krecorder-25.04.0.tar.xz", 850 + "hash": "sha256-b590HRotmpX2y7607VaDuqphJdwADbD6Rc+YwMaXYEo=" 851 }, 852 "kreversi": { 853 + "version": "25.04.0", 854 + "url": "mirror://kde/stable/release-service/25.04.0/src/kreversi-25.04.0.tar.xz", 855 + "hash": "sha256-Xt52n5EiSDwNy3o+zUv8DWVB/Yg31uZI73Ycl1zMkAU=" 856 }, 857 "krfb": { 858 + "version": "25.04.0", 859 + "url": "mirror://kde/stable/release-service/25.04.0/src/krfb-25.04.0.tar.xz", 860 + "hash": "sha256-tP1Tad58fxNd1BowTLhlpf0yckg2Sc85xQghv4z+B1E=" 861 }, 862 "kruler": { 863 + "version": "25.04.0", 864 + "url": "mirror://kde/stable/release-service/25.04.0/src/kruler-25.04.0.tar.xz", 865 + "hash": "sha256-eeSqtYqS/8uxOBK+lr3jBrYUD8gfc4/AR1eRHFOLhEM=" 866 }, 867 "ksanecore": { 868 + "version": "25.04.0", 869 + "url": "mirror://kde/stable/release-service/25.04.0/src/ksanecore-25.04.0.tar.xz", 870 + "hash": "sha256-4cYNbirPZpLKviH9cLRv0y2PWu72t2nC/691QB4MvKQ=" 871 }, 872 "kshisen": { 873 + "version": "25.04.0", 874 + "url": "mirror://kde/stable/release-service/25.04.0/src/kshisen-25.04.0.tar.xz", 875 + "hash": "sha256-X4NfRCBNV4hwD8SVXkuHufvnKJymRm88nOKj/DEHPIs=" 876 }, 877 "ksirk": { 878 + "version": "25.04.0", 879 + "url": "mirror://kde/stable/release-service/25.04.0/src/ksirk-25.04.0.tar.xz", 880 + "hash": "sha256-ax3HBpl/pqwlFntQpsSdu/+bj0C6LKDifEwF+D+0KVg=" 881 }, 882 "ksmtp": { 883 + "version": "25.04.0", 884 + "url": "mirror://kde/stable/release-service/25.04.0/src/ksmtp-25.04.0.tar.xz", 885 + "hash": "sha256-KEEOz5qGu7eYh1hT0W5yJ0uoWWL3pUAW6NaqD9yrTw0=" 886 }, 887 "ksnakeduel": { 888 + "version": "25.04.0", 889 + "url": "mirror://kde/stable/release-service/25.04.0/src/ksnakeduel-25.04.0.tar.xz", 890 + "hash": "sha256-IJe8cXmqLx7x+HD5VrcXO8efrgKEcOTNf4IcR7+B+Ww=" 891 }, 892 "kspaceduel": { 893 + "version": "25.04.0", 894 + "url": "mirror://kde/stable/release-service/25.04.0/src/kspaceduel-25.04.0.tar.xz", 895 + "hash": "sha256-TFGx/fAJDAvHDSgZIlX5SeATvIeI3PNh+uQu75Q4HlI=" 896 }, 897 "ksquares": { 898 + "version": "25.04.0", 899 + "url": "mirror://kde/stable/release-service/25.04.0/src/ksquares-25.04.0.tar.xz", 900 + "hash": "sha256-1gTCnWG0pgmfdTGHMBSsJbHoipApHQNjb7+OZMlgNlw=" 901 }, 902 "ksudoku": { 903 + "version": "25.04.0", 904 + "url": "mirror://kde/stable/release-service/25.04.0/src/ksudoku-25.04.0.tar.xz", 905 + "hash": "sha256-E0pBWCGio/fJmkclGqmIVFCB2mvXyyNWw1DQVLQpDFY=" 906 }, 907 "ksystemlog": { 908 + "version": "25.04.0", 909 + "url": "mirror://kde/stable/release-service/25.04.0/src/ksystemlog-25.04.0.tar.xz", 910 + "hash": "sha256-Cwg3IRSMzoDBNDezrB0vaDdZum3KYLyaZRYQwd9z63Y=" 911 }, 912 "kteatime": { 913 + "version": "25.04.0", 914 + "url": "mirror://kde/stable/release-service/25.04.0/src/kteatime-25.04.0.tar.xz", 915 + "hash": "sha256-qH2OYM284+9SdC2Aanu1EVvOYN+w5EOf3mp3g43Dkdk=" 916 }, 917 "ktimer": { 918 + "version": "25.04.0", 919 + "url": "mirror://kde/stable/release-service/25.04.0/src/ktimer-25.04.0.tar.xz", 920 + "hash": "sha256-zbsHzOEFZJQ/pvEjr3gqbCqELJu5jEo/jB8Nrn5wzak=" 921 }, 922 "ktnef": { 923 + "version": "25.04.0", 924 + "url": "mirror://kde/stable/release-service/25.04.0/src/ktnef-25.04.0.tar.xz", 925 + "hash": "sha256-A33YMrOOn8ejliiWZPTqGY8ykJJ+mlfyYPnN57VkSBQ=" 926 }, 927 "ktorrent": { 928 + "version": "25.04.0", 929 + "url": "mirror://kde/stable/release-service/25.04.0/src/ktorrent-25.04.0.tar.xz", 930 + "hash": "sha256-4CvGd7XY5yhe7P8F4sUR2W9svt4anQaXXhwnYzE5y1M=" 931 }, 932 "ktouch": { 933 + "version": "25.04.0", 934 + "url": "mirror://kde/stable/release-service/25.04.0/src/ktouch-25.04.0.tar.xz", 935 + "hash": "sha256-YILL9CDAs1vLDfFCGtJgHUfJIrme42Ss7HHmfOHOR3U=" 936 }, 937 "ktrip": { 938 + "version": "25.04.0", 939 + "url": "mirror://kde/stable/release-service/25.04.0/src/ktrip-25.04.0.tar.xz", 940 + "hash": "sha256-5lX0C6R93ACJeZBSR9DiPAUJ0eEdhLFORcQYPAHY0K4=" 941 }, 942 "ktuberling": { 943 + "version": "25.04.0", 944 + "url": "mirror://kde/stable/release-service/25.04.0/src/ktuberling-25.04.0.tar.xz", 945 + "hash": "sha256-VFYUnVtfukvbArJqGR47UMWu0FjNYNzi/tLsEHcWtkE=" 946 }, 947 "kturtle": { 948 + "version": "25.04.0", 949 + "url": "mirror://kde/stable/release-service/25.04.0/src/kturtle-25.04.0.tar.xz", 950 + "hash": "sha256-oT7+PxKQfNEvExICM9nSWcOpvPMBV8UwallRMKwrqNM=" 951 }, 952 "kubrick": { 953 + "version": "25.04.0", 954 + "url": "mirror://kde/stable/release-service/25.04.0/src/kubrick-25.04.0.tar.xz", 955 + "hash": "sha256-xfr+wfLubUmrOwgHRXXxYNyxBHpiDfmAceBENwfWvqk=" 956 }, 957 "kunifiedpush": { 958 + "version": "25.04.0", 959 + "url": "mirror://kde/stable/release-service/25.04.0/src/kunifiedpush-25.04.0.tar.xz", 960 + "hash": "sha256-HFPGWXCrsPq0yppNINQXXwXwMLsYm3wIrfPRnJFd8EM=" 961 }, 962 "kwalletmanager": { 963 + "version": "25.04.0", 964 + "url": "mirror://kde/stable/release-service/25.04.0/src/kwalletmanager-25.04.0.tar.xz", 965 + "hash": "sha256-dMf0FKXfyuDar6A4B0ENj6AjV/XRHSKUEmoelZg+nWI=" 966 }, 967 "kwave": { 968 + "version": "25.04.0", 969 + "url": "mirror://kde/stable/release-service/25.04.0/src/kwave-25.04.0.tar.xz", 970 + "hash": "sha256-hko8uXPZYEa7qQnfRhKOenQppyy//Tfs1ZMPs93bWmM=" 971 }, 972 "kweather": { 973 + "version": "25.04.0", 974 + "url": "mirror://kde/stable/release-service/25.04.0/src/kweather-25.04.0.tar.xz", 975 + "hash": "sha256-39+42ZGGsDEfQOrv94BWf0USGq4Occ+2dKStzQapAWI=" 976 }, 977 "kweathercore": { 978 + "version": "25.04.0", 979 + "url": "mirror://kde/stable/release-service/25.04.0/src/kweathercore-25.04.0.tar.xz", 980 + "hash": "sha256-F/II5KEmd48fvReVInksasod1hSgbOTNVFKl/m9nzUw=" 981 }, 982 "kwordquiz": { 983 + "version": "25.04.0", 984 + "url": "mirror://kde/stable/release-service/25.04.0/src/kwordquiz-25.04.0.tar.xz", 985 + "hash": "sha256-DWo5R8TbZrVsakx9/sRtWm6Gtbz3J958M1YTiKbpGoA=" 986 }, 987 "libgravatar": { 988 + "version": "25.04.0", 989 + "url": "mirror://kde/stable/release-service/25.04.0/src/libgravatar-25.04.0.tar.xz", 990 + "hash": "sha256-YilJTmDvL62H61TUYdnTi0cI5v2HSfG2GSkR0SrYe/o=" 991 }, 992 "libkcddb": { 993 + "version": "25.04.0", 994 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkcddb-25.04.0.tar.xz", 995 + "hash": "sha256-C+wME9BNEIIpYkURfFtT8NwKPGyjyDtxaOCvUyedpII=" 996 }, 997 "libkcompactdisc": { 998 + "version": "25.04.0", 999 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkcompactdisc-25.04.0.tar.xz", 1000 + "hash": "sha256-UOHqUv/W0O2DCtm//KevIT1BLbgcBIFLYzsdRO30AVA=" 1001 }, 1002 "libkdcraw": { 1003 + "version": "25.04.0", 1004 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkdcraw-25.04.0.tar.xz", 1005 + "hash": "sha256-8/OX++zGPwpu1ewsNHCwqHVJYzdrnHElo+n1K2do4y4=" 1006 }, 1007 "libkdegames": { 1008 + "version": "25.04.0", 1009 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkdegames-25.04.0.tar.xz", 1010 + "hash": "sha256-aaIbrnQbKOjHnC397jUqfOvJxmWKqlg4jVgbKnpABH8=" 1011 }, 1012 "libkdepim": { 1013 + "version": "25.04.0", 1014 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkdepim-25.04.0.tar.xz", 1015 + "hash": "sha256-w2pQ+FIBpvU5PYluRyv1/plla4x2yujj+s+Hixd2a30=" 1016 }, 1017 "libkeduvocdocument": { 1018 + "version": "25.04.0", 1019 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkeduvocdocument-25.04.0.tar.xz", 1020 + "hash": "sha256-ZozELkfSGHkDP3+/Ez2+DXF9O3iQAZMF0GtLHrNVef0=" 1021 }, 1022 "libkexiv2": { 1023 + "version": "25.04.0", 1024 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkexiv2-25.04.0.tar.xz", 1025 + "hash": "sha256-E4Gl3btCHFHF+fct+PM7qLZJw2J/qfMALB0NK2DJSHk=" 1026 }, 1027 "libkgapi": { 1028 + "version": "25.04.0", 1029 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkgapi-25.04.0.tar.xz", 1030 + "hash": "sha256-VhEb2vle3MQ1JFRGT5ekG+2CRMdStmxyrE7AJmL3mgU=" 1031 }, 1032 "libkleo": { 1033 + "version": "25.04.0", 1034 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkleo-25.04.0.tar.xz", 1035 + "hash": "sha256-fOJHt6P1eIrFJIQbjIoyxTtO5JCTMQuR0p3F2AEMr9g=" 1036 }, 1037 "libkmahjongg": { 1038 + "version": "25.04.0", 1039 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkmahjongg-25.04.0.tar.xz", 1040 + "hash": "sha256-upzjo+pwlBfn+uAtQ79Ye0IRLgGqL7OD6OkBcPHfdUA=" 1041 }, 1042 "libkomparediff2": { 1043 + "version": "25.04.0", 1044 + "url": "mirror://kde/stable/release-service/25.04.0/src/libkomparediff2-25.04.0.tar.xz", 1045 + "hash": "sha256-QMZdcBTIMzAkeZs0TM8TpZUCMcWhB+5gCh9x6KncPBI=" 1046 }, 1047 "libksane": { 1048 + "version": "25.04.0", 1049 + "url": "mirror://kde/stable/release-service/25.04.0/src/libksane-25.04.0.tar.xz", 1050 + "hash": "sha256-kaud1J1EdOvd+fR4rqrFX8hrbnjLdULyqQUEKRmL95o=" 1051 }, 1052 "libksieve": { 1053 + "version": "25.04.0", 1054 + "url": "mirror://kde/stable/release-service/25.04.0/src/libksieve-25.04.0.tar.xz", 1055 + "hash": "sha256-c+jhV2K9vbIWAC2/UzJOcYZeo77MUkYHWfPrBulUTaA=" 1056 }, 1057 "libktorrent": { 1058 + "version": "25.04.0", 1059 + "url": "mirror://kde/stable/release-service/25.04.0/src/libktorrent-25.04.0.tar.xz", 1060 + "hash": "sha256-8vJ/V9UqjIcwbNa4MZBHFjQFAr/Wj2+i9dWuYlDOtGQ=" 1061 }, 1062 "lokalize": { 1063 + "version": "25.04.0", 1064 + "url": "mirror://kde/stable/release-service/25.04.0/src/lokalize-25.04.0.tar.xz", 1065 + "hash": "sha256-RN0r/vtT2KUILzIVoCpNvLFKwgFL8RF8rFrrx6rwlXo=" 1066 }, 1067 "lskat": { 1068 + "version": "25.04.0", 1069 + "url": "mirror://kde/stable/release-service/25.04.0/src/lskat-25.04.0.tar.xz", 1070 + "hash": "sha256-St0LZ3nokqi2Lund/fJzQn2fq0pkjBdNP4Z1oLbrRRY=" 1071 }, 1072 "mailcommon": { 1073 + "version": "25.04.0", 1074 + "url": "mirror://kde/stable/release-service/25.04.0/src/mailcommon-25.04.0.tar.xz", 1075 + "hash": "sha256-WuGGp4srSzIqT/5gmSgSSQ+fG8qgV3SqcgDQycoqXPI=" 1076 }, 1077 "mailimporter": { 1078 + "version": "25.04.0", 1079 + "url": "mirror://kde/stable/release-service/25.04.0/src/mailimporter-25.04.0.tar.xz", 1080 + "hash": "sha256-KGD7WJH+W9pKYLKdiZ618wzTbGpZhIv/jiFxzoCLSPk=" 1081 }, 1082 "marble": { 1083 + "version": "25.04.0", 1084 + "url": "mirror://kde/stable/release-service/25.04.0/src/marble-25.04.0.tar.xz", 1085 + "hash": "sha256-J73xdCFaZhNnle89CnovPgnSGxLSyD7DMJ2EOJ3VKQk=" 1086 }, 1087 "markdownpart": { 1088 + "version": "25.04.0", 1089 + "url": "mirror://kde/stable/release-service/25.04.0/src/markdownpart-25.04.0.tar.xz", 1090 + "hash": "sha256-JhLPorzbmEMvdxeMThuPWWY3YqwpGylPqTT00qCzZLQ=" 1091 }, 1092 "massif-visualizer": { 1093 + "version": "25.04.0", 1094 + "url": "mirror://kde/stable/release-service/25.04.0/src/massif-visualizer-25.04.0.tar.xz", 1095 + "hash": "sha256-l6fSHoUFMT13/rRTu6rbrcei59jcANhlsYf7yMjCgdQ=" 1096 }, 1097 "mbox-importer": { 1098 + "version": "25.04.0", 1099 + "url": "mirror://kde/stable/release-service/25.04.0/src/mbox-importer-25.04.0.tar.xz", 1100 + "hash": "sha256-2QnY60yIZh74iAldugFfPyYSHVfsJzYcEmzuhH1aMds=" 1101 }, 1102 "merkuro": { 1103 + "version": "25.04.0", 1104 + "url": "mirror://kde/stable/release-service/25.04.0/src/merkuro-25.04.0.tar.xz", 1105 + "hash": "sha256-ftM9f5Xb/zpslre4olIzPQpw9AQYVBM7qLITIHPeTF0=" 1106 }, 1107 "messagelib": { 1108 + "version": "25.04.0", 1109 + "url": "mirror://kde/stable/release-service/25.04.0/src/messagelib-25.04.0.tar.xz", 1110 + "hash": "sha256-+2R2KaQ2Kx/5kUMUy0ME7Jgjn+/aXPYhp+coJlpdkHw=" 1111 }, 1112 "mimetreeparser": { 1113 + "version": "25.04.0", 1114 + "url": "mirror://kde/stable/release-service/25.04.0/src/mimetreeparser-25.04.0.tar.xz", 1115 + "hash": "sha256-dS/mCk5tIeM54NlgdEHzwiewI/TDSdhh8DmlfpqwUqU=" 1116 }, 1117 "minuet": { 1118 + "version": "25.04.0", 1119 + "url": "mirror://kde/stable/release-service/25.04.0/src/minuet-25.04.0.tar.xz", 1120 + "hash": "sha256-d5UFWIQOyciQe7ILOYHA1PocspkEuvgRmUG9/FtKsXk=" 1121 }, 1122 "neochat": { 1123 + "version": "25.04.0", 1124 + "url": "mirror://kde/stable/release-service/25.04.0/src/neochat-25.04.0.tar.xz", 1125 + "hash": "sha256-j4LxTuz2tcuyBUqVfLiJ+8Al/jaMofyhq3ojGacxcgI=" 1126 }, 1127 "okular": { 1128 + "version": "25.04.0", 1129 + "url": "mirror://kde/stable/release-service/25.04.0/src/okular-25.04.0.tar.xz", 1130 + "hash": "sha256-T0GiKJ5ip3jF1ueW5YRol+AWHt0nOtmXmyBgu0jmG08=" 1131 }, 1132 "palapeli": { 1133 + "version": "25.04.0", 1134 + "url": "mirror://kde/stable/release-service/25.04.0/src/palapeli-25.04.0.tar.xz", 1135 + "hash": "sha256-6WfJrwK67aKHknZW84Fd2cOiZkIXsJHqBn7p1kPHRqw=" 1136 }, 1137 "parley": { 1138 + "version": "25.04.0", 1139 + "url": "mirror://kde/stable/release-service/25.04.0/src/parley-25.04.0.tar.xz", 1140 + "hash": "sha256-qRZ6xrxN80TdZCqlGuzsnFQeDKIPOKY8VIIIvVGXRkc=" 1141 }, 1142 "partitionmanager": { 1143 + "version": "25.04.0", 1144 + "url": "mirror://kde/stable/release-service/25.04.0/src/partitionmanager-25.04.0.tar.xz", 1145 + "hash": "sha256-TdeFsuUcxrOUS05Euxt9sgH+8kP2RjrDVU6DXlX4o1k=" 1146 }, 1147 "picmi": { 1148 + "version": "25.04.0", 1149 + "url": "mirror://kde/stable/release-service/25.04.0/src/picmi-25.04.0.tar.xz", 1150 + "hash": "sha256-bzUJIdQPnfc7TwHTl7X87CER6csHpfOa2e2LGHMgSOg=" 1151 }, 1152 "pim-data-exporter": { 1153 + "version": "25.04.0", 1154 + "url": "mirror://kde/stable/release-service/25.04.0/src/pim-data-exporter-25.04.0.tar.xz", 1155 + "hash": "sha256-gyXwkuc8nZ+kDrIBiUyUzzLZytat86BEQL6ZTDSMGPI=" 1156 }, 1157 "pim-sieve-editor": { 1158 + "version": "25.04.0", 1159 + "url": "mirror://kde/stable/release-service/25.04.0/src/pim-sieve-editor-25.04.0.tar.xz", 1160 + "hash": "sha256-ZT1tmNDbGbGD71fDOYUevLy9LpBta3/JxwRBbpER0JU=" 1161 }, 1162 "pimcommon": { 1163 + "version": "25.04.0", 1164 + "url": "mirror://kde/stable/release-service/25.04.0/src/pimcommon-25.04.0.tar.xz", 1165 + "hash": "sha256-PXMJxxpr8jojiy9sX/T2uOdcge7uBWpPEtIr6zdP91A=" 1166 }, 1167 "plasmatube": { 1168 + "version": "25.04.0", 1169 + "url": "mirror://kde/stable/release-service/25.04.0/src/plasmatube-25.04.0.tar.xz", 1170 + "hash": "sha256-56+uXsNVClbvkoDjRtiNfHwzLSYq3sCCunjyCslA6JU=" 1171 }, 1172 "poxml": { 1173 + "version": "25.04.0", 1174 + "url": "mirror://kde/stable/release-service/25.04.0/src/poxml-25.04.0.tar.xz", 1175 + "hash": "sha256-BOZNQpm42PKfzN69Lp5JNTzQbtBfcSGdv04UM2W77Ww=" 1176 }, 1177 "qmlkonsole": { 1178 + "version": "25.04.0", 1179 + "url": "mirror://kde/stable/release-service/25.04.0/src/qmlkonsole-25.04.0.tar.xz", 1180 + "hash": "sha256-08cMTq1ZYMxww3Ja4+PS8mLHQtEHY7m7H9LTx9FtQnQ=" 1181 + }, 1182 + "qrca": { 1183 + "version": "25.04.0", 1184 + "url": "mirror://kde/stable/release-service/25.04.0/src/qrca-25.04.0.tar.xz", 1185 + "hash": "sha256-/daSoqy5sFqbgOrs5MNTpMLIQkA3++nHslqHjG88Vuk=" 1186 }, 1187 "rocs": { 1188 + "version": "25.04.0", 1189 + "url": "mirror://kde/stable/release-service/25.04.0/src/rocs-25.04.0.tar.xz", 1190 + "hash": "sha256-SS1py+u77n3QBzF0A9SITm2Xhh6bKDrxARD5zNkdVyE=" 1191 }, 1192 "signon-kwallet-extension": { 1193 + "version": "25.04.0", 1194 + "url": "mirror://kde/stable/release-service/25.04.0/src/signon-kwallet-extension-25.04.0.tar.xz", 1195 + "hash": "sha256-N0Qc6cM3QKwiuTM424dpgX5Of0kl6tU6pZXyScYf07c=" 1196 }, 1197 "skanlite": { 1198 + "version": "25.04.0", 1199 + "url": "mirror://kde/stable/release-service/25.04.0/src/skanlite-25.04.0.tar.xz", 1200 + "hash": "sha256-wpc+VLfQTfr8C2lqIJO5zCRx0c5hXRgj69mJHkeKEuo=" 1201 }, 1202 "skanpage": { 1203 + "version": "25.04.0", 1204 + "url": "mirror://kde/stable/release-service/25.04.0/src/skanpage-25.04.0.tar.xz", 1205 + "hash": "sha256-xH+ciRexAc/hbsqTGmguG3Bp0Ec2pvKj0ZG3eckJXCM=" 1206 }, 1207 "skladnik": { 1208 + "version": "25.04.0", 1209 + "url": "mirror://kde/stable/release-service/25.04.0/src/skladnik-25.04.0.tar.xz", 1210 + "hash": "sha256-H3Cdet2BFKgu8GSsL4vtJ5c0IPTkfzhVwYBsWp4ePiE=" 1211 }, 1212 "step": { 1213 + "version": "25.04.0", 1214 + "url": "mirror://kde/stable/release-service/25.04.0/src/step-25.04.0.tar.xz", 1215 + "hash": "sha256-gRrPD0S7vf2VZf7vknZvunynLPFZnQmsO6DPXfXHzeE=" 1216 }, 1217 "svgpart": { 1218 + "version": "25.04.0", 1219 + "url": "mirror://kde/stable/release-service/25.04.0/src/svgpart-25.04.0.tar.xz", 1220 + "hash": "sha256-U59yVyBZnKZ9UH88TgdSSsgZIyXxc7NEn4MJi9SqplI=" 1221 }, 1222 "sweeper": { 1223 + "version": "25.04.0", 1224 + "url": "mirror://kde/stable/release-service/25.04.0/src/sweeper-25.04.0.tar.xz", 1225 + "hash": "sha256-cLj9AYQw4CXyFBYcBXhdJmXNpISZ47q0d6Jc283n8Gw=" 1226 }, 1227 "telly-skout": { 1228 + "version": "25.04.0", 1229 + "url": "mirror://kde/stable/release-service/25.04.0/src/telly-skout-25.04.0.tar.xz", 1230 + "hash": "sha256-LFJFnQHzANp/CBsYICk2pBRdy5iI2lMdI+A6GNSc6l0=" 1231 }, 1232 "tokodon": { 1233 + "version": "25.04.0", 1234 + "url": "mirror://kde/stable/release-service/25.04.0/src/tokodon-25.04.0.tar.xz", 1235 + "hash": "sha256-V40kEhiZTKSFSjhkE+nsenwCKhg+b+02VUow+2aqeLo=" 1236 }, 1237 "umbrello": { 1238 + "version": "25.04.0", 1239 + "url": "mirror://kde/stable/release-service/25.04.0/src/umbrello-25.04.0.tar.xz", 1240 + "hash": "sha256-Q7xw6RdhBMxQ71hBE0sgBjmrN9sPxGnwbE4c/bDWSsY=" 1241 }, 1242 "yakuake": { 1243 + "version": "25.04.0", 1244 + "url": "mirror://kde/stable/release-service/25.04.0/src/yakuake-25.04.0.tar.xz", 1245 + "hash": "sha256-XqGBrycR82VratvHWuoasLAE8Lj9l0yK1mROHfnX6uM=" 1246 }, 1247 "zanshin": { 1248 + "version": "25.04.0", 1249 + "url": "mirror://kde/stable/release-service/25.04.0/src/zanshin-25.04.0.tar.xz", 1250 + "hash": "sha256-vH0Utc5Kb3C7ThQUFQ3tDUwvuZTnfybd8IIaCl1N6fY=" 1251 } 1252 }
+1 -1
pkgs/kde/plasma/ksystemstats/default.nix
··· 16 libnl 17 ]; 18 19 - cmakeFlags = [ 20 "-DSYSTEMSTATS_DBUS_INTERFACE=${libksysguard}/share/dbus-1/interfaces/org.kde.ksystemstats1.xml" 21 ]; 22 }
··· 16 libnl 17 ]; 18 19 + extraCmakeFlags = [ 20 "-DSYSTEMSTATS_DBUS_INTERFACE=${libksysguard}/share/dbus-1/interfaces/org.kde.ksystemstats1.xml" 21 ]; 22 }
+1 -1
pkgs/stdenv/darwin/stdenv-bootstrap-tools.nix
··· 292 }; 293 294 meta = { 295 - maintainers = [ lib.maintainers.copumpkin ]; 296 }; 297 })
··· 292 }; 293 294 meta = { 295 + maintainers = lib.teams.darwin.members; 296 }; 297 })
+4
pkgs/test/cuda/default.nix
··· 19 cudaPackages_12_1, 20 cudaPackages_12_2, 21 cudaPackages_12_3, 22 cudaPackages_12, 23 }@args: 24
··· 19 cudaPackages_12_1, 20 cudaPackages_12_2, 21 cudaPackages_12_3, 22 + cudaPackages_12_4, 23 + cudaPackages_12_5, 24 + cudaPackages_12_6, 25 + cudaPackages_12_8, 26 cudaPackages_12, 27 }@args: 28
+2 -2
pkgs/tools/inputmethods/ibus-engines/ibus-libpinyin/default.nix
··· 22 23 stdenv.mkDerivation rec { 24 pname = "ibus-libpinyin"; 25 - version = "1.16.1"; 26 27 src = fetchFromGitHub { 28 owner = "libpinyin"; 29 repo = "ibus-libpinyin"; 30 tag = version; 31 - hash = "sha256-lDwQjQepMTmsnGh/wreUfweT1xih/z3tiBPHaY+mBTI="; 32 }; 33 34 nativeBuildInputs = [
··· 22 23 stdenv.mkDerivation rec { 24 pname = "ibus-libpinyin"; 25 + version = "1.16.2"; 26 27 src = fetchFromGitHub { 28 owner = "libpinyin"; 29 repo = "ibus-libpinyin"; 30 tag = version; 31 + hash = "sha256-mq6cs9CobfZPkWjaOKA2/W3jr8wdkW7Ph6cPZFr1T1c="; 32 }; 33 34 nativeBuildInputs = [
+1 -1
pkgs/tools/package-management/librepo/default.nix
··· 72 homepage = "https://rpm-software-management.github.io/librepo/"; 73 license = licenses.lgpl2Plus; 74 platforms = platforms.linux; 75 - maintainers = with maintainers; [ copumpkin ]; 76 }; 77 }
··· 72 homepage = "https://rpm-software-management.github.io/librepo/"; 73 license = licenses.lgpl2Plus; 74 platforms = platforms.linux; 75 + maintainers = [ ]; 76 }; 77 }
+1 -1
pkgs/tools/package-management/rpm/default.nix
··· 143 lgpl21Plus 144 ]; 145 description = "RPM Package Manager"; 146 - maintainers = with maintainers; [ copumpkin ]; 147 platforms = platforms.linux ++ platforms.darwin; 148 }; 149 }
··· 143 lgpl21Plus 144 ]; 145 description = "RPM Package Manager"; 146 + maintainers = [ ]; 147 platforms = platforms.linux ++ platforms.darwin; 148 }; 149 }
+2
pkgs/top-level/aliases.nix
··· 392 cargo-inspect = throw "'cargo-inspect' has been removed due to lack of upstream maintenance. Upstream recommends cargo-expand."; # Added 2025-01-26 393 cargo-web = throw "'cargo-web' has been removed due to lack of upstream maintenance"; # Added 2025-01-26 394 cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API"; 395 certmgr-selfsigned = certmgr; # Added 2023-11-30 396 cgal_4 = throw "cgal_4 has been removed as it is obsolete use cgal instead"; # Added 2024-12-30 397 cgal_5 = cgal; # Added 2024-12-30 ··· 851 isl_0_17 = throw "isl_0_17 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-11-20 852 iso-flags-png-320x420 = lib.warnOnInstantiate "iso-flags-png-320x420 has been renamed to iso-flags-png-320x240" iso-flags-png-320x240; # Added 2024-07-17 853 itktcl = tclPackages.itktcl; # Added 2024-10-02 854 ix = throw "ix has been removed from Nixpkgs, as the ix.io pastebin has been offline since Dec. 2023"; # Added 2025-04-11 855 856 ### J ###
··· 392 cargo-inspect = throw "'cargo-inspect' has been removed due to lack of upstream maintenance. Upstream recommends cargo-expand."; # Added 2025-01-26 393 cargo-web = throw "'cargo-web' has been removed due to lack of upstream maintenance"; # Added 2025-01-26 394 cawbird = throw "cawbird has been abandoned upstream and is broken anyways due to Twitter closing its API"; 395 + centerim = throw "centerim has been removed due to upstream disappearing"; # Added 2025-04-18 396 certmgr-selfsigned = certmgr; # Added 2023-11-30 397 cgal_4 = throw "cgal_4 has been removed as it is obsolete use cgal instead"; # Added 2024-12-30 398 cgal_5 = cgal; # Added 2024-12-30 ··· 852 isl_0_17 = throw "isl_0_17 has been removed from Nixpkgs, as it is unmaintained and obsolete"; # Added 2024-11-20 853 iso-flags-png-320x420 = lib.warnOnInstantiate "iso-flags-png-320x420 has been renamed to iso-flags-png-320x240" iso-flags-png-320x240; # Added 2024-07-17 854 itktcl = tclPackages.itktcl; # Added 2024-10-02 855 + iv = throw "iv has been removed as it was no longer required for neuron and broken"; # Added 2025-04-18 856 ix = throw "ix has been removed from Nixpkgs, as the ix.io pastebin has been offline since Dec. 2023"; # Added 2025-04-11 857 858 ### J ###
+1 -9
pkgs/top-level/all-packages.nix
··· 8952 inherit (darwin.apple_sdk.frameworks) PCSC; 8953 }; 8954 8955 - arrayfire = callPackage ../development/libraries/arrayfire { 8956 - cudaPackages = cudaPackages_12; 8957 - }; 8958 8959 asio_1_10 = callPackage ../development/libraries/asio/1.10.nix { }; 8960 asio = callPackage ../development/libraries/asio { }; ··· 17344 17345 katagoWithCuda = katago.override { 17346 backend = "cuda"; 17347 - cudaPackages = cudaPackages_12; 17348 }; 17349 17350 katagoCPU = katago.override { ··· 17353 17354 katagoTensorRT = katago.override { 17355 backend = "tensorrt"; 17356 - cudaPackages = cudaPackages_12; 17357 }; 17358 17359 koboredux = callPackage ../games/koboredux { }; ··· 17933 17934 hh-suite = callPackage ../applications/science/biology/hh-suite { 17935 inherit (llvmPackages) openmp; 17936 - }; 17937 - 17938 - iv = callPackage ../applications/science/biology/iv { 17939 - neuron-version = neuron.version; 17940 }; 17941 17942 kallisto = callPackage ../applications/science/biology/kallisto {
··· 8952 inherit (darwin.apple_sdk.frameworks) PCSC; 8953 }; 8954 8955 + arrayfire = callPackage ../development/libraries/arrayfire { }; 8956 8957 asio_1_10 = callPackage ../development/libraries/asio/1.10.nix { }; 8958 asio = callPackage ../development/libraries/asio { }; ··· 17342 17343 katagoWithCuda = katago.override { 17344 backend = "cuda"; 17345 }; 17346 17347 katagoCPU = katago.override { ··· 17350 17351 katagoTensorRT = katago.override { 17352 backend = "tensorrt"; 17353 }; 17354 17355 koboredux = callPackage ../games/koboredux { }; ··· 17929 17930 hh-suite = callPackage ../applications/science/biology/hh-suite { 17931 inherit (llvmPackages) openmp; 17932 }; 17933 17934 kallisto = callPackage ../applications/science/biology/kallisto {
+2 -8
pkgs/top-level/python-packages.nix
··· 16979 16980 tensorflow-bin = callPackage ../development/python-modules/tensorflow/bin.nix { 16981 inherit (pkgs.config) cudaSupport; 16982 - # https://www.tensorflow.org/install/source#gpu 16983 - cudaPackages = pkgs.cudaPackages_12; 16984 }; 16985 16986 tensorflow-build = ··· 17395 17396 torchaudio = callPackage ../development/python-modules/torchaudio { }; 17397 17398 - torchaudio-bin = callPackage ../development/python-modules/torchaudio/bin.nix { 17399 - cudaPackages = pkgs.cudaPackages_12; 17400 - }; 17401 17402 torchbench = callPackage ../development/python-modules/torchbench { }; 17403 ··· 17431 17432 torchvision = callPackage ../development/python-modules/torchvision { }; 17433 17434 - torchvision-bin = callPackage ../development/python-modules/torchvision/bin.nix { 17435 - cudaPackages = pkgs.cudaPackages_12; 17436 - }; 17437 17438 tornado = callPackage ../development/python-modules/tornado { }; 17439
··· 16979 16980 tensorflow-bin = callPackage ../development/python-modules/tensorflow/bin.nix { 16981 inherit (pkgs.config) cudaSupport; 16982 }; 16983 16984 tensorflow-build = ··· 17393 17394 torchaudio = callPackage ../development/python-modules/torchaudio { }; 17395 17396 + torchaudio-bin = callPackage ../development/python-modules/torchaudio/bin.nix { }; 17397 17398 torchbench = callPackage ../development/python-modules/torchbench { }; 17399 ··· 17427 17428 torchvision = callPackage ../development/python-modules/torchvision { }; 17429 17430 + torchvision-bin = callPackage ../development/python-modules/torchvision/bin.nix { }; 17431 17432 tornado = callPackage ../development/python-modules/tornado { }; 17433