lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
bb105095 e1c4e30a

+130 -144
+16 -6
nixos/modules/services/networking/seafile.nix
··· 19 19 MEDIA_ROOT = '${seahubDir}/media/' 20 20 THUMBNAIL_ROOT = '${seahubDir}/thumbnail/' 21 21 22 + SERVICE_URL = '${cfg.ccnetSettings.General.SERVICE_URL}' 23 + 22 24 with open('${seafRoot}/.seahubSecret') as f: 23 25 SECRET_KEY = f.readline().rstrip() 24 26 ··· 177 179 after = [ "network.target" ]; 178 180 wantedBy = [ "seafile.target" ]; 179 181 restartTriggers = [ ccnetConf seafileConf ]; 182 + path = [ pkgs.sqlite ]; 180 183 serviceConfig = securityOptions // { 181 184 User = "seafile"; 182 185 Group = "seafile"; ··· 200 203 if [ ! -f "${seafRoot}/server-setup" ]; then 201 204 mkdir -p ${dataDir}/library-template 202 205 mkdir -p ${ccnetDir}/{GroupMgr,misc,OrgMgr,PeerMgr} 203 - ${pkgs.sqlite}/bin/sqlite3 ${ccnetDir}/GroupMgr/groupmgr.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/groupmgr.sql" 204 - ${pkgs.sqlite}/bin/sqlite3 ${ccnetDir}/misc/config.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/config.sql" 205 - ${pkgs.sqlite}/bin/sqlite3 ${ccnetDir}/OrgMgr/orgmgr.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/org.sql" 206 - ${pkgs.sqlite}/bin/sqlite3 ${ccnetDir}/PeerMgr/usermgr.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/user.sql" 207 - ${pkgs.sqlite}/bin/sqlite3 ${dataDir}/seafile.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/seafile.sql" 206 + sqlite3 ${ccnetDir}/GroupMgr/groupmgr.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/groupmgr.sql" 207 + sqlite3 ${ccnetDir}/misc/config.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/config.sql" 208 + sqlite3 ${ccnetDir}/OrgMgr/orgmgr.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/org.sql" 209 + sqlite3 ${ccnetDir}/PeerMgr/usermgr.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/user.sql" 210 + sqlite3 ${dataDir}/seafile.db ".read ${cfg.seafilePackage}/share/seafile/sql/sqlite/seafile.sql" 208 211 echo "${cfg.seafilePackage.version}-sqlite" > "${seafRoot}"/server-setup 209 212 fi 210 213 # checking for upgrades and handling them ··· 213 216 installedMinor=$(cat "${seafRoot}/server-setup" | cut -d"-" -f1 | cut -d"." -f2) 214 217 pkgMajor=$(echo "${cfg.seafilePackage.version}" | cut -d"." -f1) 215 218 pkgMinor=$(echo "${cfg.seafilePackage.version}" | cut -d"." -f2) 216 - if [ $installedMajor != $pkgMajor ] || [ $installedMinor != $pkgMinor ]; then 219 + 220 + if [[ $installedMajor == $pkgMajor && $installedMinor == $pkgMinor ]]; then 221 + : 222 + elif [[ $installedMajor == 8 && $installedMinor == 0 && $pkgMajor == 9 && $pkgMinor == 0 ]]; then 223 + # Upgrade from 8.0 to 9.0 224 + sqlite3 ${dataDir}/seafile.db ".read ${pkgs.seahub}/scripts/upgrade/sql/9.0.0/sqlite3/seafile.sql" 225 + echo "${cfg.seafilePackage.version}-sqlite" > "${seafRoot}"/server-setup 226 + else 217 227 echo "Unsupported upgrade" >&2 218 228 exit 1 219 229 fi
+10 -34
pkgs/applications/misc/dbx/default.nix
··· 18 18 , pytestCheckHook 19 19 , pytest-asyncio 20 20 , pytest-timeout 21 + , pytest-mock 21 22 , lib 23 + , git 22 24 }: 23 25 24 26 buildPythonPackage rec { 25 27 pname = "dbx"; 26 - version = "0.5.0"; 28 + version = "0.6.8"; 27 29 28 30 src = fetchFromGitHub { 29 31 owner = "databrickslabs"; 30 32 repo = "dbx"; 31 33 rev = "v${version}"; 32 - sha256 = "gd466hhyTfPZwC3B3LlydRrkDtfzjY7SvTKy13HDFG8="; 34 + sha256 = "sha256-Ou+VdHFVQzmsxJiyaeDd/+FqHvJZeNGB+OXyoagJwtk="; 33 35 }; 34 - 35 - postPatch = '' 36 - substituteInPlace setup.py \ 37 - --replace "protobuf==4.21.1" "protobuf>=3.19.4" 38 - ''; 39 36 40 37 propagatedBuildInputs = [ 41 38 databricks-cli ··· 59 56 pytestCheckHook 60 57 pytest-asyncio 61 58 pytest-timeout 59 + pytest-mock 60 + git 62 61 ]; 62 + 63 + preCheck = '' 64 + export HOME=$TMPDIR 65 + ''; 63 66 64 67 disabledTests = [ 65 - # require a HOME for cookiecutter 66 - "test_configure" 67 - "test_datafactory_deploy" 68 - "test_deploy_incorrect_artifact_location" 69 - "test_deploy_listed_jobs" 70 - "test_deploy_multitask_json" 71 - "test_deploy_multitask_yaml" 72 - "test_deploy_non_existent_env" 73 - "test_deploy_path_adjustment_json" 74 - "test_deploy_path_adjustment_yaml" 75 - "test_deploy_with_jobs" 76 - "test_deploy_with_requirements_and_branch" 77 - "test_deployment_with_bad_env_variable" 78 - "test_update_job_negative" 79 - "test_update_job_positive" 80 - "test_with_permissions" 81 - "test_write_specs_to_file" 82 - "test_awake_cluster" 83 - "test_execute" 84 - "test_preprocess_cluster_args" 85 - "test_launch" 86 - "test_launch_run_submit" 87 - "test_launch_with_parameters" 88 - "test_no_runs" 89 - "test_no_runs_run_submit" 90 - "test_payload_keys" 91 - "test_trace_runs" 92 68 # fails because of dbfs CLI wrong call 93 69 "test_dbfs_unknown_user" 94 70 "test_dbfs_no_root"
+2 -2
pkgs/applications/misc/obsidian/default.nix
··· 12 12 let 13 13 inherit (stdenv.hostPlatform) system; 14 14 pname = "obsidian"; 15 - version = "0.14.15"; 15 + version = "0.15.9"; 16 16 appname = "Obsidian"; 17 17 meta = with lib; { 18 18 description = "A powerful knowledge base that works on top of a local folder of plain text Markdown files"; ··· 25 25 filename = if stdenv.isDarwin then "Obsidian-${version}-universal.dmg" else "obsidian-${version}.tar.gz"; 26 26 src = fetchurl { 27 27 url = "https://github.com/obsidianmd/obsidian-releases/releases/download/v${version}/${filename}"; 28 - sha256 = if stdenv.isDarwin then "10c5255nbgqiigcwq6kmhzcgafq91k25wnxj3jxabzc0hs7pn4m5" else "sha256-bSLt4EnlCtxZeKIahr618qMuK9ogUhxn+NKO2GPkjOQ="; 28 + sha256 = if stdenv.isDarwin then "1q9almr8k1i2wzksd09libgnvypj5k9j15y6cxg4rgnw32fa152n" else "sha256-Qz1Ic5FtxXIk8J/2spNZaqpPIgx3yNyXiAQllbVrGjw="; 29 29 }; 30 30 31 31 icon = fetchurl {
+2 -2
pkgs/applications/misc/syncthingtray/default.nix
··· 21 21 }: 22 22 23 23 mkDerivation rec { 24 - version = "1.1.20"; 24 + version = "1.2.1"; 25 25 pname = "syncthingtray"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "Martchus"; 29 29 repo = "syncthingtray"; 30 30 rev = "v${version}"; 31 - sha256 = "sha256-T0ddAROwVSh+IKGZZNDMC7YB2IfQZal2pAQ5ArirtjI="; 31 + sha256 = "sha256-qcfmePPSuaCydATNhUCZ9ee9tV1KqclP9PPX6UPILTM="; 32 32 }; 33 33 34 34 buildInputs = [
+3 -3
pkgs/applications/misc/taskwarrior-tui/default.nix
··· 5 5 6 6 rustPlatform.buildRustPackage rec { 7 7 pname = "taskwarrior-tui"; 8 - version = "0.22.0"; 8 + version = "0.23.5"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "kdheepak"; 12 12 repo = "taskwarrior-tui"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-121TfmaWrWppsOiuF+8gxy+3J5YzbliYj88nw4aLt9w="; 14 + sha256 = "sha256-/f68TlNuaEyPDSBpMmOjZkLF6Is2+oYfbWQqQOnsR4M="; 15 15 }; 16 16 17 17 # Because there's a test that requires terminal access 18 18 doCheck = false; 19 19 20 - cargoSha256 = "sha256-oTb1pSA9g9cExCXKaQjNm+h5WB4bWuqODkU7MvvspGQ="; 20 + cargoSha256 = "sha256-sgwT0CLFdmzh7dezVE5tcmGCXqxnGLT00IDIQJl6pHw="; 21 21 22 22 meta = with lib; { 23 23 description = "A terminal user interface for taskwarrior ";
+2 -2
pkgs/applications/misc/xmrig/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "xmrig"; 7 - version = "6.17.0"; 7 + version = "6.18.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "xmrig"; 11 11 repo = "xmrig"; 12 12 rev = "v${version}"; 13 - sha256 = "sha256-K8mN3Wzlay2Qgoo70mu3Bh4lXUXNDpXYt17aNnwWkIc="; 13 + sha256 = "sha256-vYXDQSEhPi/jxCO6pxOJ1q0AoBVVRU9vErtJLq90ltk="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/applications/misc/xmrig/moneroocean.nix
··· 2 2 3 3 xmrig.overrideAttrs (oldAttrs: rec { 4 4 pname = "xmrig-mo"; 5 - version = "6.16.5-mo1"; 5 + version = "6.18.0-mo1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "MoneroOcean"; 9 9 repo = "xmrig"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-TNiHvRLS+eAPHa+qbnVSAyWTPGJxdp9eheQamd4i24E="; 11 + sha256 = "sha256-Ma5wXaQBAVWJsL2wVOHxQ2aSAG9wOywk/abtUi03JvY="; 12 12 }; 13 13 14 14 meta = with lib; {
+9 -4
pkgs/applications/networking/seahub/default.nix
··· 2 2 , fetchFromGitHub 3 3 , python3 4 4 , makeWrapper 5 + , nixosTests 5 6 }: 6 7 let 7 8 # Seahub 8.x.x does not support django-webpack-loader >=1.x.x ··· 19 20 in 20 21 python.pkgs.buildPythonApplication rec { 21 22 pname = "seahub"; 22 - version = "8.0.8"; 23 + version = "9.0.6"; 23 24 24 25 src = fetchFromGitHub { 25 26 owner = "haiwen"; 26 27 repo = "seahub"; 27 - rev = "c51346155b2f31e038c3a2a12e69dcc6665502e2"; # using a fixed revision because upstream may re-tag releases :/ 28 - sha256 = "0dagiifxllfk73xdzfw2g378jccpzplhdrmkwbaakbhgbvvkg92k"; 28 + rev = "876b7ba9b680fc668e89706aff535593772ae921"; # using a fixed revision because upstream may re-tag releases :/ 29 + sha256 = "sha256-GHvJlm5DVt3IVJnqJu8YobNNqbjdPd08s4DCdQQRQds="; 29 30 }; 30 31 31 32 dontBuild = true; ··· 52 53 openpyxl 53 54 requests 54 55 requests-oauthlib 56 + chardet 55 57 pyjwt 56 58 pycryptodome 57 59 qrcode ··· 68 70 69 71 passthru = { 70 72 inherit python; 71 - pythonPath = python3.pkgs.makePythonPath propagatedBuildInputs; 73 + pythonPath = python.pkgs.makePythonPath propagatedBuildInputs; 74 + tests = { 75 + inherit (nixosTests) seafile; 76 + }; 72 77 }; 73 78 74 79 meta = with lib; {
+2 -2
pkgs/applications/networking/sync/unison/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "unison"; 17 - version = "2.52.0"; 17 + version = "2.52.1"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "bcpierce00"; 21 21 repo = "unison"; 22 22 rev = "v${version}"; 23 - sha256 = "sha256-YCuXkHqY+JHsguvst2UkI/6YlFt3iTvchO8PQuS15nI="; 23 + sha256 = "sha256-taA8eZ/wOe9uMccXVYfe34/XzWgqYKA3tLZnIOahOrQ="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ makeWrapper ]
+2 -2
pkgs/development/compilers/z88dk/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "z88dk"; 5 - version = "2.1"; 5 + version = "2.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "z88dk"; 9 9 repo = "z88dk"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-NgO8rbM31IX4nrJRU0p1DUafHPagMQepKLLoOLuGlT8="; 11 + sha256 = "sha256-vf/hEmcl6R3nsc66G6eETNeW0SV/odk14XIpEPPAbKo="; 12 12 fetchSubmodules = true; 13 13 }; 14 14
+4 -1
pkgs/development/go-modules/generic/default.nix
··· 106 106 mkdir -p "''${GOPATH}/pkg/mod/cache/download" 107 107 go mod download 108 108 '' else '' 109 - go mod vendor 109 + if (( "''${NIX_DEBUG:-0}" >= 1 )); then 110 + goModVendorFlags+=(-v) 111 + fi 112 + go mod vendor "''${goModVendorFlags[@]}" 110 113 ''} 111 114 112 115 mkdir -p vendor
+4 -4
pkgs/development/interpreters/wasmer/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "wasmer"; 12 - version = "2.1.1"; 12 + version = "2.3.0"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "wasmerio"; 16 16 repo = pname; 17 17 rev = version; 18 - sha256 = "sha256-uD+JH42AxXxLMLqBurNDfYc7tLlBlEmaLB5rbip+/D4="; 18 + sha256 = "sha256-25wWgMNybbsEf/1xmm+8BPcjx8CSW9ZBzxGKT/DbBXw="; 19 19 fetchSubmodules = true; 20 20 }; 21 21 22 - cargoSha256 = "sha256-eiX5p2qWUZgoHzoHYXDsp9N6foiX3JovKO6MpoJOXFo="; 22 + cargoSha256 = "sha256-tswsbijNN5UcSZovVmy66yehcEOpQDGMdRgR/1mkuE8="; 23 23 24 24 nativeBuildInputs = [ cmake pkg-config ]; 25 25 ··· 33 33 ]; 34 34 35 35 # Can't use test-jit: 36 - # error: Package `wasmer-workspace v2.1.1 (/build/source)` does not have the feature `test-jit` 36 + # error: Package `wasmer-workspace v2.3.0 (/build/source)` does not have the feature `test-jit` 37 37 checkFeatures = [ "test-cranelift" ]; 38 38 39 39 LIBCLANG_PATH = "${llvmPackages.libclang.lib}/lib";
+2 -2
pkgs/development/libraries/codec2/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "codec2"; 5 - version = "1.0.3"; 5 + version = "1.0.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "drowe67"; 9 9 repo = "codec2"; 10 10 rev = "v${version}"; 11 - hash = "sha256-2/Ef5cEe7Kr3a/D8u4BgvTQM6M6vglXsF+ccstFHDUw="; 11 + hash = "sha256-Q5p6NicwmHBR7drX8Tdgf6Mruqssg9qzMC9sG9DlMbQ="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/ucx/default.nix
··· 13 13 14 14 in stdenv.mkDerivation rec { 15 15 pname = "ucx"; 16 - version = "1.12.1"; 16 + version = "1.13.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "openucx"; 20 20 repo = "ucx"; 21 21 rev = "v${version}"; 22 - sha256 = "08ajhbhzwkfzhkhswk56zx17q18ii67dg1ca1f5grl9qjgj3mmyw"; 22 + sha256 = "sha256-DWiOmqxBAAH8DE7H0teoKyp+m3wYEo652ac7ey43Erg="; 23 23 }; 24 24 25 25 nativeBuildInputs = [ autoreconfHook doxygen ];
+2 -2
pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "azure-mgmt-recoveryservices"; 14 - version = "2.0.0"; 14 + version = "2.1.0"; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 18 extension = "zip"; 19 - sha256 = "a7d3137d5c460f50ac2d44061d60a70b4f2779d4ca844b77419b5725e65e09be"; 19 + sha256 = "sha256-2DeOemVpkjeI/hUdG04IuHU2h3cmk3oG4kr1wIDvdbM="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/nose2/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "nose2"; 12 - version = "0.11.0"; 12 + version = "0.12.0"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-bSCNfW7J+dVcdNrIHJOUvDkG2++BqMpUILK5t/jmnek="; 19 + hash = "sha256-lW55ub1VjuCLYgDAWtLHZGW344YMDAU3aGCJKFwyARM="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pyotgw/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "pyotgw"; 12 - version = "2.0.0"; 12 + version = "2.0.1"; 13 13 disabled = pythonOlder "3.7"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "mvn23"; 17 17 repo = pname; 18 18 rev = version; 19 - hash = "sha256-82pGKcF7L7WBxInU7lkYTKQLkse5/HY8x0ZHZIyqCW4="; 19 + hash = "sha256-2mO8/qBG01zR0LHS4ajaNHrPsM//4i4gKnviy2aGeRs="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/analysis/tflint/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tflint"; 5 - version = "0.39.0"; 5 + version = "0.39.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "terraform-linters"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-hyaYHn2Hzq6k4HSSy86zloLG1Sy/hpHpmj1xUD2UoG8="; 11 + sha256 = "sha256-ELf1keTf/iznOBZNvyliAH/4UQo5w8CNEJNf0Z6eDV8="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-6sk1bFuSCrKt9uMrrwOpX/SBZrjFvtqVPFylbRNHpz4=";
+2 -2
pkgs/development/tools/misc/ccls/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "ccls"; 6 - version = "0.20210330"; 6 + version = "0.20220729"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "MaskRay"; 10 10 repo = "ccls"; 11 11 rev = version; 12 - sha256 = "sha256-jipSipgD0avd7XODlpxnqjHK3s6nacaxbIQIddix7X8="; 12 + sha256 = "sha256-eSWgk6KdEyjDLPc27CsOCXDU7AKMoXNyzoA6dSwZ5TI="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake llvmPackages.llvm.dev ];
+2 -2
pkgs/development/tools/pip-audit/default.nix
··· 25 25 26 26 buildPythonApplication rec { 27 27 pname = "pip-audit"; 28 - version = "2.4.2"; 28 + version = "2.4.3"; 29 29 format = "pyproject"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "trailofbits"; 33 33 repo = pname; 34 34 rev = "v${version}"; 35 - hash = "sha256-GH7dP2/0j2bXqw1qssyzMSV/YtYImbT7VSn/x97idiU="; 35 + hash = "sha256-Q5wZJKP5YgLZQ9lrwE+8W9V7pZCJTLBm6qbjzmYJ9yg="; 36 36 }; 37 37 38 38 nativeBuildInputs = [
+3 -3
pkgs/development/tools/tfplugindocs/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tfplugindocs"; 5 - version = "0.9.0"; 5 + version = "0.13.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "hashicorp"; 9 9 repo = "terraform-plugin-docs"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-1grwbi/nG0d2NwEE/eOeo1+0uGpZ1BRJdubyLwhvKfU="; 11 + sha256 = "sha256-0FpzUJDFGKLe88QW+7UI6QPwFMUfqPindOHtGRpOLo8="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-VhnPRBVlvR/Xh7wkX7qx0m5s+yBOCJQE1zcAe8//lNw="; 14 + vendorSha256 = "sha256-gKRgFfyUahWI+c97uYSCAGNoFy2RPgAw0uYGauEOLt8="; 15 15 16 16 meta = with lib; { 17 17 description = "Generate and validate Terraform plugin/provider documentation";
+3 -3
pkgs/development/tools/wasm-pack/default.nix
··· 9 9 10 10 rustPlatform.buildRustPackage rec { 11 11 pname = "wasm-pack"; 12 - version = "0.10.2"; 12 + version = "0.10.3"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "rustwasm"; 16 16 repo = "wasm-pack"; 17 17 rev = "v${version}"; 18 - sha256 = "sha256-nhO/SLeJTq2viDqsJCRNLbgjyDKRli3RWExUNzKT9ug="; 18 + sha256 = "sha256-5AhHh/ycoNhhCH30RXvW6MyJkscrjFW+pvudw0MXieU="; 19 19 }; 20 20 21 - cargoSha256 = "sha256-6qrCHpg92IRPsf/dK6xcLGX8BLmqox3vgLRqsV4ubsY="; 21 + cargoSha256 = "sha256-4TKu9O5jLac5kLZF53DGjxEPize8jZm2B+CurelzSuo="; 22 22 23 23 nativeBuildInputs = [ pkg-config ]; 24 24
+2 -2
pkgs/misc/screensavers/xssproxy/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "xssproxy"; 5 - version = "1.0.0"; 5 + version = "1.0.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "timakro"; 9 9 repo = "xssproxy"; 10 10 rev = "v${version}"; 11 - sha256 = "0c83wmipnsdnbihc5niyczs7jrkss2s8n6iwwjdia7hkjzbd0hl7"; 11 + sha256 = "sha256-xaFr+AM5GdTZQsN1g8QsXgzsfve9GoteiXHpoMvwEBg="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ pkg-config ];
+2 -2
pkgs/os-specific/linux/firmware/fwupd-efi/default.nix
··· 12 12 13 13 stdenv.mkDerivation rec { 14 14 pname = "fwupd-efi"; 15 - version = "1.2"; 15 + version = "1.3"; 16 16 17 17 src = fetchurl { 18 18 url = "https://people.freedesktop.org/~hughsient/releases/${pname}-${version}.tar.xz"; 19 - sha256 = "sha256-aRx38RwhAQSNjauvY8bQ/iLPrQ5dQyIEHJurzrr86z8="; 19 + sha256 = "sha256-1Ys04TwhWYZ8ORJgr04kGO6/lI1I36sC6kcrVoP/r1k="; 20 20 }; 21 21 22 22 nativeBuildInputs = [
+1 -2
pkgs/os-specific/linux/nixos-rebuild/nixos-rebuild.sh
··· 20 20 copyClosureFlags=() 21 21 extraBuildFlags=() 22 22 lockFlags=() 23 - flakeFlags=() 23 + flakeFlags=(--extra-experimental-features 'nix-command flakes') 24 24 action= 25 25 buildNix=1 26 26 fast= ··· 120 120 ;; 121 121 --flake) 122 122 flake="$1" 123 - flakeFlags=(--extra-experimental-features 'nix-command flakes') 124 123 shift 1 125 124 ;; 126 125 --no-flake)
+2 -2
pkgs/os-specific/linux/rdma-core/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "rdma-core"; 8 - version = "40.0"; 8 + version = "41.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "linux-rdma"; 12 12 repo = "rdma-core"; 13 13 rev = "v${version}"; 14 - sha256 = "0pcpbri50y5gzrmdqx90wngfd6cfas3m7zlfhz9lqr583fp08vfw"; 14 + sha256 = "sha256-D6pgWdJKA6ZL+atFChqSW7hI6/dYfDBRzvb6hu1wxPg="; 15 15 }; 16 16 17 17 strictDeps = true;
+3 -3
pkgs/servers/seafile-server/default.nix
··· 10 10 }; 11 11 in stdenv.mkDerivation rec { 12 12 pname = "seafile-server"; 13 - version = "8.0.8"; 13 + version = "9.0.6"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "haiwen"; 17 17 repo = "seafile-server"; 18 - rev = "807867afb7a86f526a6584278914ce9f3f51d1da"; 19 - sha256 = "1nq6dw4xzifbyhxn7yn5398q2sip1p1xwqz6xbis4nzgx4jldd4g"; 18 + rev = "881c270aa8d99ca6648e7aa1458fc283f38e6f31"; # using a fixed revision because upstream may re-tag releases :/ 19 + sha256 = "sha256-M1jIysirtl1KKyEvScOIshLvSa5vjxTdFEARgy8bLTc="; 20 20 }; 21 21 22 22 nativeBuildInputs = [ autoreconfHook pkg-config ];
+2 -2
pkgs/shells/zsh/zsh-nix-shell/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "zsh-nix-shell"; 8 - version = "0.4.0"; 8 + version = "0.5.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "chisui"; 12 12 repo = "zsh-nix-shell"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-719lVo6p55G1tt3+6nMhZ904nyvlq0Q5exb0il36/Aw="; 14 + sha256 = "sha256-IT3wpfw8zhiNQsrw59lbSWYh0NQ1CUdUtFzRzHlURH0="; 15 15 }; 16 16 17 17 strictDeps = true;
+3 -3
pkgs/tools/admin/trivy/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "trivy"; 9 - version = "0.30.0"; 9 + version = "0.30.4"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "aquasecurity"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-9omVpLpQvCbGr4abbJvMZxLgvOezofhMSyducS0jcf8="; 15 + sha256 = "sha256-sdGRZ0ljNnb5esXKqtheHbsEimCbN9JPaY8nNNdQhg4="; 16 16 }; 17 - vendorSha256 = "sha256-6WDoXyZirSKjSNCzm6MPLJLHhjNG7PEFBZBWukiWhXE="; 17 + vendorSha256 = "sha256-GJobvLi73Ucpi8iO8vJxiRBFB3/OouZUKhmY/VkQjNY="; 18 18 19 19 excludedPackages = "misc"; 20 20
+2 -2
pkgs/tools/misc/z-lua/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "z-lua"; 5 - version = "1.8.14"; 5 + version = "1.8.16"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "skywind3000"; 9 9 repo = "z.lua"; 10 10 rev = version; 11 - sha256 = "sha256-Jy5fcXqXbuJTOAP8vpZjN0qmDR/cVACztcIxl4aXNKs="; 11 + sha256 = "sha256-VVJXBVENXlJXVj831Hx4sa7AzGHXpsui6tga9uA6ZnE="; 12 12 }; 13 13 14 14 dontBuild = true;
+3 -3
pkgs/tools/networking/checkip/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "checkip"; 8 - version = "0.40.0"; 8 + version = "0.40.1"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "jreisinger"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-rq1pmGcRrpqM+ffiWhgAG/L0UqtvD4XWRblzv49P9T8="; 14 + sha256 = "sha256-SPfr88ZEIFlbU4ofuxb2I42L7FR4EXbckCVylEQHfN4="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-cahrJvPSemlEpaQ1s4bbi1yp0orTDGOoanqXDVVIpjQ="; 17 + vendorSha256 = "sha256-bFhSMjm9rqUUbCV9keeXm+yhzQMKrYKs1DbCt53J8aM="; 18 18 19 19 # Requires network 20 20 doCheck = false;
+2 -2
pkgs/tools/networking/kapp/default.nix
··· 1 1 { lib, buildGoModule, fetchFromGitHub, installShellFiles }: 2 2 buildGoModule rec { 3 3 pname = "kapp"; 4 - version = "0.46.0"; 4 + version = "0.50.0"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "vmware-tanzu"; 8 8 repo = "carvel-kapp"; 9 9 rev = "v${version}"; 10 - sha256 = "sha256-Z0BjwzTdKHAeETHya6M5OcsIIY//y6dDbbyZe/irCAY="; 10 + sha256 = "sha256-rNn3CgqOCHe8rTQGM6SscYhX9rR6MBWRs9xdoOWXPIo="; 11 11 }; 12 12 13 13 vendorSha256 = null;
+3 -3
pkgs/tools/networking/sish/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "sish"; 8 - version = "2.1.0"; 8 + version = "2.5.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "antoniomika"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-0rUQRul6es+m8JFGXChrygwU5fBi6RiYhoD1dQHpG3s="; 14 + sha256 = "sha256-phnPs9mpheIOP0uZZ1Uoo7oRXl09Z+0q54v16YUYNUc="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-GoiwpYELleD5tltQgRPGQU725h/uHe8tXqH4tIY//uE="; 17 + vendorSha256 = "sha256-Ohdl99h/5epbONaYeGSC02evWcGe+8FtZ53RXHHsMpg="; 18 18 19 19 meta = with lib; { 20 20 description = "HTTP(S)/WS(S)/TCP Tunnels to localhost";
+2 -2
pkgs/tools/security/crlfsuite/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "crlfsuite"; 8 - version = "2.1.1"; 8 + version = "2.1.2"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Nefcore"; 13 13 repo = "CRLFsuite"; 14 14 rev = "refs/tags/v${version}"; 15 - sha256 = "sha256-wWXqeQ6rq4yMG1V9f9JGE91Se8VuU8gpahmYyNTtkmo="; 15 + sha256 = "sha256-Olwt19HauTG2HuG4Pro0ImVbQtWqCgx9gV+2RtePT/8="; 16 16 }; 17 17 18 18 propagatedBuildInputs = with python3.pkgs; [
+3 -3
pkgs/tools/security/scilla/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "scilla"; 8 - version = "1.2.1"; 8 + version = "1.2.2"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "edoardottt"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-1gSuKxNpls7B+pSGnGj3k/E93lnj2FPNtAAciPPNAeM="; 14 + sha256 = "sha256-1akwc/J1W1zMNqEc2Vv8wdElKbOVJ8uL3XXftGVwWnQ="; 15 15 }; 16 16 17 - vendorSha256 = "sha256-gHZj8zpc7yFthCCBM8WGw4WwoW46bdQWe4yWjOkkQE8="; 17 + vendorSha256 = "sha256-uTL2qr/LWmdmZipfnbzzzIx6X3fJtB1A9uYekogZN3w="; 18 18 19 19 meta = with lib; { 20 20 description = "Information gathering tool for DNS, ports and more";
+20 -27
pkgs/top-level/all-packages.nix
··· 13515 13515 13516 13516 glslang = callPackage ../development/compilers/glslang { }; 13517 13517 13518 - go_1_17 = callPackage ../development/compilers/go/1.17.nix ({ 13519 - inherit (darwin.apple_sdk.frameworks) Security Foundation; 13520 - } // lib.optionalAttrs (stdenv.cc.isGNU && stdenv.isAarch64) { 13521 - stdenv = gcc8Stdenv; 13522 - buildPackages = buildPackages // { stdenv = buildPackages.gcc8Stdenv; }; 13523 - }); 13524 - 13525 - # go 1.18 requires a newer Apple SDK to be build. See commit message for more details. 13526 - go_1_18 = darwin.apple_sdk_11_0.callPackage ../development/compilers/go/1.18.nix { 13527 - inherit (darwin.apple_sdk_11_0.frameworks) Security Foundation; 13528 - }; 13529 - 13530 - go = go_1_18; 13531 - 13532 13518 go-junit-report = callPackage ../development/tools/go-junit-report { }; 13533 13519 13534 13520 gobang = callPackage ../development/tools/database/gobang { ··· 21906 21892 21907 21893 buildBowerComponents = callPackage ../development/bower-modules/generic { }; 21908 21894 21909 - ### DEVELOPMENT / GO MODULES 21895 + ### DEVELOPMENT / GO 21910 21896 21911 - buildGo117Package = callPackage ../development/go-packages/generic { 21912 - go = buildPackages.go_1_17; 21913 - }; 21914 - 21915 - # go 1.18 requires a newer Apple SDK to be build. See commit message for more details. 21916 - buildGo118Package = darwin.apple_sdk_11_0.callPackage ../development/go-packages/generic { 21917 - go = buildPackages.go_1_18; 21918 - }; 21919 - 21897 + # the unversioned attributes should always point to the same go version 21898 + go = go_1_18; 21899 + buildGoModule = buildGo118Module; 21920 21900 buildGoPackage = buildGo118Package; 21921 21901 21902 + go_1_17 = callPackage ../development/compilers/go/1.17.nix ({ 21903 + inherit (darwin.apple_sdk.frameworks) Foundation Security; 21904 + } // lib.optionalAttrs (stdenv.cc.isGNU && stdenv.isAarch64) { 21905 + stdenv = gcc8Stdenv; 21906 + buildPackages = buildPackages // { stdenv = buildPackages.gcc8Stdenv; }; 21907 + }); 21922 21908 buildGo117Module = callPackage ../development/go-modules/generic { 21923 21909 go = buildPackages.go_1_17; 21924 21910 }; 21911 + buildGo117Package = callPackage ../development/go-packages/generic { 21912 + go = buildPackages.go_1_17; 21913 + }; 21925 21914 21926 - # go 1.18 requires a newer Apple SDK to be build. See commit message for more details. 21915 + # requires a newer Apple SDK 21916 + go_1_18 = darwin.apple_sdk_11_0.callPackage ../development/compilers/go/1.18.nix { 21917 + inherit (darwin.apple_sdk_11_0.frameworks) Foundation Security; 21918 + }; 21927 21919 buildGo118Module = darwin.apple_sdk_11_0.callPackage ../development/go-modules/generic { 21928 21920 go = buildPackages.go_1_18; 21929 21921 }; 21930 - 21931 - buildGoModule = buildGo118Module; 21922 + buildGo118Package = darwin.apple_sdk_11_0.callPackage ../development/go-packages/generic { 21923 + go = buildPackages.go_1_18; 21924 + }; 21932 21925 21933 21926 go2nix = callPackage ../development/tools/go2nix { }; 21934 21927