Merge staging-next into staging

authored by nixpkgs-ci[bot] and committed by GitHub 062c21a0 c43df97d

+1471 -1112
-4
.github/workflows/backport.yml
··· 9 9 pull_request_target: 10 10 types: [closed, labeled] 11 11 12 - concurrency: 13 - group: backport-${{ github.workflow }}-${{ github.event_name }}-${{ github.event.pull_request.number || github.run_id }} 14 - cancel-in-progress: true 15 - 16 12 permissions: 17 13 contents: read 18 14 issues: write
+1 -1
ci/labels/labels.cjs
··· 235 235 236 236 const itemLabels = {} 237 237 238 - if (item.pull_request) { 238 + if (item.pull_request || context.payload.pull_request) { 239 239 stats.prs++ 240 240 Object.assign(itemLabels, await handlePullRequest(item)) 241 241 } else {
+1 -1
nixos/modules/services/cluster/k3s/default.nix
··· 782 782 ) "k3s: Images are only imported on nodes with an enabled agent, they will be ignored by this node") 783 783 ++ (lib.optional ( 784 784 cfg.role == "agent" && cfg.configPath == null && cfg.serverAddr == "" 785 - ) "k3s: ServerAddr or configPath (with 'server' key) should be set if role is 'agent'") 785 + ) "k3s: serverAddr or configPath (with 'server' key) should be set if role is 'agent'") 786 786 ++ (lib.optional 787 787 (cfg.role == "agent" && cfg.configPath == null && cfg.tokenFile == null && cfg.token == "") 788 788 "k3s: Token or tokenFile or configPath (with 'token' or 'token-file' keys) should be set if role is 'agent'"
+7 -1
nixos/modules/services/networking/r53-ddns.nix
··· 41 41 ''; 42 42 }; 43 43 44 + ttl = mkOption { 45 + type = types.int; 46 + description = "The TTL for the generated record"; 47 + }; 48 + 44 49 environmentFile = mkOption { 45 50 type = types.str; 46 51 description = '' ··· 68 73 serviceConfig = { 69 74 ExecStart = 70 75 "${pkg}/bin/r53-ddns -zone-id ${cfg.zoneID} -domain ${cfg.domain}" 71 - + lib.optionalString (cfg.hostname != null) " -hostname ${cfg.hostname}"; 76 + + lib.optionalString (cfg.hostname != null) " -hostname ${cfg.hostname}" 77 + + lib.optionalString (cfg.ttl != null) " -ttl ${toString cfg.ttl}"; 72 78 EnvironmentFile = "${cfg.environmentFile}"; 73 79 DynamicUser = true; 74 80 };
+1
nixos/modules/services/web-apps/mastodon.nix
··· 355 355 jobClasses = lib.mkOption { 356 356 type = listOf (enum [ 357 357 "default" 358 + "fasp" 358 359 "push" 359 360 "pull" 360 361 "mailers"
+15 -7
pkgs/applications/audio/mopidy/bandcamp.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + pythonPackages, 4 4 fetchPypi, 5 5 mopidy, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 9 - pname = "Mopidy-Bandcamp"; 8 + pythonPackages.buildPythonApplication rec { 9 + pname = "mopidy-bandcamp"; 10 10 version = "1.1.5"; 11 - format = "setuptools"; 11 + pyproject = true; 12 + 12 13 src = fetchPypi { 13 - inherit pname version; 14 + inherit version; 15 + pname = "Mopidy-Bandcamp"; 14 16 hash = "sha256-wg9zcOKfZQRhpyA1Cu5wvdwKpmrlcr2m9mrqBHgUXAQ="; 15 17 }; 16 18 17 - propagatedBuildInputs = with python3Packages; [ 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 18 24 mopidy 19 - pykka 25 + pythonPackages.pykka 20 26 ]; 27 + 28 + pythonImportsCheck = [ "mopidy_bandcamp" ]; 21 29 22 30 meta = with lib; { 23 31 description = "Mopidy extension for playing music from bandcamp";
+18 -14
pkgs/applications/audio/mopidy/iris.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + pythonPackages, 4 4 fetchPypi, 5 5 mopidy, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 9 - pname = "Mopidy-Iris"; 8 + pythonPackages.buildPythonApplication rec { 9 + pname = "mopidy-iris"; 10 10 version = "3.69.3"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 - inherit pname version; 14 + inherit version; 15 + pname = "Mopidy-Iris"; 15 16 hash = "sha256-PEAXnapiyxozijR053I7zQYRYLeDOV719L0QbO2r4r4="; 16 17 }; 17 18 18 - propagatedBuildInputs = 19 - [ 20 - mopidy 21 - ] 22 - ++ (with python3Packages; [ 23 - configobj 24 - requests 25 - tornado 26 - ]); 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 24 + mopidy 25 + pythonPackages.configobj 26 + pythonPackages.requests 27 + pythonPackages.tornado 28 + ]; 27 29 28 30 # no tests implemented 29 31 doCheck = false; 32 + 33 + pythonImportsCheck = [ "mopidy_iris" ]; 30 34 31 35 meta = with lib; { 32 36 homepage = "https://github.com/jaedb/Iris";
+8 -6
pkgs/applications/audio/mopidy/jellyfin.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + pythonPackages, 4 4 fetchPypi, 5 5 mopidy, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 8 + pythonPackages.buildPythonApplication rec { 9 9 pname = "mopidy-jellyfin"; 10 10 version = "1.0.6"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit version; ··· 16 16 hash = "sha256-IKCPypMuluR0+mMALp8lB1oB1pSw4rN4rOl/eKn+Qvo="; 17 17 }; 18 18 19 - propagatedBuildInputs = [ 19 + build-system = [ pythonPackages.setuptools ]; 20 + 21 + dependencies = [ 20 22 mopidy 21 - python3Packages.unidecode 22 - python3Packages.websocket-client 23 + pythonPackages.unidecode 24 + pythonPackages.websocket-client 23 25 ]; 24 26 25 27 # no tests implemented
+13 -7
pkgs/applications/audio/mopidy/local.nix
··· 1 1 { 2 2 lib, 3 3 mopidy, 4 - python3Packages, 4 + pythonPackages, 5 5 fetchPypi, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 9 - pname = "Mopidy-Local"; 8 + pythonPackages.buildPythonApplication rec { 9 + pname = "mopidy-local"; 10 10 version = "3.3.0"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit version; ··· 16 16 hash = "sha256-y6btbGk5UiVan178x7d9jq5OTnKMbuliHv0aRxuZK3o="; 17 17 }; 18 18 19 - propagatedBuildInputs = [ 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 20 24 mopidy 21 - python3Packages.uritools 25 + pythonPackages.uritools 22 26 ]; 23 27 24 28 nativeCheckInputs = [ 25 - python3Packages.pytestCheckHook 29 + pythonPackages.pytestCheckHook 26 30 ]; 31 + 32 + pythonImportsCheck = [ "mopidy_local" ]; 27 33 28 34 meta = with lib; { 29 35 homepage = "https://github.com/mopidy/mopidy-local";
+10 -4
pkgs/applications/audio/mopidy/moped.nix
··· 7 7 }: 8 8 9 9 pythonPackages.buildPythonApplication rec { 10 - pname = "Mopidy-Moped"; 10 + pname = "mopidy-moped"; 11 11 version = "0.7.1"; 12 - format = "setuptools"; 12 + pyproject = true; 13 13 14 14 src = fetchPypi { 15 - inherit pname version; 15 + inherit version; 16 + pname = "Mopidy-Moped"; 16 17 sha256 = "15461174037d87af93dd59a236d4275c5abf71cea0670ffff24a7d0399a8a2e4"; 17 18 }; 18 19 19 20 LC_ALL = "en_US.UTF-8"; 20 21 buildInputs = [ glibcLocales ]; 21 - propagatedBuildInputs = [ mopidy ]; 22 + 23 + build-system = [ pythonPackages.setuptools ]; 24 + 25 + dependencies = [ mopidy ]; 22 26 23 27 # no tests implemented 24 28 doCheck = false; 29 + 30 + pythonImportsCheck = [ "mopidy_moped" ]; 25 31 26 32 meta = with lib; { 27 33 homepage = "https://github.com/martijnboland/moped";
+20 -19
pkgs/applications/audio/mopidy/mopidy.nix
··· 14 14 pythonPackages.buildPythonApplication rec { 15 15 pname = "mopidy"; 16 16 version = "3.4.2"; 17 - format = "setuptools"; 17 + pyproject = true; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "mopidy"; 21 21 repo = "mopidy"; 22 - rev = "refs/tags/v${version}"; 23 - sha256 = "sha256-2OFav2HaQq/RphmZxLyL1n3suwzt1Y/d4h33EdbStjk="; 22 + tag = "v${version}"; 23 + hash = "sha256-2OFav2HaQq/RphmZxLyL1n3suwzt1Y/d4h33EdbStjk="; 24 24 }; 25 25 26 26 nativeBuildInputs = [ wrapGAppsNoGuiHook ]; ··· 50 50 } 51 51 )) 52 52 ] 53 - ++ lib.optional (!stdenv.hostPlatform.isDarwin) pipewire; 53 + ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ pipewire ]; 54 + 55 + propagatedNativeBuildInputs = [ gobject-introspection ]; 56 + 57 + propagatedBuildInputs = [ gobject-introspection ]; 54 58 55 - propagatedBuildInputs = 56 - [ gobject-introspection ] 57 - ++ ( 58 - with pythonPackages; 59 - [ 60 - gst-python 61 - pygobject3 62 - pykka 63 - requests 64 - setuptools 65 - tornado 66 - ] 67 - ++ lib.optional (!stdenv.hostPlatform.isDarwin) dbus-python 68 - ); 59 + build-system = [ pythonPackages.setuptools ]; 69 60 70 - propagatedNativeBuildInputs = [ gobject-introspection ]; 61 + dependencies = 62 + with pythonPackages; 63 + [ 64 + gst-python 65 + pygobject3 66 + pykka 67 + requests 68 + setuptools 69 + tornado 70 + ] 71 + ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ dbus-python ]; 71 72 72 73 # There are no tests 73 74 doCheck = false;
+12 -5
pkgs/applications/audio/mopidy/mopify.nix
··· 6 6 }: 7 7 8 8 pythonPackages.buildPythonApplication rec { 9 - pname = "Mopidy-Mopify"; 9 + pname = "mopidy-mopify"; 10 10 version = "1.7.3"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 - inherit pname version; 14 + inherit version; 15 + pname = "Mopidy-Mopify"; 15 16 hash = "sha256-RlCC+39zC+LeA/QDWPHYx5TrEwOgVrnvcH1Xg12qSLE="; 16 17 }; 17 18 18 - propagatedBuildInputs = with pythonPackages; [ 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 19 24 mopidy 20 - configobj 25 + pythonPackages.configobj 21 26 ]; 22 27 23 28 # no tests implemented 24 29 doCheck = false; 30 + 31 + pythonImportsCheck = [ "mopidy_mopify" ]; 25 32 26 33 meta = with lib; { 27 34 homepage = "https://github.com/dirkgroenen/mopidy-mopify";
+9 -6
pkgs/applications/audio/mopidy/mpd.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + pythonPackages, 4 4 fetchPypi, 5 5 mopidy, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 9 - pname = "Mopidy-MPD"; 8 + pythonPackages.buildPythonApplication rec { 9 + pname = "mopidy-mpd"; 10 10 version = "3.3.0"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 - inherit pname version; 14 + inherit version; 15 + pname = "Mopidy-MPD"; 15 16 hash = "sha256-CeLMRqj9cwBvQrOx7XHVV8MjDjwOosONVlsN2o+vTVM="; 16 17 }; 17 18 18 - propagatedBuildInputs = [ mopidy ]; 19 + build-system = [ pythonPackages.setuptools ]; 20 + 21 + dependencies = [ mopidy ]; 19 22 20 23 # no tests implemented 21 24 doCheck = false;
+11 -5
pkgs/applications/audio/mopidy/mpris.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + pythonPackages, 4 4 fetchPypi, 5 5 mopidy, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 8 + pythonPackages.buildPythonApplication rec { 9 9 pname = "mopidy-mpris"; 10 10 version = "3.0.3"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit version; ··· 16 16 hash = "sha256-rHQgNIyludTEL7RDC8dIpyGTMOt1Tazn6i/orKlSP4U="; 17 17 }; 18 18 19 - propagatedBuildInputs = [ 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 20 24 mopidy 21 - python3Packages.pydbus 25 + pythonPackages.pydbus 22 26 ]; 23 27 24 28 doCheck = false; 29 + 30 + pythonImportsCheck = [ "mopidy_mpris" ]; 25 31 26 32 meta = with lib; { 27 33 homepage = "https://www.mopidy.com/";
+6 -2
pkgs/applications/audio/mopidy/muse.nix
··· 8 8 pythonPackages.buildPythonApplication rec { 9 9 pname = "mopidy-muse"; 10 10 version = "0.0.33"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit version; ··· 16 16 hash = "sha256-CEPAPWtMrD+HljyqBB6EAyGVeOjzkvVoEywlE4XEJGs="; 17 17 }; 18 18 19 - propagatedBuildInputs = [ 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 20 24 mopidy 21 25 pythonPackages.pykka 22 26 ];
+8 -4
pkgs/applications/audio/mopidy/musicbox-webclient.nix
··· 8 8 pythonPackages.buildPythonApplication rec { 9 9 pname = "mopidy-musicbox-webclient"; 10 10 version = "3.1.0"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "pimusicbox"; 15 - repo = pname; 16 - rev = "v${version}"; 15 + repo = "mopidy-musicbox-webclient"; 16 + tag = "v${version}"; 17 17 sha256 = "1lzarazq67gciyn6r8cdms0f7j0ayyfwhpf28z93ydb280mfrrb9"; 18 18 }; 19 19 20 - propagatedBuildInputs = [ 20 + build-system = [ 21 + pythonPackages.setuptools 22 + ]; 23 + 24 + dependencies = [ 21 25 mopidy 22 26 ]; 23 27
+11 -4
pkgs/applications/audio/mopidy/notify.nix
··· 6 6 }: 7 7 8 8 pythonPackages.buildPythonApplication rec { 9 - pname = "Mopidy-Notify"; 9 + pname = "mopidy-notify"; 10 10 version = "0.2.1"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 - inherit pname version; 14 + inherit version; 15 + pname = "Mopidy-Notify"; 15 16 hash = "sha256-8FT4O4k0wEsdHA1vJaOW9UamJ3QLyO47HwL5XcSU3Pc="; 16 17 }; 17 18 18 - propagatedBuildInputs = [ 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + pythonRelaxDeps = [ "pykka" ]; 24 + 25 + dependencies = [ 19 26 mopidy 20 27 pythonPackages.pydbus 21 28 ];
+14 -8
pkgs/applications/audio/mopidy/podcast.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + pythonPackages, 4 4 fetchPypi, 5 5 mopidy, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 8 + pythonPackages.buildPythonApplication rec { 9 9 pname = "mopidy-podcast"; 10 10 version = "3.0.1"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit version; ··· 16 16 hash = "sha256-grNPVEVM2PlpYhBXe6sabFjWVB9+q+apIRjcHUxH52A="; 17 17 }; 18 18 19 - propagatedBuildInputs = [ 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 20 24 mopidy 21 - python3Packages.cachetools 22 - python3Packages.uritools 25 + pythonPackages.cachetools 26 + pythonPackages.uritools 23 27 ]; 24 28 25 - nativeCheckInputs = with python3Packages; [ 26 - pytestCheckHook 29 + nativeCheckInputs = [ 30 + pythonPackages.pytestCheckHook 27 31 ]; 32 + 33 + pythonImportsCheck = [ "mopidy_podcast" ]; 28 34 29 35 meta = with lib; { 30 36 homepage = "https://github.com/tkem/mopidy-podcast";
+12 -7
pkgs/applications/audio/mopidy/scrobbler.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + pythonPackages, 4 4 fetchPypi, 5 5 mopidy, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 9 - pname = "Mopidy-Scrobbler"; 8 + pythonPackages.buildPythonApplication rec { 9 + pname = "mopidy-scrobbler"; 10 10 version = "2.0.1"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 - inherit pname version; 14 + inherit version; 15 + pname = "Mopidy-Scrobbler"; 15 16 sha256 = "11vxgax4xgkggnq4fr1rh2rcvzspkkimck5p3h4phdj3qpnj0680"; 16 17 }; 17 18 18 - propagatedBuildInputs = with python3Packages; [ 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 19 24 mopidy 20 - pylast 25 + pythonPackages.pylast 21 26 ]; 22 27 23 28 # no tests implemented
+12 -4
pkgs/applications/audio/mopidy/somafm.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + pythonPackages, 4 4 fetchPypi, 5 5 mopidy, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 8 + pythonPackages.buildPythonApplication rec { 9 9 pname = "mopidy-somafm"; 10 10 version = "2.0.2"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit version; ··· 16 16 sha256 = "DC0emxkoWfjGHih2C8nINBFByf521Xf+3Ks4JRxNPLM="; 17 17 }; 18 18 19 - propagatedBuildInputs = [ mopidy ]; 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 24 + mopidy 25 + ]; 20 26 21 27 doCheck = false; 28 + 29 + pythonImportsCheck = [ "mopidy_somafm" ]; 22 30 23 31 meta = with lib; { 24 32 homepage = "https://www.mopidy.com/";
+9 -3
pkgs/applications/audio/mopidy/soundcloud.nix
··· 8 8 pythonPackages.buildPythonApplication rec { 9 9 pname = "mopidy-soundcloud"; 10 10 version = "3.0.2"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "mopidy"; 15 15 repo = "mopidy-soundcloud"; 16 - rev = "v${version}"; 16 + tag = "v${version}"; 17 17 sha256 = "sha256-1Qqbfw6NZ+2K1w+abMBfWo0RAmIRbNyIErEmalmWJ0s="; 18 18 }; 19 19 20 - propagatedBuildInputs = [ 20 + build-system = [ 21 + pythonPackages.setuptools 22 + ]; 23 + 24 + dependencies = [ 21 25 mopidy 22 26 pythonPackages.beautifulsoup4 23 27 ]; 24 28 25 29 doCheck = false; 30 + 31 + pythonImportsCheck = [ "mopidy_soundcloud" ]; 26 32 27 33 meta = with lib; { 28 34 description = "Mopidy extension for playing music from SoundCloud";
+13 -5
pkgs/applications/audio/mopidy/subidy.nix
··· 8 8 pythonPackages.buildPythonApplication rec { 9 9 pname = "mopidy-subidy"; 10 10 version = "1.0.0"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "Prior99"; 15 - repo = pname; 16 - rev = version; 15 + repo = "mopidy-subidy"; 16 + tag = version; 17 17 sha256 = "0c5ghhhrj5v3yp4zmll9ari6r5c6ha8c1izwqshvadn40b02q7xz"; 18 18 }; 19 19 20 - propagatedBuildInputs = [ 20 + build-system = [ 21 + pythonPackages.setuptools 22 + ]; 23 + 24 + dependencies = [ 21 25 mopidy 22 26 pythonPackages.py-sonic 23 27 ]; 24 28 25 - nativeCheckInputs = with pythonPackages; [ pytestCheckHook ]; 29 + nativeCheckInputs = [ 30 + pythonPackages.pytestCheckHook 31 + ]; 32 + 33 + pythonImportsCheck = [ "mopidy_subidy" ]; 26 34 27 35 meta = with lib; { 28 36 homepage = "https://www.mopidy.com/";
+8 -4
pkgs/applications/audio/mopidy/tunein.nix
··· 1 1 { 2 2 lib, 3 - python3Packages, 3 + pythonPackages, 4 4 fetchPypi, 5 5 mopidy, 6 6 }: 7 7 8 - python3Packages.buildPythonApplication rec { 8 + pythonPackages.buildPythonApplication rec { 9 9 pname = "mopidy-tunein"; 10 10 version = "1.1.0"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit version; ··· 16 16 sha256 = "01y1asylscr73yqx071imhrzfzlg07wmqqzkdvpgm6r35marc2li"; 17 17 }; 18 18 19 - propagatedBuildInputs = [ 19 + build-system = [ 20 + pythonPackages.setuptools 21 + ]; 22 + 23 + dependencies = [ 20 24 mopidy 21 25 ]; 22 26
+25 -26
pkgs/applications/audio/mopidy/youtube.nix
··· 1 1 { 2 2 lib, 3 3 fetchFromGitHub, 4 - python3, 4 + pythonPackages, 5 5 mopidy, 6 - yt-dlp, 6 + pkgs, 7 7 extraPkgs ? pkgs: [ ], 8 8 }: 9 9 10 - python3.pkgs.buildPythonApplication rec { 10 + pythonPackages.buildPythonApplication rec { 11 11 pname = "mopidy-youtube"; 12 12 version = "3.7"; 13 - format = "setuptools"; 13 + pyproject = true; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "natumbri"; 17 - repo = pname; 18 - rev = "refs/tags/v${version}"; 17 + repo = "mopidy-youtube"; 18 + tag = "v${version}"; 19 19 hash = "sha256-iFt7r8Ljymc+grNJiOClTHkZOeo7AcYpcNc8tLMPROk="; 20 20 }; 21 21 22 - propagatedBuildInputs = 23 - with python3.pkgs; 24 - [ 25 - beautifulsoup4 26 - cachetools 27 - pykka 28 - requests 29 - ytmusicapi 30 - ] 31 - ++ [ 32 - mopidy 33 - yt-dlp 34 - ] 35 - ++ extraPkgs pkgs; 36 - 37 - nativeCheckInputs = with python3.pkgs; [ 38 - vcrpy 39 - pytestCheckHook 40 - ]; 41 - 42 22 postPatch = '' 43 23 substituteInPlace mopidy_youtube/youtube.py \ 44 24 --replace-fail 'youtube_dl_package = "youtube_dl"' 'youtube_dl_package = "yt_dlp"' ··· 48 28 'patcher = mock.patch.object(youtube, "youtube_dl", spec=yt_dlp)' \ 49 29 --replace-fail '"youtube_dl_package": "youtube_dl",' '"youtube_dl_package": "yt_dlp",' 50 30 ''; 31 + 32 + build-system = [ 33 + pythonPackages.setuptools 34 + ]; 35 + 36 + dependencies = [ 37 + mopidy 38 + pythonPackages.beautifulsoup4 39 + pythonPackages.cachetools 40 + pythonPackages.pykka 41 + pythonPackages.requests 42 + pythonPackages.ytmusicapi 43 + pythonPackages.yt-dlp 44 + ] ++ extraPkgs pkgs; # should we remove this? If we do, don't forget to also change the docs! 45 + 46 + nativeCheckInputs = with pythonPackages; [ 47 + vcrpy 48 + pytestCheckHook 49 + ]; 51 50 52 51 disabledTests = [ 53 52 # Test requires a YouTube API key
+4 -6
pkgs/applications/misc/rofi-rbw/default.nix
··· 3 3 buildPythonApplication, 4 4 fetchFromGitHub, 5 5 configargparse, 6 - setuptools, 7 - poetry-core, 6 + hatchling, 8 7 rbw, 9 8 10 9 waylandSupport ? false, ··· 18 17 19 18 buildPythonApplication rec { 20 19 pname = "rofi-rbw"; 21 - version = "1.4.2"; 20 + version = "1.5.1"; 22 21 format = "pyproject"; 23 22 24 23 src = fetchFromGitHub { 25 24 owner = "fdw"; 26 25 repo = "rofi-rbw"; 27 26 tag = version; 28 - hash = "sha256-wUb89GkNB2lEfb42hMvcxpbjc1O+wx8AkFjq7aJwAko="; 27 + hash = "sha256-Qdbz3UjWMCuJUzR6UMt/apt+OjMAr2U7uMtv9wxEZKE="; 29 28 }; 30 29 31 30 nativeBuildInputs = [ 32 - setuptools 33 - poetry-core 31 + hatchling 34 32 ]; 35 33 36 34 buildInputs =
+397 -397
pkgs/applications/networking/mailreaders/thunderbird-bin/release_esr_sources.nix
··· 1 1 { 2 - version = "128.11.1esr"; 2 + version = "140.0.1esr"; 3 3 sources = [ 4 4 { 5 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/af/thunderbird-128.11.1esr.tar.bz2"; 5 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/af/thunderbird-140.0.1esr.tar.xz"; 6 6 locale = "af"; 7 7 arch = "linux-x86_64"; 8 - sha256 = "4c5d8bfcfa05423efd1f4d0fd0848ff72ab9fd31ff3e9eb11f3685c5dfb68e04"; 8 + sha256 = "06f915e75f3a2b5854ca5291b2996c6829044ba5c951b5e0589afba0cee3165c"; 9 9 } 10 10 { 11 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ar/thunderbird-128.11.1esr.tar.bz2"; 11 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ar/thunderbird-140.0.1esr.tar.xz"; 12 12 locale = "ar"; 13 13 arch = "linux-x86_64"; 14 - sha256 = "c40f9151efc1a580fd822ed0eaadb35ce56df7f9ec52941eb01252602f0f0d54"; 14 + sha256 = "f9e977ea29c2323477e689dd245fea48b6986bbfc5cb5bf1c11ff1816129a6ec"; 15 15 } 16 16 { 17 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ast/thunderbird-128.11.1esr.tar.bz2"; 17 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ast/thunderbird-140.0.1esr.tar.xz"; 18 18 locale = "ast"; 19 19 arch = "linux-x86_64"; 20 - sha256 = "7a519cee82ec611073e8b0ae4b24ca59b21cccd46e795d699330fb87f65ed1eb"; 20 + sha256 = "bfb135159eace51cebca93a67a04b26bb8193ca74380bf91925e44b8f5f35062"; 21 21 } 22 22 { 23 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/be/thunderbird-128.11.1esr.tar.bz2"; 23 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/be/thunderbird-140.0.1esr.tar.xz"; 24 24 locale = "be"; 25 25 arch = "linux-x86_64"; 26 - sha256 = "eca443f0501b7441c71c71f88b0710dc7c75e28e90819e74b2f920959b30c7bb"; 26 + sha256 = "87e4805cb4d75c099933fe130b2e9e49cce6d4ffcae96a5db4e7063f15015c0e"; 27 27 } 28 28 { 29 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/bg/thunderbird-128.11.1esr.tar.bz2"; 29 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/bg/thunderbird-140.0.1esr.tar.xz"; 30 30 locale = "bg"; 31 31 arch = "linux-x86_64"; 32 - sha256 = "eb8a824f9dc96d6ad19b612969d6643a1f2e90e7898eaf0998bc95c97bc0a0d2"; 32 + sha256 = "73070f8fd509855e168f9017e0a055c2fc82491672defc5254628493739bc172"; 33 33 } 34 34 { 35 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/br/thunderbird-128.11.1esr.tar.bz2"; 35 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/br/thunderbird-140.0.1esr.tar.xz"; 36 36 locale = "br"; 37 37 arch = "linux-x86_64"; 38 - sha256 = "5f9fd740cacd732375a65d9afa85447f5ac6d1d3d24303ffd6f5d8c524aadb10"; 38 + sha256 = "0bc1e74090f65343bb02693192dc2e089bbf794f24779260ec1e9b0b38bfaca2"; 39 39 } 40 40 { 41 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ca/thunderbird-128.11.1esr.tar.bz2"; 41 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ca/thunderbird-140.0.1esr.tar.xz"; 42 42 locale = "ca"; 43 43 arch = "linux-x86_64"; 44 - sha256 = "548b0a8d16cc7ef934974b71fc292f3b25dda8df187d24ad6325a3ec728159e9"; 44 + sha256 = "165c01a14e5cb97ef930061c91b35359de51f34099726d4e41cf36daa01997c7"; 45 45 } 46 46 { 47 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/cak/thunderbird-128.11.1esr.tar.bz2"; 47 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/cak/thunderbird-140.0.1esr.tar.xz"; 48 48 locale = "cak"; 49 49 arch = "linux-x86_64"; 50 - sha256 = "b4c6a6ff1826481a6344eb02cd02de7b36c11741e36092e3067ec2f8611e8896"; 50 + sha256 = "fe15b4171d98d5c4efc5fb3ec1900acb1a2b3e5d95352b16f6447845fe346d7b"; 51 51 } 52 52 { 53 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/cs/thunderbird-128.11.1esr.tar.bz2"; 53 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/cs/thunderbird-140.0.1esr.tar.xz"; 54 54 locale = "cs"; 55 55 arch = "linux-x86_64"; 56 - sha256 = "5ed093659df290708a4c5491a735cfacd48b05c0c3ac12fb5b4866bafe88ed7f"; 56 + sha256 = "6d352b072fc5c8a30c1bea470ece25f02e4e28819252beb3315d5a25310050a8"; 57 57 } 58 58 { 59 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/cy/thunderbird-128.11.1esr.tar.bz2"; 59 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/cy/thunderbird-140.0.1esr.tar.xz"; 60 60 locale = "cy"; 61 61 arch = "linux-x86_64"; 62 - sha256 = "faaed9ba9c8c77d5746fb2281b909fead2a9c4bf22693228540fc706c5263d98"; 62 + sha256 = "9850cab77ccb9f190e891d54b41870027f954fe0d7181125ed561fb8bd8a25c6"; 63 63 } 64 64 { 65 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/da/thunderbird-128.11.1esr.tar.bz2"; 65 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/da/thunderbird-140.0.1esr.tar.xz"; 66 66 locale = "da"; 67 67 arch = "linux-x86_64"; 68 - sha256 = "4f45cbc3ecff2e608c210ae2cb9ea1cdbd4a31a7133044b7e37e0fe3d51e1dd0"; 68 + sha256 = "b5d83580e2a47f47294eb1c44b99e76ff3197a452c0bf0d6b43aa0b8a9304cec"; 69 69 } 70 70 { 71 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/de/thunderbird-128.11.1esr.tar.bz2"; 71 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/de/thunderbird-140.0.1esr.tar.xz"; 72 72 locale = "de"; 73 73 arch = "linux-x86_64"; 74 - sha256 = "00f55afea34eace46798661c3f4fd15deb5fb23f6fce595af15a8628e81fce74"; 74 + sha256 = "d2350a93bb8dee76c66b803938f03f26e090a6f0a8479cd3caaa6ce53cd971ed"; 75 75 } 76 76 { 77 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/dsb/thunderbird-128.11.1esr.tar.bz2"; 77 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/dsb/thunderbird-140.0.1esr.tar.xz"; 78 78 locale = "dsb"; 79 79 arch = "linux-x86_64"; 80 - sha256 = "5cefcd091aaab2e2d7dff6215bb32cc750f59c245688b67908d8350ea4c6aa8f"; 80 + sha256 = "22bd1b90d9f66935c36bd401fb26f06e4e9058efffd57b11497b562c64c33232"; 81 81 } 82 82 { 83 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/el/thunderbird-128.11.1esr.tar.bz2"; 83 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/el/thunderbird-140.0.1esr.tar.xz"; 84 84 locale = "el"; 85 85 arch = "linux-x86_64"; 86 - sha256 = "09fb56913dcf3b5a4a5aac77aec83d2981211dd12160382e6de6f8de08521419"; 86 + sha256 = "d76b19a19955894a8c5e41c141462ee461777dc835f3f0521b0002b72a5e69ee"; 87 87 } 88 88 { 89 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/en-CA/thunderbird-128.11.1esr.tar.bz2"; 89 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/en-CA/thunderbird-140.0.1esr.tar.xz"; 90 90 locale = "en-CA"; 91 91 arch = "linux-x86_64"; 92 - sha256 = "48c1fef2388352fed9a4aca79bf8b08e45a5de7bb8f0c14ce7024559f5ade487"; 92 + sha256 = "9640f19005a7edab422d8f6ae8f30ff5972e7ba4d2ea3a4e33327af179ac3bb8"; 93 93 } 94 94 { 95 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/en-GB/thunderbird-128.11.1esr.tar.bz2"; 95 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/en-GB/thunderbird-140.0.1esr.tar.xz"; 96 96 locale = "en-GB"; 97 97 arch = "linux-x86_64"; 98 - sha256 = "7d58ff808050a56f3d15429926947909a85a08b918f5c998d1b3dbbb92fa20b6"; 98 + sha256 = "aad201099bfc714adf49a2c48f6014d032aa0b769a5fc36a79b1c69d45e7214a"; 99 99 } 100 100 { 101 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/en-US/thunderbird-128.11.1esr.tar.bz2"; 101 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/en-US/thunderbird-140.0.1esr.tar.xz"; 102 102 locale = "en-US"; 103 103 arch = "linux-x86_64"; 104 - sha256 = "a9ce7e6d976fcb6f666ac8bbda0341eb88325de92d46cbf650402014cc94cc1d"; 104 + sha256 = "80cf82ad997397830e740dd9d9434251339ac070330bf733117b465b659151f3"; 105 105 } 106 106 { 107 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/es-AR/thunderbird-128.11.1esr.tar.bz2"; 107 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/es-AR/thunderbird-140.0.1esr.tar.xz"; 108 108 locale = "es-AR"; 109 109 arch = "linux-x86_64"; 110 - sha256 = "4a0d95b1eed90999ab1a991cb485004955d6fa657f0606cde3836bda436f624b"; 110 + sha256 = "d08a3bcd79614df769d394ab26adca2aa2af9555b81cc21907e5427a06688998"; 111 111 } 112 112 { 113 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/es-ES/thunderbird-128.11.1esr.tar.bz2"; 113 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/es-ES/thunderbird-140.0.1esr.tar.xz"; 114 114 locale = "es-ES"; 115 115 arch = "linux-x86_64"; 116 - sha256 = "f566a2f28b45d7babac97c1fd5e91ecd613493f62a6bb27e6f28f2f63dd05b83"; 116 + sha256 = "e5c869674940aa0d250709e3e7f863c63fc16441fb3d42b2eb4748700407c1c9"; 117 117 } 118 118 { 119 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/es-MX/thunderbird-128.11.1esr.tar.bz2"; 119 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/es-MX/thunderbird-140.0.1esr.tar.xz"; 120 120 locale = "es-MX"; 121 121 arch = "linux-x86_64"; 122 - sha256 = "aa579b2eb5106ed37cc7a80bb9a69cbed691e54bef0c154f350baf9024e96c66"; 122 + sha256 = "56b7a598b06101368f30ff3e6af79f6a14fdeb42eb2f4480c4c01cdf586528e3"; 123 123 } 124 124 { 125 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/et/thunderbird-128.11.1esr.tar.bz2"; 125 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/et/thunderbird-140.0.1esr.tar.xz"; 126 126 locale = "et"; 127 127 arch = "linux-x86_64"; 128 - sha256 = "0ec388dc71bb31a4729cc34b348f7ef6c1aa456e75958e18f0e1a0aa3487485c"; 128 + sha256 = "c15efe7a3ee01ac382647f6fae52cda012e8164246eabe9ce70e099d3984de2d"; 129 129 } 130 130 { 131 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/eu/thunderbird-128.11.1esr.tar.bz2"; 131 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/eu/thunderbird-140.0.1esr.tar.xz"; 132 132 locale = "eu"; 133 133 arch = "linux-x86_64"; 134 - sha256 = "c3a0a7a08eefa9b20c7eb0f00b380f3b59019585587ef7a7c7518376426eb717"; 134 + sha256 = "6c6731ad5e8fb00495029d281063bb2d66f7a76fe4ff827019c2647ffe8da223"; 135 135 } 136 136 { 137 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/fi/thunderbird-128.11.1esr.tar.bz2"; 137 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/fi/thunderbird-140.0.1esr.tar.xz"; 138 138 locale = "fi"; 139 139 arch = "linux-x86_64"; 140 - sha256 = "48724600f5dbee5d8bf01025fd85fd8605ae3328cbba36a0cf66a5fb36f76215"; 140 + sha256 = "d9f7a2c19e1982a043b8cdcdfff935541810744fda6128a2049bb1594dedfbae"; 141 141 } 142 142 { 143 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/fr/thunderbird-128.11.1esr.tar.bz2"; 143 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/fr/thunderbird-140.0.1esr.tar.xz"; 144 144 locale = "fr"; 145 145 arch = "linux-x86_64"; 146 - sha256 = "9d046568bdb3914fb039ccd7ed9f7a6eb57ab8ec654be89c4e7a46e7b09e106b"; 146 + sha256 = "369acae933d265958e9d5fcfdba0acffa7bd439ec37e7b5fb374653f2ad04522"; 147 147 } 148 148 { 149 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/fy-NL/thunderbird-128.11.1esr.tar.bz2"; 149 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/fy-NL/thunderbird-140.0.1esr.tar.xz"; 150 150 locale = "fy-NL"; 151 151 arch = "linux-x86_64"; 152 - sha256 = "1928a51ce10f959ba5774d278e79fa65d3fa9518d9f51f6401bbf48ea9722192"; 152 + sha256 = "046e818ec7a8beeaaaf09446f8d8696dd76ac2e8b77c81a64e5c1dac55253fef"; 153 153 } 154 154 { 155 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ga-IE/thunderbird-128.11.1esr.tar.bz2"; 155 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ga-IE/thunderbird-140.0.1esr.tar.xz"; 156 156 locale = "ga-IE"; 157 157 arch = "linux-x86_64"; 158 - sha256 = "d3cb2ae096f89d4435df4f478b3fbd10a48fcb99dd53f3fd9e1ab63fb4fe2075"; 158 + sha256 = "37c56eb7e5b5d954ff410195e215c2c0027a3bbec9a48a33385ec11d77cef8f1"; 159 159 } 160 160 { 161 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/gd/thunderbird-128.11.1esr.tar.bz2"; 161 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/gd/thunderbird-140.0.1esr.tar.xz"; 162 162 locale = "gd"; 163 163 arch = "linux-x86_64"; 164 - sha256 = "ed52f16a9c754d7e12bdc7bc6bb5d3c3273352569ac075120426bc54c495d404"; 164 + sha256 = "79f15b5de5d952bd8bcafa04bad730dcff9c9acbdec4ebf0bdadb8cffe6822f5"; 165 165 } 166 166 { 167 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/gl/thunderbird-128.11.1esr.tar.bz2"; 167 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/gl/thunderbird-140.0.1esr.tar.xz"; 168 168 locale = "gl"; 169 169 arch = "linux-x86_64"; 170 - sha256 = "b160144e23fb630f522fe0ddcb474c547f7f2c81c566611bd3139ac43cebdf9a"; 170 + sha256 = "91ff57794a1c65c972568e15a1f9052b191ed326587043988199a4fa725fcd5e"; 171 171 } 172 172 { 173 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/he/thunderbird-128.11.1esr.tar.bz2"; 173 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/he/thunderbird-140.0.1esr.tar.xz"; 174 174 locale = "he"; 175 175 arch = "linux-x86_64"; 176 - sha256 = "08088bd8e492ee0f0408bd1126b4f0bf1dc713bfea540d0fe646ec1813705e5a"; 176 + sha256 = "3cbed1bb7a7b90badf41f54babc59303e8a3d63eb891a19a0e6c93199798404e"; 177 177 } 178 178 { 179 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/hr/thunderbird-128.11.1esr.tar.bz2"; 179 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/hr/thunderbird-140.0.1esr.tar.xz"; 180 180 locale = "hr"; 181 181 arch = "linux-x86_64"; 182 - sha256 = "30a797e5eda3b45cfaec58d4af61ec8ebedccfd8c7f7fcbd875bbb0f5bb1a2bd"; 182 + sha256 = "5635413f7f86d8bf5ccec7ef98b5a72e724b96e41d7079851e1bac2cf57d8062"; 183 183 } 184 184 { 185 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/hsb/thunderbird-128.11.1esr.tar.bz2"; 185 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/hsb/thunderbird-140.0.1esr.tar.xz"; 186 186 locale = "hsb"; 187 187 arch = "linux-x86_64"; 188 - sha256 = "edec321ce22bbc1f23186acc526afddf7fe1f31542609f176550f2d064cff8c9"; 188 + sha256 = "6aba8d1ebfa2fb886477a5250f4ce16bb216f7c475ab56faa1bcc2598e3e360c"; 189 189 } 190 190 { 191 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/hu/thunderbird-128.11.1esr.tar.bz2"; 191 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/hu/thunderbird-140.0.1esr.tar.xz"; 192 192 locale = "hu"; 193 193 arch = "linux-x86_64"; 194 - sha256 = "b09425982fb5268104f41f6c9f4575c2a0c826c493131da48044f6916a53ff8d"; 194 + sha256 = "97274a67e2632130a081f25836068ed1d629b0e24ef65a86b85e2f1dc50314a3"; 195 195 } 196 196 { 197 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/hy-AM/thunderbird-128.11.1esr.tar.bz2"; 197 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/hy-AM/thunderbird-140.0.1esr.tar.xz"; 198 198 locale = "hy-AM"; 199 199 arch = "linux-x86_64"; 200 - sha256 = "08db6f74f258e21a23a730a5dd9725c75d1e3125f164f41ba1023fa43bc2ba19"; 200 + sha256 = "b3cc90a46dd5a0604ecc6dba3129dc999f6ccdafbf559dc6abad476b9f644ff6"; 201 201 } 202 202 { 203 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/id/thunderbird-128.11.1esr.tar.bz2"; 203 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/id/thunderbird-140.0.1esr.tar.xz"; 204 204 locale = "id"; 205 205 arch = "linux-x86_64"; 206 - sha256 = "737bdcba6ada377cc8729fb4b5ad115062dca1398949cdffab12bcfbacbbeb09"; 206 + sha256 = "015e2ac23a0129ee0bb4f8c078f6d604361b2b08cecb54e0ecd98e82f8c87606"; 207 207 } 208 208 { 209 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/is/thunderbird-128.11.1esr.tar.bz2"; 209 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/is/thunderbird-140.0.1esr.tar.xz"; 210 210 locale = "is"; 211 211 arch = "linux-x86_64"; 212 - sha256 = "0b48d0b881d99e91ebb6a62763504fc3fcf941ae3a946b2cff5d557113baea29"; 212 + sha256 = "5d74a5b1e80540e3bdc031752ba0f16257e46c196ba20f34575c900cc741e184"; 213 213 } 214 214 { 215 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/it/thunderbird-128.11.1esr.tar.bz2"; 215 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/it/thunderbird-140.0.1esr.tar.xz"; 216 216 locale = "it"; 217 217 arch = "linux-x86_64"; 218 - sha256 = "54d0a4980828e74ae8605bc3b61e919376e16c016e140667093b1959249061e4"; 218 + sha256 = "36a257fe9b13ac7c95e64c2e16610e50e3faccce3d2e26d1b0c509d898360507"; 219 219 } 220 220 { 221 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ja/thunderbird-128.11.1esr.tar.bz2"; 221 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ja/thunderbird-140.0.1esr.tar.xz"; 222 222 locale = "ja"; 223 223 arch = "linux-x86_64"; 224 - sha256 = "ea466164a5b4a86667ae0b6f85b78f729a2ea548b65a84bbca2b8a8836cb21ca"; 224 + sha256 = "ffa7cd70028112a691066b8dee3903a0404bf57c02751d687ef1bc8e906169f4"; 225 225 } 226 226 { 227 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ka/thunderbird-128.11.1esr.tar.bz2"; 227 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ka/thunderbird-140.0.1esr.tar.xz"; 228 228 locale = "ka"; 229 229 arch = "linux-x86_64"; 230 - sha256 = "93c584f654955026231c4e26c1d25734406044cf53c63d99e1da6ef00ea34c9d"; 230 + sha256 = "2c70ef901bb85e4355a4a86cde4dc4dc3822f198fc39e9abfc47393e9909d813"; 231 231 } 232 232 { 233 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/kab/thunderbird-128.11.1esr.tar.bz2"; 233 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/kab/thunderbird-140.0.1esr.tar.xz"; 234 234 locale = "kab"; 235 235 arch = "linux-x86_64"; 236 - sha256 = "4d155a1e427611c9b7d2e90fa0c03751d45c5273b213b05ec2c3933060cd164a"; 236 + sha256 = "ed4cf54f5673e2ad33942bb2125bed7aece909ec31d6ad9986ed584708b618ea"; 237 237 } 238 238 { 239 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/kk/thunderbird-128.11.1esr.tar.bz2"; 239 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/kk/thunderbird-140.0.1esr.tar.xz"; 240 240 locale = "kk"; 241 241 arch = "linux-x86_64"; 242 - sha256 = "37952480dd1db22937c026ec86353a3fe4d198ea599a8655531867531c26fb57"; 242 + sha256 = "5f5381e871f17921d4978bbce055239bd2358da555a5d4e897b57bc5a47cc2de"; 243 243 } 244 244 { 245 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ko/thunderbird-128.11.1esr.tar.bz2"; 245 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ko/thunderbird-140.0.1esr.tar.xz"; 246 246 locale = "ko"; 247 247 arch = "linux-x86_64"; 248 - sha256 = "2585c98466e0ab121a0218839b25a81933338e6c833d90b7f45a9977b0f5b5cf"; 248 + sha256 = "34c1c3271dea3484d7c30bf61b2a5c5c6229dcb36f36a7aed48bd9264012bd77"; 249 249 } 250 250 { 251 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/lt/thunderbird-128.11.1esr.tar.bz2"; 251 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/lt/thunderbird-140.0.1esr.tar.xz"; 252 252 locale = "lt"; 253 253 arch = "linux-x86_64"; 254 - sha256 = "a8f17cd2ceeae6e8493bc1080a1df398a22606488100e92f9d09734f39f84fc3"; 254 + sha256 = "b5399800a2963d2971ad6b2af9d6120c4360dd036bd615a8d9c6a49d6eb4287a"; 255 255 } 256 256 { 257 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/lv/thunderbird-128.11.1esr.tar.bz2"; 257 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/lv/thunderbird-140.0.1esr.tar.xz"; 258 258 locale = "lv"; 259 259 arch = "linux-x86_64"; 260 - sha256 = "85dfc8450b35967b78cb3c219d243ff03f3647465aeb255b94a4e7f3478dfc89"; 260 + sha256 = "0d52d2b6fc148acba6e539af0b0341567cfcae88759778674838a964bac65755"; 261 261 } 262 262 { 263 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ms/thunderbird-128.11.1esr.tar.bz2"; 263 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ms/thunderbird-140.0.1esr.tar.xz"; 264 264 locale = "ms"; 265 265 arch = "linux-x86_64"; 266 - sha256 = "bbf683df18e06900b76d05e9a0a6db60d6e8626817a2cb416d37028331343ad4"; 266 + sha256 = "a6d87b019565474c1bae994ff194721d1e8c17edcf457b597480e0a8c499add0"; 267 267 } 268 268 { 269 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/nb-NO/thunderbird-128.11.1esr.tar.bz2"; 269 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/nb-NO/thunderbird-140.0.1esr.tar.xz"; 270 270 locale = "nb-NO"; 271 271 arch = "linux-x86_64"; 272 - sha256 = "a0bc5dbe90b850510c070963ea21380ce65eb3f6926710d1bb012cb50d784132"; 272 + sha256 = "83e87a53ac6ffca086a900d019a5665e956e80488f46696d61f81d895a80172d"; 273 273 } 274 274 { 275 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/nl/thunderbird-128.11.1esr.tar.bz2"; 275 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/nl/thunderbird-140.0.1esr.tar.xz"; 276 276 locale = "nl"; 277 277 arch = "linux-x86_64"; 278 - sha256 = "fc89316092a335e53fdff912350a17369cfa653576979064f1fd1addd9dd38f4"; 278 + sha256 = "eac0552dc429559d307b10e5013adcf1f1d0d1d0d71a97f027feabe71d29d76e"; 279 279 } 280 280 { 281 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/nn-NO/thunderbird-128.11.1esr.tar.bz2"; 281 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/nn-NO/thunderbird-140.0.1esr.tar.xz"; 282 282 locale = "nn-NO"; 283 283 arch = "linux-x86_64"; 284 - sha256 = "eb686ca02ebd3b2c018697b707763f7b80e0159c3756d1ac3181f5a7071d1cfc"; 284 + sha256 = "6b3ed73a3d497f50b3fdf7c3f9b7152b9714763946626bea650066fd53145804"; 285 285 } 286 286 { 287 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/pa-IN/thunderbird-128.11.1esr.tar.bz2"; 287 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/pa-IN/thunderbird-140.0.1esr.tar.xz"; 288 288 locale = "pa-IN"; 289 289 arch = "linux-x86_64"; 290 - sha256 = "e26e3557f2348ddd3763566a2b5dc4897cfba7181c904807b37a73fceed8e3d6"; 290 + sha256 = "0cd1f8377484fb87e63e73f449dd619d840b2cc7b0565e68b14603f6bda74131"; 291 291 } 292 292 { 293 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/pl/thunderbird-128.11.1esr.tar.bz2"; 293 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/pl/thunderbird-140.0.1esr.tar.xz"; 294 294 locale = "pl"; 295 295 arch = "linux-x86_64"; 296 - sha256 = "ffdd0668cc1f94ec3ee99dace3cebdc9143be05b7931e7b3d75a11134f410063"; 296 + sha256 = "4931970272d598f0467ccfd3c657d69d10a001d24c0121dc499933adba3d803f"; 297 297 } 298 298 { 299 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/pt-BR/thunderbird-128.11.1esr.tar.bz2"; 299 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/pt-BR/thunderbird-140.0.1esr.tar.xz"; 300 300 locale = "pt-BR"; 301 301 arch = "linux-x86_64"; 302 - sha256 = "994b3e8fa530b4d1d5333dec0497d393223b26774ec8e6794308a15240fc8a39"; 302 + sha256 = "657d43ddbff163876149d16fd5bd5e0533f0d62a173b23a98b7460cdae97b43b"; 303 303 } 304 304 { 305 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/pt-PT/thunderbird-128.11.1esr.tar.bz2"; 305 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/pt-PT/thunderbird-140.0.1esr.tar.xz"; 306 306 locale = "pt-PT"; 307 307 arch = "linux-x86_64"; 308 - sha256 = "ead36dc368cbf288100e63c1a23a14eed9821ebaad5e53d485a96640cf8c9488"; 308 + sha256 = "bf302b47797df158b7ca39ed1742449fbcfc11ad91142f4ffb6d6df07a1dcf00"; 309 309 } 310 310 { 311 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/rm/thunderbird-128.11.1esr.tar.bz2"; 311 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/rm/thunderbird-140.0.1esr.tar.xz"; 312 312 locale = "rm"; 313 313 arch = "linux-x86_64"; 314 - sha256 = "32e966ffc3c1353369d498b4dd668726c92b05cd8fa875844b35c55eea24ffbd"; 314 + sha256 = "983c2a44a00438316599d8b209a58d321203d85744b1988aeb291801f5b42cfe"; 315 315 } 316 316 { 317 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ro/thunderbird-128.11.1esr.tar.bz2"; 317 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ro/thunderbird-140.0.1esr.tar.xz"; 318 318 locale = "ro"; 319 319 arch = "linux-x86_64"; 320 - sha256 = "d3e6ee59b0fc83d40e3eb7fc469ab3cd8fc9ad2607ff1177a54c3774c611399d"; 320 + sha256 = "da1382badfe2064384e5b2d510188821e75de8395ec01a3ddc59498337af4219"; 321 321 } 322 322 { 323 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/ru/thunderbird-128.11.1esr.tar.bz2"; 323 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/ru/thunderbird-140.0.1esr.tar.xz"; 324 324 locale = "ru"; 325 325 arch = "linux-x86_64"; 326 - sha256 = "23036342924ac4327e8e89236c3a9b5d72aa17bf6e6587995879781546ff3030"; 326 + sha256 = "6bafdaf08f950c287abc3db13293066f9a3a5f98db8b4672b68d78ad672c4e48"; 327 327 } 328 328 { 329 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/sk/thunderbird-128.11.1esr.tar.bz2"; 329 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/sk/thunderbird-140.0.1esr.tar.xz"; 330 330 locale = "sk"; 331 331 arch = "linux-x86_64"; 332 - sha256 = "8531b07c52f9b3c4cc1595728101b541fb18f20ff57210d865bae13edc8f984e"; 332 + sha256 = "2b6c7d5eb509fe7e5612845fe2c45ee5d2ef1d2b08dc0480318745f8a1cf4ad8"; 333 333 } 334 334 { 335 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/sl/thunderbird-128.11.1esr.tar.bz2"; 335 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/sl/thunderbird-140.0.1esr.tar.xz"; 336 336 locale = "sl"; 337 337 arch = "linux-x86_64"; 338 - sha256 = "9a36d79fc11198001f6c9dd9dca78ab3985ed08cf34c1545f0f06aa7c4284ead"; 338 + sha256 = "34f4ae90f269199af655b1b2a1952ae2f68daa42de3f2b25c4ab82f75ed4149c"; 339 339 } 340 340 { 341 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/sq/thunderbird-128.11.1esr.tar.bz2"; 341 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/sq/thunderbird-140.0.1esr.tar.xz"; 342 342 locale = "sq"; 343 343 arch = "linux-x86_64"; 344 - sha256 = "e332752f37abb17e98a667400e0cd2728d11f1fd9a6798d0c4b03e54935c9f52"; 344 + sha256 = "13a4006da9be23a80dc5d6ec89557f2b020995f2ffc632f4b6e1c7f8dff45f23"; 345 345 } 346 346 { 347 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/sr/thunderbird-128.11.1esr.tar.bz2"; 347 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/sr/thunderbird-140.0.1esr.tar.xz"; 348 348 locale = "sr"; 349 349 arch = "linux-x86_64"; 350 - sha256 = "0091e1363aaed53741b2ac684aeb09412cf43ddbd340989f2420148ddf72623b"; 350 + sha256 = "415878b0a7f4c2502fac2ece43d9d49337b503614e7d95e260bd959fd165bbec"; 351 351 } 352 352 { 353 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/sv-SE/thunderbird-128.11.1esr.tar.bz2"; 353 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/sv-SE/thunderbird-140.0.1esr.tar.xz"; 354 354 locale = "sv-SE"; 355 355 arch = "linux-x86_64"; 356 - sha256 = "92f0ed514b9946151ce7047f9afffdadb2f8724f468e435041f2841cb8052d95"; 356 + sha256 = "6fd2dab46a7b9714b7f0610e200998a7fd200ff4f001dcae730fd91d683da2e5"; 357 357 } 358 358 { 359 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/th/thunderbird-128.11.1esr.tar.bz2"; 359 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/th/thunderbird-140.0.1esr.tar.xz"; 360 360 locale = "th"; 361 361 arch = "linux-x86_64"; 362 - sha256 = "bbc0fd2e86cdc944930d059fc218fe55c96b8ee39f520a340af2afcc9902ef42"; 362 + sha256 = "8569643967a75a6b1652d59a2123b51a01dd14f362d824b1729c2bb46c6ef016"; 363 363 } 364 364 { 365 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/tr/thunderbird-128.11.1esr.tar.bz2"; 365 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/tr/thunderbird-140.0.1esr.tar.xz"; 366 366 locale = "tr"; 367 367 arch = "linux-x86_64"; 368 - sha256 = "2c6e1bbd9804a3cd02381f93034420626cb09968c12d236426ac6823d89c8399"; 368 + sha256 = "a3b1b7c06217902d7db6564ae026aadf834cbb6c5c5fd05666db2bca31b2cc9c"; 369 369 } 370 370 { 371 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/uk/thunderbird-128.11.1esr.tar.bz2"; 371 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/uk/thunderbird-140.0.1esr.tar.xz"; 372 372 locale = "uk"; 373 373 arch = "linux-x86_64"; 374 - sha256 = "1fec47b0bddcc4f40d0f4e098429f2ad2a8fc988cffd11d04277bdea320aa2d3"; 374 + sha256 = "94c217a00eb176a590529b25acc57202dfe1062d8b2f265756848a14789ff76a"; 375 375 } 376 376 { 377 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/uz/thunderbird-128.11.1esr.tar.bz2"; 377 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/uz/thunderbird-140.0.1esr.tar.xz"; 378 378 locale = "uz"; 379 379 arch = "linux-x86_64"; 380 - sha256 = "dd6501bc49611667168aec9c4b5a01f41476308abde61c065fee786a3da11025"; 380 + sha256 = "9f09d983e072cccf4368fcf9211ad15c0fdffe3d90b80dca7ecd4548d5241c94"; 381 381 } 382 382 { 383 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/vi/thunderbird-128.11.1esr.tar.bz2"; 383 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/vi/thunderbird-140.0.1esr.tar.xz"; 384 384 locale = "vi"; 385 385 arch = "linux-x86_64"; 386 - sha256 = "7d752d79dc29a79346a5faeb62ad792c83361813ab43230fc4024d0575ea4aef"; 386 + sha256 = "c9e71aec1ef7189742c6ea7de163ccdc000d67b5bbe9eb8e3154775b4516a283"; 387 387 } 388 388 { 389 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/zh-CN/thunderbird-128.11.1esr.tar.bz2"; 389 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/zh-CN/thunderbird-140.0.1esr.tar.xz"; 390 390 locale = "zh-CN"; 391 391 arch = "linux-x86_64"; 392 - sha256 = "99e62f429e86e251229ba05874b2dd6fecbbc961d99b82467e39c4674253c31b"; 392 + sha256 = "6a8e5d7a11bf0a590bbaa3ccfb4ca5fd05eb8d681a3bf954b3cac76d02ae30a6"; 393 393 } 394 394 { 395 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-x86_64/zh-TW/thunderbird-128.11.1esr.tar.bz2"; 395 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-x86_64/zh-TW/thunderbird-140.0.1esr.tar.xz"; 396 396 locale = "zh-TW"; 397 397 arch = "linux-x86_64"; 398 - sha256 = "b6454a0ad85263d3a4e211df5a2853367504dcc06323aede8f456b327f7ffc61"; 398 + sha256 = "dd48a7ab83a0dac285d7bd3d5f933b14d5373957076d55d987562c05a05a6690"; 399 399 } 400 400 { 401 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/af/thunderbird-128.11.1esr.tar.bz2"; 401 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/af/thunderbird-140.0.1esr.tar.xz"; 402 402 locale = "af"; 403 403 arch = "linux-i686"; 404 - sha256 = "d0e5b10d52ad457c51cf7dad8a8e46df110c7637c74cc67f47da353a4a607402"; 404 + sha256 = "143e125ad9ed1ca18bba8fab8297164715117287681f2cd2ea1b6ce554af90a0"; 405 405 } 406 406 { 407 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ar/thunderbird-128.11.1esr.tar.bz2"; 407 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ar/thunderbird-140.0.1esr.tar.xz"; 408 408 locale = "ar"; 409 409 arch = "linux-i686"; 410 - sha256 = "cae238cc797b4aacf015f866b11496423c7e6751ec3853076459e89a6735f07e"; 410 + sha256 = "2d76124a2fe46ada9654195f4b2d496e7a26b703ed5fa5343bf85dc5942db033"; 411 411 } 412 412 { 413 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ast/thunderbird-128.11.1esr.tar.bz2"; 413 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ast/thunderbird-140.0.1esr.tar.xz"; 414 414 locale = "ast"; 415 415 arch = "linux-i686"; 416 - sha256 = "6003bdefb99a650b0d7d6fddddc5f68e906de90913f77aa50386b3223e73e96e"; 416 + sha256 = "dae431fb2da2f9cc4d7be363251c59475e3fb1701f0568fb84dd0241d1f41989"; 417 417 } 418 418 { 419 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/be/thunderbird-128.11.1esr.tar.bz2"; 419 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/be/thunderbird-140.0.1esr.tar.xz"; 420 420 locale = "be"; 421 421 arch = "linux-i686"; 422 - sha256 = "b840a0af87de630bacd4ce180aa9277ea4bd47d2fea423513095965b315cc71c"; 422 + sha256 = "110e8a26ab3f753684587afddd21edaef554fa4b7d72147f86ae185eeed37a17"; 423 423 } 424 424 { 425 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/bg/thunderbird-128.11.1esr.tar.bz2"; 425 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/bg/thunderbird-140.0.1esr.tar.xz"; 426 426 locale = "bg"; 427 427 arch = "linux-i686"; 428 - sha256 = "aeb40e4f78ab26ca930e83a4f3e8e17493167bacfa0c3dbfb07ae89208527039"; 428 + sha256 = "3e12c93255d5baa3fe27688fa6c0fd2dcf7995745be02ddf8a5c400b258e216e"; 429 429 } 430 430 { 431 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/br/thunderbird-128.11.1esr.tar.bz2"; 431 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/br/thunderbird-140.0.1esr.tar.xz"; 432 432 locale = "br"; 433 433 arch = "linux-i686"; 434 - sha256 = "e813f9086d8a72885a544108fd7c553517096470d3db9a8bd26796f728e92ee6"; 434 + sha256 = "49c155f4c024df6481ee659e616a69754265ae1edc556ef1965d0de91f1e4443"; 435 435 } 436 436 { 437 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ca/thunderbird-128.11.1esr.tar.bz2"; 437 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ca/thunderbird-140.0.1esr.tar.xz"; 438 438 locale = "ca"; 439 439 arch = "linux-i686"; 440 - sha256 = "260d795eb520f8e834bd829d9fd87cc4542978389589cbb75f7680533224534e"; 440 + sha256 = "8cf4c59c12310f50b99c8df1a2ee75f4de7d40e199432e6f072966d07e63367b"; 441 441 } 442 442 { 443 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/cak/thunderbird-128.11.1esr.tar.bz2"; 443 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/cak/thunderbird-140.0.1esr.tar.xz"; 444 444 locale = "cak"; 445 445 arch = "linux-i686"; 446 - sha256 = "485889bf966f5d3ee13bee4afa944786a20a06589cbe3c647e173e20bb866890"; 446 + sha256 = "b88442ccb6d83e76dca13a8c8cafa23fcd3a7e08d5ff22f10a455c4b3cca2e80"; 447 447 } 448 448 { 449 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/cs/thunderbird-128.11.1esr.tar.bz2"; 449 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/cs/thunderbird-140.0.1esr.tar.xz"; 450 450 locale = "cs"; 451 451 arch = "linux-i686"; 452 - sha256 = "5ab583992354e7d228aee2921a8d957af5c68e35e2c6ec6021ce59907170999d"; 452 + sha256 = "6a77983dc65c55f2b01a6ed2d748f98c62a7a65e0e084476718705a9e139c94a"; 453 453 } 454 454 { 455 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/cy/thunderbird-128.11.1esr.tar.bz2"; 455 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/cy/thunderbird-140.0.1esr.tar.xz"; 456 456 locale = "cy"; 457 457 arch = "linux-i686"; 458 - sha256 = "60ea047453cf3c8a72b1fb00cd623c69ef2ebe5dfec07cac8864cd2372044728"; 458 + sha256 = "5829ab3e5ea00e1e4a6e4eb99c48ce4aa1ba2ab57804ac0d3dab532c340ff5a3"; 459 459 } 460 460 { 461 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/da/thunderbird-128.11.1esr.tar.bz2"; 461 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/da/thunderbird-140.0.1esr.tar.xz"; 462 462 locale = "da"; 463 463 arch = "linux-i686"; 464 - sha256 = "d1c1f2989fde7fdd1cce600de24c9c4b07ffb1014bf86842162e295b588c6f79"; 464 + sha256 = "9d7a91f3571d90ac5117d449f6f423ef055034407607a2d44e51bc649c2f2bdc"; 465 465 } 466 466 { 467 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/de/thunderbird-128.11.1esr.tar.bz2"; 467 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/de/thunderbird-140.0.1esr.tar.xz"; 468 468 locale = "de"; 469 469 arch = "linux-i686"; 470 - sha256 = "8e3ac147b314d5ec4b5236dc1c58c3db9d48122d069ba366a8e48e459232d853"; 470 + sha256 = "c79adc6a1524a2fcfd0d98aafb6a7428be0be24418ea1a607f36756a040d1594"; 471 471 } 472 472 { 473 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/dsb/thunderbird-128.11.1esr.tar.bz2"; 473 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/dsb/thunderbird-140.0.1esr.tar.xz"; 474 474 locale = "dsb"; 475 475 arch = "linux-i686"; 476 - sha256 = "9097661bc5c121006fde36cd002bf26f1d6b3466552dae941cbc87a0463eb662"; 476 + sha256 = "7696c03fd836ba11be4f0229f43d1400ca56e6b527bd522a89ac5638f9c16bb3"; 477 477 } 478 478 { 479 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/el/thunderbird-128.11.1esr.tar.bz2"; 479 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/el/thunderbird-140.0.1esr.tar.xz"; 480 480 locale = "el"; 481 481 arch = "linux-i686"; 482 - sha256 = "2fe49f83343fd5aa6d7c65dfbde69edf1d80f3a44b0a3b20a108df2986db4ea7"; 482 + sha256 = "3c52933ceda31577743d01f2aaca2439ffc6662d0448f2d6945e0ce88aff5ee9"; 483 483 } 484 484 { 485 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/en-CA/thunderbird-128.11.1esr.tar.bz2"; 485 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/en-CA/thunderbird-140.0.1esr.tar.xz"; 486 486 locale = "en-CA"; 487 487 arch = "linux-i686"; 488 - sha256 = "9e9907b25631afc69d80fc14fd798f156177b0f6e012cb6293a38982b2cfed66"; 488 + sha256 = "46fdc08166c617771130b51b82ccb231a23b5e962690c3a1ea91c42227269b4b"; 489 489 } 490 490 { 491 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/en-GB/thunderbird-128.11.1esr.tar.bz2"; 491 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/en-GB/thunderbird-140.0.1esr.tar.xz"; 492 492 locale = "en-GB"; 493 493 arch = "linux-i686"; 494 - sha256 = "c66668a98f93e2e60a65908142721c40dd719ece1fd27bc9b12f098a36934a1b"; 494 + sha256 = "192b445f7bd7188d931693a68dd21e39f27e57267f8b148ef8c2b5f88597b53d"; 495 495 } 496 496 { 497 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/en-US/thunderbird-128.11.1esr.tar.bz2"; 497 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/en-US/thunderbird-140.0.1esr.tar.xz"; 498 498 locale = "en-US"; 499 499 arch = "linux-i686"; 500 - sha256 = "f11acab3c1b9b8bc0d000e79bb4aa627c8b982da6e867884fd38c018385336bd"; 500 + sha256 = "d7bdc8f114f7024cafc1a771afc21d90b14b446e9f79eebadaa647ca4d138088"; 501 501 } 502 502 { 503 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/es-AR/thunderbird-128.11.1esr.tar.bz2"; 503 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/es-AR/thunderbird-140.0.1esr.tar.xz"; 504 504 locale = "es-AR"; 505 505 arch = "linux-i686"; 506 - sha256 = "5366b9cf55dbaecac231a870c37422513719d4b387baf1802537b6ed23b7c9b8"; 506 + sha256 = "3ad413761708129505305bb1f066c88725871202df0715dc882c8992829e7205"; 507 507 } 508 508 { 509 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/es-ES/thunderbird-128.11.1esr.tar.bz2"; 509 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/es-ES/thunderbird-140.0.1esr.tar.xz"; 510 510 locale = "es-ES"; 511 511 arch = "linux-i686"; 512 - sha256 = "0a3c9e633e4563aa12f4a6b727bed4ca3c58b7e68df7d4736241e19c67913ed6"; 512 + sha256 = "be4931a361054890dce062f72828a579d6021b0cac71bdd65cc02d3e53377b8b"; 513 513 } 514 514 { 515 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/es-MX/thunderbird-128.11.1esr.tar.bz2"; 515 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/es-MX/thunderbird-140.0.1esr.tar.xz"; 516 516 locale = "es-MX"; 517 517 arch = "linux-i686"; 518 - sha256 = "9bdf1e3863e2eddbedcdaee4794fca3b7cc43ae28d1447adffa2bdb5521d2fa1"; 518 + sha256 = "4d53d2eaec30078c36c38b7d623abb57110f574f2a094371d6bf0a3da5264d4a"; 519 519 } 520 520 { 521 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/et/thunderbird-128.11.1esr.tar.bz2"; 521 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/et/thunderbird-140.0.1esr.tar.xz"; 522 522 locale = "et"; 523 523 arch = "linux-i686"; 524 - sha256 = "039c3c19263e262973a3bf97985675534698c824401ea2b03fcdf9efa2e98fbf"; 524 + sha256 = "b385f7934ec821251128ff699bc665b8db7736c8be9b59b2945ce52297748039"; 525 525 } 526 526 { 527 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/eu/thunderbird-128.11.1esr.tar.bz2"; 527 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/eu/thunderbird-140.0.1esr.tar.xz"; 528 528 locale = "eu"; 529 529 arch = "linux-i686"; 530 - sha256 = "0c556b10fd5d223cd484bff84e4edf9ee12f22662ef3643e00e25a723e29ca1e"; 530 + sha256 = "908cb758760d5a1de57295846b2d31ef2dc6c5e1da9eea3ed1ee0c14fdb6908e"; 531 531 } 532 532 { 533 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/fi/thunderbird-128.11.1esr.tar.bz2"; 533 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/fi/thunderbird-140.0.1esr.tar.xz"; 534 534 locale = "fi"; 535 535 arch = "linux-i686"; 536 - sha256 = "6cc6403a5aa5bf484d1d41d55e4d1d7587097a95b0ee8e9ccf972f65a9c4993b"; 536 + sha256 = "f6c4df7c3d51bedde4ad2cc78285459a1dd720f6d7fdeb1f27008e5fee2cfa0c"; 537 537 } 538 538 { 539 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/fr/thunderbird-128.11.1esr.tar.bz2"; 539 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/fr/thunderbird-140.0.1esr.tar.xz"; 540 540 locale = "fr"; 541 541 arch = "linux-i686"; 542 - sha256 = "e9e16cf3909a04eeb8beeeb6214534faa4fe71b31c9e7e62a06a3d5888ac93bc"; 542 + sha256 = "964513460ddd7931b633936e1c6f391b2c4abdedd631be4798ba78f20021fa8d"; 543 543 } 544 544 { 545 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/fy-NL/thunderbird-128.11.1esr.tar.bz2"; 545 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/fy-NL/thunderbird-140.0.1esr.tar.xz"; 546 546 locale = "fy-NL"; 547 547 arch = "linux-i686"; 548 - sha256 = "bdedaf4080dd020b48c8146d7ca160f694c30c7ae3813573f14dfffa23c3a5a9"; 548 + sha256 = "1b66630411b6f61df03ca4a798cdd685dff6555c9a18d4c804767308e20530a8"; 549 549 } 550 550 { 551 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ga-IE/thunderbird-128.11.1esr.tar.bz2"; 551 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ga-IE/thunderbird-140.0.1esr.tar.xz"; 552 552 locale = "ga-IE"; 553 553 arch = "linux-i686"; 554 - sha256 = "8b977495fe24fc7a2692c099f4f36e11532e827242f27cc2e9dfb352d79b7ba8"; 554 + sha256 = "0b4a6a69b9c523370295750836a9a28a27d285e60c08915dfe7bf9523c655a15"; 555 555 } 556 556 { 557 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/gd/thunderbird-128.11.1esr.tar.bz2"; 557 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/gd/thunderbird-140.0.1esr.tar.xz"; 558 558 locale = "gd"; 559 559 arch = "linux-i686"; 560 - sha256 = "bab69a8e3283a9bf2a3e4893a3ee5a13fd7855e6c27c6bc888fb7099aa63c3a9"; 560 + sha256 = "1126f7ab5793e277395fdad38d13ae80dacff108c0fb69c4aefde63ffc75cd71"; 561 561 } 562 562 { 563 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/gl/thunderbird-128.11.1esr.tar.bz2"; 563 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/gl/thunderbird-140.0.1esr.tar.xz"; 564 564 locale = "gl"; 565 565 arch = "linux-i686"; 566 - sha256 = "0f1204117d3ac178b4256f6736bae0763e2d725f7f31d35d14c2fe81149983a4"; 566 + sha256 = "cd032ca7c57c616a442f40595a7d77879a44929ab7dccca331b536215a896c3b"; 567 567 } 568 568 { 569 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/he/thunderbird-128.11.1esr.tar.bz2"; 569 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/he/thunderbird-140.0.1esr.tar.xz"; 570 570 locale = "he"; 571 571 arch = "linux-i686"; 572 - sha256 = "b8f9776ee8c13945eb0fafddf35bfe15aebd624266cb7a59c3a35c295c30ca87"; 572 + sha256 = "3a17bece9f535d164af2c8da64df4291408b6e8a1ba31d8561ee3b559e43d148"; 573 573 } 574 574 { 575 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/hr/thunderbird-128.11.1esr.tar.bz2"; 575 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/hr/thunderbird-140.0.1esr.tar.xz"; 576 576 locale = "hr"; 577 577 arch = "linux-i686"; 578 - sha256 = "7ef80e9826a3c6f68d977d7f4d37e4e464bf3ed758f6a4bde55c25908bad1e5a"; 578 + sha256 = "d4452b7da20056aa6d628464824ff33c4ce07ce2955475b8c23cdc10dca41e6c"; 579 579 } 580 580 { 581 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/hsb/thunderbird-128.11.1esr.tar.bz2"; 581 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/hsb/thunderbird-140.0.1esr.tar.xz"; 582 582 locale = "hsb"; 583 583 arch = "linux-i686"; 584 - sha256 = "977c9dcf1c4a5415168d4d6ba8bfc678ffd8fc71fad57c4591b67d2c5b66bb40"; 584 + sha256 = "394c0368199eaaf12457797158362fbaef05847c8de20052d47df3b66f4be403"; 585 585 } 586 586 { 587 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/hu/thunderbird-128.11.1esr.tar.bz2"; 587 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/hu/thunderbird-140.0.1esr.tar.xz"; 588 588 locale = "hu"; 589 589 arch = "linux-i686"; 590 - sha256 = "50b063f5cdee1c3f34b335e1e69645c9d95217fd5e252a52cfb8da88655fafda"; 590 + sha256 = "c7947f866700ecacdc75569ce906403d2c641bd70963bf1885aa78f1987e3a5f"; 591 591 } 592 592 { 593 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/hy-AM/thunderbird-128.11.1esr.tar.bz2"; 593 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/hy-AM/thunderbird-140.0.1esr.tar.xz"; 594 594 locale = "hy-AM"; 595 595 arch = "linux-i686"; 596 - sha256 = "a7634aaab27e184cff3e8c9abc0508c999c22370c9290e99c114e5e4585d0267"; 596 + sha256 = "971c420bdd12abfcdb04b776f68083bb9074c1b19e9d42db84b8172ad1188948"; 597 597 } 598 598 { 599 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/id/thunderbird-128.11.1esr.tar.bz2"; 599 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/id/thunderbird-140.0.1esr.tar.xz"; 600 600 locale = "id"; 601 601 arch = "linux-i686"; 602 - sha256 = "c01eabdfd17451caa579caad715ae0fc401f8d782df1b4072523a930b85e19a3"; 602 + sha256 = "bc3d8f898c6470b31cf5633c04d2f582f42732f3fd5bde14fe0f6b38215f57fa"; 603 603 } 604 604 { 605 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/is/thunderbird-128.11.1esr.tar.bz2"; 605 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/is/thunderbird-140.0.1esr.tar.xz"; 606 606 locale = "is"; 607 607 arch = "linux-i686"; 608 - sha256 = "6159e093852e94ab37e2446bfbdda0a1c67dfe1d88b6eb37c82c1fa3a0adea30"; 608 + sha256 = "623158002114770da3868e58a9c90d6e6cd8738ad2da0ebcb7b5b48c79e7d116"; 609 609 } 610 610 { 611 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/it/thunderbird-128.11.1esr.tar.bz2"; 611 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/it/thunderbird-140.0.1esr.tar.xz"; 612 612 locale = "it"; 613 613 arch = "linux-i686"; 614 - sha256 = "b91c6b9dae50ffe444b99737c8e3f645ba8ac126572295be10d32fd88efd521d"; 614 + sha256 = "729ff0a4999e13deef4f275939719931db868e89c87947e7f189395ed96c61ab"; 615 615 } 616 616 { 617 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ja/thunderbird-128.11.1esr.tar.bz2"; 617 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ja/thunderbird-140.0.1esr.tar.xz"; 618 618 locale = "ja"; 619 619 arch = "linux-i686"; 620 - sha256 = "392a3568f390b6193a0f5236a88a9e3ed84557d74f440978797e26c027a85135"; 620 + sha256 = "a06d34c19b166da06de2c807710e36547f09702f29fa35d1a67cc41f5ff8cf7e"; 621 621 } 622 622 { 623 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ka/thunderbird-128.11.1esr.tar.bz2"; 623 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ka/thunderbird-140.0.1esr.tar.xz"; 624 624 locale = "ka"; 625 625 arch = "linux-i686"; 626 - sha256 = "e96c43f4bfa370b60b9f447b82dcf48b5ce021b756fedd47013fc5ac7926bb67"; 626 + sha256 = "f67a7115bbfc19e9b41b7dabfe32fb62ecc20e5884c0b3e9b443351dae66c1c6"; 627 627 } 628 628 { 629 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/kab/thunderbird-128.11.1esr.tar.bz2"; 629 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/kab/thunderbird-140.0.1esr.tar.xz"; 630 630 locale = "kab"; 631 631 arch = "linux-i686"; 632 - sha256 = "cf1d16b6477b2b836d896fb3e5ac65c32799c21ffe76a986c085bafa08883f92"; 632 + sha256 = "01d8c9170990e175cf2452a428dafea95f0fe77e0b73001d644ebcdfb164ea61"; 633 633 } 634 634 { 635 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/kk/thunderbird-128.11.1esr.tar.bz2"; 635 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/kk/thunderbird-140.0.1esr.tar.xz"; 636 636 locale = "kk"; 637 637 arch = "linux-i686"; 638 - sha256 = "abe96a32627fa819f97438b0b65cde4b6d92f372cac0e21c3ac79f896fb2da11"; 638 + sha256 = "885540419072b130288a05b7f7c199bb19a5fac31b6455e11a95f36fc3239c76"; 639 639 } 640 640 { 641 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ko/thunderbird-128.11.1esr.tar.bz2"; 641 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ko/thunderbird-140.0.1esr.tar.xz"; 642 642 locale = "ko"; 643 643 arch = "linux-i686"; 644 - sha256 = "895ad3c0187367a3fbb4e04e846c1ab993458d38cdce5c7745778e8530f7893e"; 644 + sha256 = "daf94b5f16730691736296457ca41d64d53fe93d910c72116db5393319b1b9d9"; 645 645 } 646 646 { 647 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/lt/thunderbird-128.11.1esr.tar.bz2"; 647 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/lt/thunderbird-140.0.1esr.tar.xz"; 648 648 locale = "lt"; 649 649 arch = "linux-i686"; 650 - sha256 = "efffe1bdf4b546e794d5085d7a1cf91d8634a679e6ebf2aaca9828814c73c581"; 650 + sha256 = "d2bf636a9ad18e093f645f401bdc9d4b9cc972f3b096bc136f5893a26fe9dec9"; 651 651 } 652 652 { 653 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/lv/thunderbird-128.11.1esr.tar.bz2"; 653 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/lv/thunderbird-140.0.1esr.tar.xz"; 654 654 locale = "lv"; 655 655 arch = "linux-i686"; 656 - sha256 = "395fe93b274f19761037defe7d3b44248f6a53ce70b386bfcfa979bf2bc61f56"; 656 + sha256 = "01f975e034eb580a7b754cc612a46814f6c54d85a8fe6193caf9f8df7028c2cd"; 657 657 } 658 658 { 659 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ms/thunderbird-128.11.1esr.tar.bz2"; 659 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ms/thunderbird-140.0.1esr.tar.xz"; 660 660 locale = "ms"; 661 661 arch = "linux-i686"; 662 - sha256 = "43b0260c9a74d76163cbbeba33de06dde61e084a1f241ae5d6c9bb5bad424c27"; 662 + sha256 = "38f637dd2de942b1f679421bfac608abf502cbc95f5dba921307dda860c38fd7"; 663 663 } 664 664 { 665 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/nb-NO/thunderbird-128.11.1esr.tar.bz2"; 665 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/nb-NO/thunderbird-140.0.1esr.tar.xz"; 666 666 locale = "nb-NO"; 667 667 arch = "linux-i686"; 668 - sha256 = "41a214594554f40959f7d53ac09f6422d8cc06945ab91757e34c31cdf3303599"; 668 + sha256 = "2e6ad92a8cc928dc05386051a373076fe3228e94705e79d5a3b5acc7a71dbbaa"; 669 669 } 670 670 { 671 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/nl/thunderbird-128.11.1esr.tar.bz2"; 671 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/nl/thunderbird-140.0.1esr.tar.xz"; 672 672 locale = "nl"; 673 673 arch = "linux-i686"; 674 - sha256 = "517eb90659cdce2cd47c33d485dd205a2fecf05735cff999f500e66daaf32a88"; 674 + sha256 = "7b3ff0bf8193e1d7624f9415e84e32a508a8a9d075a7ed44f0a818ff14bd86a8"; 675 675 } 676 676 { 677 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/nn-NO/thunderbird-128.11.1esr.tar.bz2"; 677 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/nn-NO/thunderbird-140.0.1esr.tar.xz"; 678 678 locale = "nn-NO"; 679 679 arch = "linux-i686"; 680 - sha256 = "55fc05dfdad632116c09683c4d7b13679114c8935dc4931723f4744240e0ca9c"; 680 + sha256 = "78a602eff2211f403e1805d3afb2e8acf017a3c81270b07810387d97b697227d"; 681 681 } 682 682 { 683 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/pa-IN/thunderbird-128.11.1esr.tar.bz2"; 683 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/pa-IN/thunderbird-140.0.1esr.tar.xz"; 684 684 locale = "pa-IN"; 685 685 arch = "linux-i686"; 686 - sha256 = "f4526e30c386550a95128830464b1ea8f2ff0e68fd8ae6aeba40a9c76fb0883f"; 686 + sha256 = "c83252f5d19c16a93e7e5017a2d1737d080d855f9fba011006f726828005e8dc"; 687 687 } 688 688 { 689 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/pl/thunderbird-128.11.1esr.tar.bz2"; 689 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/pl/thunderbird-140.0.1esr.tar.xz"; 690 690 locale = "pl"; 691 691 arch = "linux-i686"; 692 - sha256 = "be59a45e3866eec1e7034766cbbf7f40017e517763f96cf55dc028fde5a5e446"; 692 + sha256 = "8b8aa69ddd5545aefd35cd15b6ee5d58306540ba72d347cef921fb12cf739249"; 693 693 } 694 694 { 695 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/pt-BR/thunderbird-128.11.1esr.tar.bz2"; 695 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/pt-BR/thunderbird-140.0.1esr.tar.xz"; 696 696 locale = "pt-BR"; 697 697 arch = "linux-i686"; 698 - sha256 = "1ef73fbba3104f5c71939974ceb1a231489bc0bfd1d079e8394f51c59dc66923"; 698 + sha256 = "55f3c32096812e12dbe2b52c940b582f018a685c949f1e73bab9a0123ee56ec7"; 699 699 } 700 700 { 701 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/pt-PT/thunderbird-128.11.1esr.tar.bz2"; 701 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/pt-PT/thunderbird-140.0.1esr.tar.xz"; 702 702 locale = "pt-PT"; 703 703 arch = "linux-i686"; 704 - sha256 = "e8a28970d175427f75d61605fbef7cbff7fe39cf08d9427c3a3ea1f561b751b6"; 704 + sha256 = "8f6063ab557b81853bebc335181bed3271f10df0cc212986f850e8bb65fa7534"; 705 705 } 706 706 { 707 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/rm/thunderbird-128.11.1esr.tar.bz2"; 707 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/rm/thunderbird-140.0.1esr.tar.xz"; 708 708 locale = "rm"; 709 709 arch = "linux-i686"; 710 - sha256 = "6b48d31bfa44c4815a4c09821b19c9249c6d916ff15712d163e3d7f74883345e"; 710 + sha256 = "99c2aeaec4b24f1b4622138196d2cb35fe32d4babe56557b5909331a262e6df2"; 711 711 } 712 712 { 713 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ro/thunderbird-128.11.1esr.tar.bz2"; 713 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ro/thunderbird-140.0.1esr.tar.xz"; 714 714 locale = "ro"; 715 715 arch = "linux-i686"; 716 - sha256 = "f12cd678b765d97f5ffa6aaaff007e7ec5c07ee4f95b78abaee83a19e3ab44a0"; 716 + sha256 = "2043faa14a64ec209e753a7a28b718295bad75fe32c88760818400d6b62ab6e3"; 717 717 } 718 718 { 719 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/ru/thunderbird-128.11.1esr.tar.bz2"; 719 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/ru/thunderbird-140.0.1esr.tar.xz"; 720 720 locale = "ru"; 721 721 arch = "linux-i686"; 722 - sha256 = "686c8dd08600adf3bee7c32cf58cd575399e4cc7aa3e0905b0bd1613dfcd3358"; 722 + sha256 = "d50ab6a8217ace9105bdc68694d748ebe5ac84053bd6bcf7608963e63ccb6875"; 723 723 } 724 724 { 725 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/sk/thunderbird-128.11.1esr.tar.bz2"; 725 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/sk/thunderbird-140.0.1esr.tar.xz"; 726 726 locale = "sk"; 727 727 arch = "linux-i686"; 728 - sha256 = "0292c2f3343da364f29828dab5d24658fe31a707eb52bbc963b042f0f2501787"; 728 + sha256 = "0353ffaef431ea0ad6c279be383078643689320ef429230f087d49b5f28a9fd2"; 729 729 } 730 730 { 731 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/sl/thunderbird-128.11.1esr.tar.bz2"; 731 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/sl/thunderbird-140.0.1esr.tar.xz"; 732 732 locale = "sl"; 733 733 arch = "linux-i686"; 734 - sha256 = "a4bd96ee63ad05fac5bd45c506e9038537dbd9a8ac88e17387f43c8f6d9e2423"; 734 + sha256 = "6e812718af66575f3cfb6287d544935a22180aa02ff3e62e61a7dd7570e81c0d"; 735 735 } 736 736 { 737 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/sq/thunderbird-128.11.1esr.tar.bz2"; 737 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/sq/thunderbird-140.0.1esr.tar.xz"; 738 738 locale = "sq"; 739 739 arch = "linux-i686"; 740 - sha256 = "6b6614c7ac1a4a80725a146fdd5c2840228130b23d1abeb7e088a879d613b70d"; 740 + sha256 = "288fa156ab80da4f2476970886fae43e349503e2f3125b4ec48118bacfc51ded"; 741 741 } 742 742 { 743 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/sr/thunderbird-128.11.1esr.tar.bz2"; 743 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/sr/thunderbird-140.0.1esr.tar.xz"; 744 744 locale = "sr"; 745 745 arch = "linux-i686"; 746 - sha256 = "42ce92dcaf772e57d48cfcca18be0fc63a5aa3c76b6a257559ec5e003fd31451"; 746 + sha256 = "61b39b6abbcff45c4f0b7816310c87377aba5cc6d30bf44659a7ee6fbd09d128"; 747 747 } 748 748 { 749 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/sv-SE/thunderbird-128.11.1esr.tar.bz2"; 749 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/sv-SE/thunderbird-140.0.1esr.tar.xz"; 750 750 locale = "sv-SE"; 751 751 arch = "linux-i686"; 752 - sha256 = "ae88cd1e1b4123e308107e804a339d05141c696c1ad7ee6d1c9c942269a39001"; 752 + sha256 = "3783d139fb9e9947852d173f2f6fe142a0a7ff337f8288f96f1506f099a41ef5"; 753 753 } 754 754 { 755 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/th/thunderbird-128.11.1esr.tar.bz2"; 755 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/th/thunderbird-140.0.1esr.tar.xz"; 756 756 locale = "th"; 757 757 arch = "linux-i686"; 758 - sha256 = "a38e31d43db5cd6f67f1b40e72e8a93f21ea7e5492f50ff228677d66d9b1fb45"; 758 + sha256 = "7cad4d217e5b9e82e9b841a71e96ca390f2b400086703f3bdbf0e09897757455"; 759 759 } 760 760 { 761 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/tr/thunderbird-128.11.1esr.tar.bz2"; 761 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/tr/thunderbird-140.0.1esr.tar.xz"; 762 762 locale = "tr"; 763 763 arch = "linux-i686"; 764 - sha256 = "08e2ce8ba8e2960ba34bf3570a7d6bbe55d70b9f35aeb938c0c752fbffdc7131"; 764 + sha256 = "f49f042d6e86bcc40b1edd73d4241a8bb73dbdf320c1a417a20c3ef282557933"; 765 765 } 766 766 { 767 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/uk/thunderbird-128.11.1esr.tar.bz2"; 767 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/uk/thunderbird-140.0.1esr.tar.xz"; 768 768 locale = "uk"; 769 769 arch = "linux-i686"; 770 - sha256 = "de8b699e322488a765f354819d2f79baf530405ac0f4a6540ab5ac3b474f20d2"; 770 + sha256 = "3058636ce20f2744413f23bfeb82206b265e7f625643b274ccb1dfebcfc03ec8"; 771 771 } 772 772 { 773 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/uz/thunderbird-128.11.1esr.tar.bz2"; 773 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/uz/thunderbird-140.0.1esr.tar.xz"; 774 774 locale = "uz"; 775 775 arch = "linux-i686"; 776 - sha256 = "2d969f62cf9c164a0623a769eebda1e3ff9790818cfce05978da3b49a630b726"; 776 + sha256 = "9d26d9154909b30d7fd335e3ab9a1d7a5614064568e03a21d10004dfce22dcf2"; 777 777 } 778 778 { 779 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/vi/thunderbird-128.11.1esr.tar.bz2"; 779 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/vi/thunderbird-140.0.1esr.tar.xz"; 780 780 locale = "vi"; 781 781 arch = "linux-i686"; 782 - sha256 = "0e3585662595e365e54a4f4f8e06fc843729387f005607d6e78f4049db6c9657"; 782 + sha256 = "0d50d6a2b8b7a7f0b7dfafa1e72c1187ca1fc195aae5736f8e4eda9ee84b66b9"; 783 783 } 784 784 { 785 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/zh-CN/thunderbird-128.11.1esr.tar.bz2"; 785 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/zh-CN/thunderbird-140.0.1esr.tar.xz"; 786 786 locale = "zh-CN"; 787 787 arch = "linux-i686"; 788 - sha256 = "7365a226c7f4e7771edf4f90602d14826240d3352c77d6b736765b762cd25434"; 788 + sha256 = "7e2a01674ab8ef493f6a01aa4b5d5cc122b950bc0eca2bbd0ad6bf293b9fbc21"; 789 789 } 790 790 { 791 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/linux-i686/zh-TW/thunderbird-128.11.1esr.tar.bz2"; 791 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/linux-i686/zh-TW/thunderbird-140.0.1esr.tar.xz"; 792 792 locale = "zh-TW"; 793 793 arch = "linux-i686"; 794 - sha256 = "f7c7afad8dbccdecc9c4e8a29f3450877e151512a931875a89521c8b39053837"; 794 + sha256 = "bdcfa911639dc193d7f9b38cadda371b3599beddfcd30a0cbb8fe8540520b1b6"; 795 795 } 796 796 { 797 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/af/Thunderbird%20128.11.1esr.dmg"; 797 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/af/Thunderbird%20140.0.1esr.dmg"; 798 798 locale = "af"; 799 799 arch = "mac"; 800 - sha256 = "5044e23b78ec2c1f06dcbc938d8849516005577c78445ae8212930572b5a4530"; 800 + sha256 = "95d5b1481ca80568c3229a9bfb0dfe9fa0eee09b5264e553e6e7588c7f2b4caa"; 801 801 } 802 802 { 803 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ar/Thunderbird%20128.11.1esr.dmg"; 803 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ar/Thunderbird%20140.0.1esr.dmg"; 804 804 locale = "ar"; 805 805 arch = "mac"; 806 - sha256 = "51a94e0f3b040b53aabccee293b1b8e4f5be12a3fae4bbe5ce50ce95649f1701"; 806 + sha256 = "38fa8d2d6051c580aafb11442af3d6948a5444a2d21b52f5f14a4f641cd164a4"; 807 807 } 808 808 { 809 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ast/Thunderbird%20128.11.1esr.dmg"; 809 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ast/Thunderbird%20140.0.1esr.dmg"; 810 810 locale = "ast"; 811 811 arch = "mac"; 812 - sha256 = "493626258864ece20d2357b5ee94aa921100f6d0e50de3187123260963b736d5"; 812 + sha256 = "08a420005f06a040bd5aeb05548276eb3dc0cbeaeaae4797a4a085a72eb94e47"; 813 813 } 814 814 { 815 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/be/Thunderbird%20128.11.1esr.dmg"; 815 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/be/Thunderbird%20140.0.1esr.dmg"; 816 816 locale = "be"; 817 817 arch = "mac"; 818 - sha256 = "4a1c3252264b101400fa5cddebdc85143a0486a93df7db52a05e796dbf447cac"; 818 + sha256 = "37c2080dd55ad5c31c730d9be6bc1580c51ebc0482ab89d2a198fd14df2b136f"; 819 819 } 820 820 { 821 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/bg/Thunderbird%20128.11.1esr.dmg"; 821 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/bg/Thunderbird%20140.0.1esr.dmg"; 822 822 locale = "bg"; 823 823 arch = "mac"; 824 - sha256 = "62221accab70032a18e5014aebcb032acc964875b3b586cb7a1e8a6d2e785c7c"; 824 + sha256 = "053765ee4d6b385de034fb65961df15f514621eee8b989211fae46bd19f34efb"; 825 825 } 826 826 { 827 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/br/Thunderbird%20128.11.1esr.dmg"; 827 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/br/Thunderbird%20140.0.1esr.dmg"; 828 828 locale = "br"; 829 829 arch = "mac"; 830 - sha256 = "1d75ebd1ce55ae195cd26b32c59689f6481cf68b7578151315d5006c669ed97b"; 830 + sha256 = "77ee4106a4e5378a289a26a443698a8a19c5758af901c3d73ef75548d1428c25"; 831 831 } 832 832 { 833 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ca/Thunderbird%20128.11.1esr.dmg"; 833 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ca/Thunderbird%20140.0.1esr.dmg"; 834 834 locale = "ca"; 835 835 arch = "mac"; 836 - sha256 = "2be38ab16c24f73ad88baae4ce37b7121397cd9e5406f510ffec2df5103ad0a8"; 836 + sha256 = "a5eaa6152a22227fff0171825606fad9dfa2235526835d4a3479176fbdb5d420"; 837 837 } 838 838 { 839 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/cak/Thunderbird%20128.11.1esr.dmg"; 839 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/cak/Thunderbird%20140.0.1esr.dmg"; 840 840 locale = "cak"; 841 841 arch = "mac"; 842 - sha256 = "54728cb3b6128eceeab66d509c7b90cf244504455f5425cfcfb49c881f3c68d3"; 842 + sha256 = "da81389041f93401ad3baad47fb96936b49fa32f59ab92d37e3d8c6ce7e9a88a"; 843 843 } 844 844 { 845 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/cs/Thunderbird%20128.11.1esr.dmg"; 845 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/cs/Thunderbird%20140.0.1esr.dmg"; 846 846 locale = "cs"; 847 847 arch = "mac"; 848 - sha256 = "7a21159417b5fe4641155ae43e4d41effe94fbec0431fc0b5567484d7087c8c0"; 848 + sha256 = "1a72eff467b93fe13f917c0a5c1e41057bf5e2ec1bc1897a0a1e58cf59389185"; 849 849 } 850 850 { 851 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/cy/Thunderbird%20128.11.1esr.dmg"; 851 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/cy/Thunderbird%20140.0.1esr.dmg"; 852 852 locale = "cy"; 853 853 arch = "mac"; 854 - sha256 = "4044f729e7b202d50110529df9592617fe0b948c8b1860b456b3f3d38c341599"; 854 + sha256 = "b4c4eac9cbd977362fed93ef8378012e1c8db06c941fef58ea0f39712fbff5c6"; 855 855 } 856 856 { 857 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/da/Thunderbird%20128.11.1esr.dmg"; 857 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/da/Thunderbird%20140.0.1esr.dmg"; 858 858 locale = "da"; 859 859 arch = "mac"; 860 - sha256 = "da7e5440d28bca85f7a4456e39556e2f8c357feb024163d763d61ca3261b58db"; 860 + sha256 = "865cf7ae8bf2deaac3e80a91529321477202f749da03252e3a2cc3bb1e7fcedf"; 861 861 } 862 862 { 863 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/de/Thunderbird%20128.11.1esr.dmg"; 863 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/de/Thunderbird%20140.0.1esr.dmg"; 864 864 locale = "de"; 865 865 arch = "mac"; 866 - sha256 = "2036cb0ec75668a4a82b524b752ed3973195e0e721fec14b9b101a36277dd72e"; 866 + sha256 = "ca21ea80983beec307b2e7cb1df443c60f5f44ccc956baa367f5793f638f7324"; 867 867 } 868 868 { 869 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/dsb/Thunderbird%20128.11.1esr.dmg"; 869 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/dsb/Thunderbird%20140.0.1esr.dmg"; 870 870 locale = "dsb"; 871 871 arch = "mac"; 872 - sha256 = "27404dc749bfc62b4153640a06421e77da13de6acca1867ea60623eea8a354af"; 872 + sha256 = "cc93a1d5447ed0df64d89cdc28ef506458d53459a4f75f0126a018d3e6f125ee"; 873 873 } 874 874 { 875 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/el/Thunderbird%20128.11.1esr.dmg"; 875 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/el/Thunderbird%20140.0.1esr.dmg"; 876 876 locale = "el"; 877 877 arch = "mac"; 878 - sha256 = "9ec737d7b1ad4f2b062a1a430ca7316a2c4fcedab43b0a034926356ceda336ec"; 878 + sha256 = "7c9a536a8a3b92d955fb520f857b57f57890dc08870cc77de51e8733aad73b76"; 879 879 } 880 880 { 881 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/en-CA/Thunderbird%20128.11.1esr.dmg"; 881 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/en-CA/Thunderbird%20140.0.1esr.dmg"; 882 882 locale = "en-CA"; 883 883 arch = "mac"; 884 - sha256 = "c55389c197313ea19c20a292fe52aba160185a7eb6ff6f47c21406f2b87de88e"; 884 + sha256 = "bb674b60e80673d4460707dd4022949e457ad4d3915127872cc55bc1eb6d8e6b"; 885 885 } 886 886 { 887 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/en-GB/Thunderbird%20128.11.1esr.dmg"; 887 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/en-GB/Thunderbird%20140.0.1esr.dmg"; 888 888 locale = "en-GB"; 889 889 arch = "mac"; 890 - sha256 = "29e77840a36c3235d478e0d0b1843a7c9bbc6ed0fc2ca08e5302e4befe3f6784"; 890 + sha256 = "43c1a3466df45aa98894c8d2f01488faabc1bfcc11a62d2c81dee951c48e9377"; 891 891 } 892 892 { 893 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/en-US/Thunderbird%20128.11.1esr.dmg"; 893 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/en-US/Thunderbird%20140.0.1esr.dmg"; 894 894 locale = "en-US"; 895 895 arch = "mac"; 896 - sha256 = "6aaeb32a4964b1bdee1322dbb2e0e17b54632a5cc5a4c8f8c2fa78bfdfed4365"; 896 + sha256 = "0df7e445f71283e1f385d7920408ac0035baa937165d51e1b7d2f4c6515e8b80"; 897 897 } 898 898 { 899 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/es-AR/Thunderbird%20128.11.1esr.dmg"; 899 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/es-AR/Thunderbird%20140.0.1esr.dmg"; 900 900 locale = "es-AR"; 901 901 arch = "mac"; 902 - sha256 = "006229fe8ed1e141b09a2c835125cee3ed273e84198eebadfa8e66186121acd9"; 902 + sha256 = "a0865f3d19d212e79666d4e90b8a18516d0c44d35f7f320bbd631cc9845844cc"; 903 903 } 904 904 { 905 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/es-ES/Thunderbird%20128.11.1esr.dmg"; 905 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/es-ES/Thunderbird%20140.0.1esr.dmg"; 906 906 locale = "es-ES"; 907 907 arch = "mac"; 908 - sha256 = "643d80c431a4dc12760d492275797fb1b67f4edc699e731aeafec17e9f9d96e1"; 908 + sha256 = "242afdcc031130e3b3c16413242cf0a95e2f1520e73c403c358f6d5fc2f1a46e"; 909 909 } 910 910 { 911 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/es-MX/Thunderbird%20128.11.1esr.dmg"; 911 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/es-MX/Thunderbird%20140.0.1esr.dmg"; 912 912 locale = "es-MX"; 913 913 arch = "mac"; 914 - sha256 = "b18b4f8e9ca142e2a46f52c7f67aabc10365314be07b438bd20cb631ad4d6bbb"; 914 + sha256 = "61e58ababdd693de00fb404edea2e2a986180a49dd0a33ad3840700eb081bbed"; 915 915 } 916 916 { 917 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/et/Thunderbird%20128.11.1esr.dmg"; 917 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/et/Thunderbird%20140.0.1esr.dmg"; 918 918 locale = "et"; 919 919 arch = "mac"; 920 - sha256 = "82d13921c5879939f35a3321e94fd6a67611da959806fd1795bb6442ec17c0cd"; 920 + sha256 = "d68a7b08b4559e11efc5160c4f886f2174e108ac857e3ec41844c64dfe5ca1ca"; 921 921 } 922 922 { 923 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/eu/Thunderbird%20128.11.1esr.dmg"; 923 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/eu/Thunderbird%20140.0.1esr.dmg"; 924 924 locale = "eu"; 925 925 arch = "mac"; 926 - sha256 = "a84dd42a44ed2124a7372d89c4f469605ff8837e80b33dad433cdb5a46988425"; 926 + sha256 = "e8083e2da49168c1e5e52392a8e8cf1ec6190b48797d47fddcc0e0310f1390a5"; 927 927 } 928 928 { 929 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/fi/Thunderbird%20128.11.1esr.dmg"; 929 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/fi/Thunderbird%20140.0.1esr.dmg"; 930 930 locale = "fi"; 931 931 arch = "mac"; 932 - sha256 = "d2f5b3a691fd66eb2c5a062ab79e845d689f63b913daa4bebdea5c5d548276c6"; 932 + sha256 = "1cab5d0c6a18a1975fb9010e3c83ad34abbe9888e592ca4e0b87a6b45e7266e8"; 933 933 } 934 934 { 935 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/fr/Thunderbird%20128.11.1esr.dmg"; 935 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/fr/Thunderbird%20140.0.1esr.dmg"; 936 936 locale = "fr"; 937 937 arch = "mac"; 938 - sha256 = "305c169b9f254e695be9f35d8ade9ca72b225cd27220cc8858873d2f1b6f09ca"; 938 + sha256 = "7c5bc6b3d2d797ed40ca89f96668a359fd00344219db9942ab3f64e9a06e8a74"; 939 939 } 940 940 { 941 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/fy-NL/Thunderbird%20128.11.1esr.dmg"; 941 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/fy-NL/Thunderbird%20140.0.1esr.dmg"; 942 942 locale = "fy-NL"; 943 943 arch = "mac"; 944 - sha256 = "043043862111a5cac0c8411fc7884931e2546eff9f9ca84e4354d3b6858540f5"; 944 + sha256 = "b20d55d3887f546131dbc2d7440f0bc68cd90662366f761b57ff59cfb3680401"; 945 945 } 946 946 { 947 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ga-IE/Thunderbird%20128.11.1esr.dmg"; 947 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ga-IE/Thunderbird%20140.0.1esr.dmg"; 948 948 locale = "ga-IE"; 949 949 arch = "mac"; 950 - sha256 = "8f1244fe456395030b0510fe4be3a81bfe9505a236b6c8ffd1d0e4da23424fbf"; 950 + sha256 = "6500a32d0212883b059f7f8049c08534c346b271353f9c66e056b69f550501b9"; 951 951 } 952 952 { 953 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/gd/Thunderbird%20128.11.1esr.dmg"; 953 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/gd/Thunderbird%20140.0.1esr.dmg"; 954 954 locale = "gd"; 955 955 arch = "mac"; 956 - sha256 = "519466f56694b3256744ccbcfb9c070234e739c14c072c951a3082d2eb38af3d"; 956 + sha256 = "f27079d598d662c9d46857a742ff6ea455d2b0cfc63f9f11b8c075e79713f1e1"; 957 957 } 958 958 { 959 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/gl/Thunderbird%20128.11.1esr.dmg"; 959 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/gl/Thunderbird%20140.0.1esr.dmg"; 960 960 locale = "gl"; 961 961 arch = "mac"; 962 - sha256 = "beba3e556dcd796bf4c97e581aa7a3350723abee9dec21bfa87f908b08029ca0"; 962 + sha256 = "d29ad1cf5ec3b1b189c21a73fe689c01b21e60dd80fa6c6aad2dc04f77312fab"; 963 963 } 964 964 { 965 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/he/Thunderbird%20128.11.1esr.dmg"; 965 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/he/Thunderbird%20140.0.1esr.dmg"; 966 966 locale = "he"; 967 967 arch = "mac"; 968 - sha256 = "f28de27c4c326fcd9c2fbcdd06162c19a85d797a57171e14d8e9da9d6f5fca11"; 968 + sha256 = "3c39fe2417ab58098b43ee07d9cb562254c529d9777d520852000e368baa1234"; 969 969 } 970 970 { 971 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/hr/Thunderbird%20128.11.1esr.dmg"; 971 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/hr/Thunderbird%20140.0.1esr.dmg"; 972 972 locale = "hr"; 973 973 arch = "mac"; 974 - sha256 = "271cbd5738ada0ef82b104d58915517c449c8406dc60798580fb23930519a9d6"; 974 + sha256 = "c13f505713795fb6df640ab080f52096735c7374ba0826e2d3cd3f6dbc0e9390"; 975 975 } 976 976 { 977 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/hsb/Thunderbird%20128.11.1esr.dmg"; 977 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/hsb/Thunderbird%20140.0.1esr.dmg"; 978 978 locale = "hsb"; 979 979 arch = "mac"; 980 - sha256 = "d0a0c1b967fd8bbc55d9e3c07463cbfc2fa00f71488b09a59551aa4607f4798c"; 980 + sha256 = "46c80d63f7453876366db864ee14b80a9b52987a8af3bc8a24d8735d7691d3a4"; 981 981 } 982 982 { 983 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/hu/Thunderbird%20128.11.1esr.dmg"; 983 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/hu/Thunderbird%20140.0.1esr.dmg"; 984 984 locale = "hu"; 985 985 arch = "mac"; 986 - sha256 = "3f04c03977715039a2eb3f7449a32b53a41b264e45c29d25315321c1c5277eef"; 986 + sha256 = "6b48415df64d8c3ac80d8ce2b75712335948455f1d380ce1f3b4d38b7980a9d1"; 987 987 } 988 988 { 989 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/hy-AM/Thunderbird%20128.11.1esr.dmg"; 989 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/hy-AM/Thunderbird%20140.0.1esr.dmg"; 990 990 locale = "hy-AM"; 991 991 arch = "mac"; 992 - sha256 = "53d33d183ae181bfac1fd721e105ba4142d6a0010be9cf5f3448cd46876a23da"; 992 + sha256 = "4d342cfd00c5ffe34877600d6c475603fa961c6862bcc9b27f666aebb877a624"; 993 993 } 994 994 { 995 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/id/Thunderbird%20128.11.1esr.dmg"; 995 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/id/Thunderbird%20140.0.1esr.dmg"; 996 996 locale = "id"; 997 997 arch = "mac"; 998 - sha256 = "c5c0e230a22e18356524eefe04c7590625d6e616901de4a1fd02439c32333d26"; 998 + sha256 = "8fb14ee5415c8a7bf468e422c18b4dba35fdb0c78b57aae2058f50ad94fe386c"; 999 999 } 1000 1000 { 1001 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/is/Thunderbird%20128.11.1esr.dmg"; 1001 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/is/Thunderbird%20140.0.1esr.dmg"; 1002 1002 locale = "is"; 1003 1003 arch = "mac"; 1004 - sha256 = "211762c3d1d400be1c3f2a568a0111c56338553ce57f5b938c25d369f9cd6e22"; 1004 + sha256 = "e34a22ee6896606ccb29e28d80da8ab30bb060804d210f4a3eafa0437846b297"; 1005 1005 } 1006 1006 { 1007 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/it/Thunderbird%20128.11.1esr.dmg"; 1007 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/it/Thunderbird%20140.0.1esr.dmg"; 1008 1008 locale = "it"; 1009 1009 arch = "mac"; 1010 - sha256 = "acc08c97b56f20df44483402071e11c63410646181bc49ed43a144a8aa76a523"; 1010 + sha256 = "1ec0efcf85cf0c277cd219a206e947ae970b6b3397b3a8da24beee96ac0d8d34"; 1011 1011 } 1012 1012 { 1013 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ja-JP-mac/Thunderbird%20128.11.1esr.dmg"; 1013 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ja-JP-mac/Thunderbird%20140.0.1esr.dmg"; 1014 1014 locale = "ja-JP-mac"; 1015 1015 arch = "mac"; 1016 - sha256 = "507c90c52b0f43df9eb08df40ce5b62fb132a00a561007d2d0b8759052419195"; 1016 + sha256 = "c583039cff073b0a6f94a73f120c26d6f43c86ab53fb0c545d66ab927ea76049"; 1017 1017 } 1018 1018 { 1019 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ka/Thunderbird%20128.11.1esr.dmg"; 1019 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ka/Thunderbird%20140.0.1esr.dmg"; 1020 1020 locale = "ka"; 1021 1021 arch = "mac"; 1022 - sha256 = "721adf949350e037c25cf8291c431c4ad1a1c973e3b5c7f8038c49d101bff42f"; 1022 + sha256 = "743c09456f1e37df56f642e4f25c432c02518250e3e675c2e59e44682f42e3cc"; 1023 1023 } 1024 1024 { 1025 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/kab/Thunderbird%20128.11.1esr.dmg"; 1025 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/kab/Thunderbird%20140.0.1esr.dmg"; 1026 1026 locale = "kab"; 1027 1027 arch = "mac"; 1028 - sha256 = "5d80290a4450704ee98e14fe1ff5355838866f5bd02dd76b35d34340234e2fca"; 1028 + sha256 = "b2827daeb5582a8d7df1d0fd2a1263e306d2ffebec00f49f9bb7b36ec3f1f13e"; 1029 1029 } 1030 1030 { 1031 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/kk/Thunderbird%20128.11.1esr.dmg"; 1031 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/kk/Thunderbird%20140.0.1esr.dmg"; 1032 1032 locale = "kk"; 1033 1033 arch = "mac"; 1034 - sha256 = "d2e06a4b9217647fb251f4923704cb2a328f2f6bd2cdec2dffa565f035256118"; 1034 + sha256 = "cda4811b48bc59a731b9db326385a6e24b5cde15170f67f7e66b035642ab6301"; 1035 1035 } 1036 1036 { 1037 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ko/Thunderbird%20128.11.1esr.dmg"; 1037 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ko/Thunderbird%20140.0.1esr.dmg"; 1038 1038 locale = "ko"; 1039 1039 arch = "mac"; 1040 - sha256 = "93be46780d45123071b98e3a502bd66a0e013173113328c5bb490348e0e95e3b"; 1040 + sha256 = "b66634a71ccf6010025e395326227d900e70f41ac6d4aefadb87ed863268be8b"; 1041 1041 } 1042 1042 { 1043 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/lt/Thunderbird%20128.11.1esr.dmg"; 1043 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/lt/Thunderbird%20140.0.1esr.dmg"; 1044 1044 locale = "lt"; 1045 1045 arch = "mac"; 1046 - sha256 = "e7290fb83d7d599e19ba084ac0cea5e8766ac939a53536260566150ce0967888"; 1046 + sha256 = "344bfe5819f26f494243bee9051b2b6cef79e15377dcd3b0c3462feba09a4899"; 1047 1047 } 1048 1048 { 1049 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/lv/Thunderbird%20128.11.1esr.dmg"; 1049 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/lv/Thunderbird%20140.0.1esr.dmg"; 1050 1050 locale = "lv"; 1051 1051 arch = "mac"; 1052 - sha256 = "953833f44f8d18c645dc4581389e3c4e6620e7ecbb612223589b01a8b0f0c7b3"; 1052 + sha256 = "e9a5cc498ae57a76fd8e8dfe58e9f5faebbd7c50f53f50909b091f822dccc366"; 1053 1053 } 1054 1054 { 1055 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ms/Thunderbird%20128.11.1esr.dmg"; 1055 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ms/Thunderbird%20140.0.1esr.dmg"; 1056 1056 locale = "ms"; 1057 1057 arch = "mac"; 1058 - sha256 = "96cd6ceb2eeee23e41df9e85f66d972652eb883185dfe3ee467e3d339db89728"; 1058 + sha256 = "17e553a159ca6e020ee24cc4293f1d4ad144dc0b2dc505aefa7acac7a1b2874c"; 1059 1059 } 1060 1060 { 1061 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/nb-NO/Thunderbird%20128.11.1esr.dmg"; 1061 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/nb-NO/Thunderbird%20140.0.1esr.dmg"; 1062 1062 locale = "nb-NO"; 1063 1063 arch = "mac"; 1064 - sha256 = "873acfd868eb4eb98fd89ed940a4f94106102d671906ed96aa5cbdc8adfd0aad"; 1064 + sha256 = "fba0b9ae7a9809e4ee8181c387c74a54dc3dd73e39b25931675d1f3251f5cba4"; 1065 1065 } 1066 1066 { 1067 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/nl/Thunderbird%20128.11.1esr.dmg"; 1067 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/nl/Thunderbird%20140.0.1esr.dmg"; 1068 1068 locale = "nl"; 1069 1069 arch = "mac"; 1070 - sha256 = "4eb57ac9ee74c73390f5e7d85c99974b39c8e029891c9264a59f7f4caf35189e"; 1070 + sha256 = "4c114373ca9760c588187d440301c9f5f5c3ba955f212ece78ffc6e095347d01"; 1071 1071 } 1072 1072 { 1073 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/nn-NO/Thunderbird%20128.11.1esr.dmg"; 1073 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/nn-NO/Thunderbird%20140.0.1esr.dmg"; 1074 1074 locale = "nn-NO"; 1075 1075 arch = "mac"; 1076 - sha256 = "7b460dc745f4216207cbbe31c22ca078097da98fc36608e30c801460b53e4175"; 1076 + sha256 = "46f358d2437f74f6feb7c508b844325cd15ef61c230bf0af3338a3e754c5ad99"; 1077 1077 } 1078 1078 { 1079 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/pa-IN/Thunderbird%20128.11.1esr.dmg"; 1079 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/pa-IN/Thunderbird%20140.0.1esr.dmg"; 1080 1080 locale = "pa-IN"; 1081 1081 arch = "mac"; 1082 - sha256 = "ae6e070503490be4a20cfe88957c50bd2d5b61558e4e082e405dbb6c9af8d650"; 1082 + sha256 = "f5ae52be91e9e74a20a865603ab70650015cd052dd3524f40d547a725182514d"; 1083 1083 } 1084 1084 { 1085 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/pl/Thunderbird%20128.11.1esr.dmg"; 1085 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/pl/Thunderbird%20140.0.1esr.dmg"; 1086 1086 locale = "pl"; 1087 1087 arch = "mac"; 1088 - sha256 = "8d7bef22f5ec018230675388f1e09f57ca1a56c14faf20625947ace6a63f1b4f"; 1088 + sha256 = "68c481bed5cdb529e294d6d6c4a96897f0f26205910e5f53cedbd28674042f04"; 1089 1089 } 1090 1090 { 1091 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/pt-BR/Thunderbird%20128.11.1esr.dmg"; 1091 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/pt-BR/Thunderbird%20140.0.1esr.dmg"; 1092 1092 locale = "pt-BR"; 1093 1093 arch = "mac"; 1094 - sha256 = "8d07693400e2ce47f28e50063f754f5ecfe33bce80c20836e5964e58c30d808b"; 1094 + sha256 = "5d7df81759e99ba5c1ce321641450963443ebe8fa0dba62a1305cbc65228ad4c"; 1095 1095 } 1096 1096 { 1097 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/pt-PT/Thunderbird%20128.11.1esr.dmg"; 1097 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/pt-PT/Thunderbird%20140.0.1esr.dmg"; 1098 1098 locale = "pt-PT"; 1099 1099 arch = "mac"; 1100 - sha256 = "9807509c6214bfa50cc4da2d4e1182f398f5d2dc01527e946b6f3f3a62f2c5bf"; 1100 + sha256 = "ed4d5f4f0c3574cade3cc8df470cec5b41a63daa60cfefd18650f87bc1a5e857"; 1101 1101 } 1102 1102 { 1103 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/rm/Thunderbird%20128.11.1esr.dmg"; 1103 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/rm/Thunderbird%20140.0.1esr.dmg"; 1104 1104 locale = "rm"; 1105 1105 arch = "mac"; 1106 - sha256 = "02d138d8e70732f364b600f96e3d493025b0b30ad2f97c86c1de56a4ac396c21"; 1106 + sha256 = "e7cf689884d0a39f718bf17752600cb837d2cd88b1636c139c94aa98b080a8cd"; 1107 1107 } 1108 1108 { 1109 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ro/Thunderbird%20128.11.1esr.dmg"; 1109 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ro/Thunderbird%20140.0.1esr.dmg"; 1110 1110 locale = "ro"; 1111 1111 arch = "mac"; 1112 - sha256 = "fc3a92974d3dd7c8ea9e253e15685e951a9378af81260a32bc981222ec9096ba"; 1112 + sha256 = "304c225dba0e4f4e6014ab791eb4950072a15b61bf88d0dc277e6eb2aaaa3531"; 1113 1113 } 1114 1114 { 1115 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/ru/Thunderbird%20128.11.1esr.dmg"; 1115 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/ru/Thunderbird%20140.0.1esr.dmg"; 1116 1116 locale = "ru"; 1117 1117 arch = "mac"; 1118 - sha256 = "ff86c68ca4fac2512ac16a7d46a93d9fb799f0cc7faed74bc11804d8945a6f24"; 1118 + sha256 = "d53d2c8ec5112d3e3f94391ffc8323451ed0f39abbc3f1548f29989eb1a94e7c"; 1119 1119 } 1120 1120 { 1121 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/sk/Thunderbird%20128.11.1esr.dmg"; 1121 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/sk/Thunderbird%20140.0.1esr.dmg"; 1122 1122 locale = "sk"; 1123 1123 arch = "mac"; 1124 - sha256 = "2d41c7410469e0157c0856e1c615dc950b1b2773a889391afe96faebb064c56b"; 1124 + sha256 = "f7083412a1e2a067b37a0bbbf5366c40b558a8f0b04f3435caed1753f551e05b"; 1125 1125 } 1126 1126 { 1127 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/sl/Thunderbird%20128.11.1esr.dmg"; 1127 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/sl/Thunderbird%20140.0.1esr.dmg"; 1128 1128 locale = "sl"; 1129 1129 arch = "mac"; 1130 - sha256 = "620044e83c647d4d59fe4bf04c0baad67ebd3e987962f46e5b3207319efff547"; 1130 + sha256 = "a2f163298c4653cbf5615cc77b32f7e05ec6f99b0448ddcdb2d0e4e326918c9e"; 1131 1131 } 1132 1132 { 1133 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/sq/Thunderbird%20128.11.1esr.dmg"; 1133 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/sq/Thunderbird%20140.0.1esr.dmg"; 1134 1134 locale = "sq"; 1135 1135 arch = "mac"; 1136 - sha256 = "2053c3b73c6cc460ae19a16b68cc20847ae5c1ccaa257cf0f1bb94ceb5303a77"; 1136 + sha256 = "383328a54e6155e813d1e328658903cfc1836e640032182a40446455df52b00f"; 1137 1137 } 1138 1138 { 1139 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/sr/Thunderbird%20128.11.1esr.dmg"; 1139 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/sr/Thunderbird%20140.0.1esr.dmg"; 1140 1140 locale = "sr"; 1141 1141 arch = "mac"; 1142 - sha256 = "97c49fcce28b8a3fbafa9c0ac0057269c738a02b599298891ed95cfc5f9c326e"; 1142 + sha256 = "5fd5564f871656f491b7a55b459ad22ad465f6d683ceec660e0c894bd059411e"; 1143 1143 } 1144 1144 { 1145 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/sv-SE/Thunderbird%20128.11.1esr.dmg"; 1145 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/sv-SE/Thunderbird%20140.0.1esr.dmg"; 1146 1146 locale = "sv-SE"; 1147 1147 arch = "mac"; 1148 - sha256 = "09b44ad55e36b02d907063f166ffa97a9405b7bed912e42917fdd4a662d257ba"; 1148 + sha256 = "a3bda6773dd565a4d613e97f78648bf461f44b6237b941ae1711cfd0e098d357"; 1149 1149 } 1150 1150 { 1151 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/th/Thunderbird%20128.11.1esr.dmg"; 1151 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/th/Thunderbird%20140.0.1esr.dmg"; 1152 1152 locale = "th"; 1153 1153 arch = "mac"; 1154 - sha256 = "e261fbd2bda8eac5044194412e872ee06e95ce9a1c6f8b03374b9d5bdb211a13"; 1154 + sha256 = "8d2b8dc11ce8532a09cda982f1625877e9a1d634678811760be5529500641bb1"; 1155 1155 } 1156 1156 { 1157 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/tr/Thunderbird%20128.11.1esr.dmg"; 1157 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/tr/Thunderbird%20140.0.1esr.dmg"; 1158 1158 locale = "tr"; 1159 1159 arch = "mac"; 1160 - sha256 = "0998341bc976e2680424270866cc172987e6e6a0285fe9ae730a3dc693e7dd63"; 1160 + sha256 = "ee2848ad6bb3bd0c5d367cde7c5a010dce7e6f28b25b42b036297c199ff45ed7"; 1161 1161 } 1162 1162 { 1163 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/uk/Thunderbird%20128.11.1esr.dmg"; 1163 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/uk/Thunderbird%20140.0.1esr.dmg"; 1164 1164 locale = "uk"; 1165 1165 arch = "mac"; 1166 - sha256 = "56e5bfddc16ad37931fd2d8fc13f0808ce49368840a1ef18e093f8a2cfb2a51c"; 1166 + sha256 = "65e3c31b51773f089266db704c2c128c222e05a5593088b8d0a0f6b3e65844a1"; 1167 1167 } 1168 1168 { 1169 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/uz/Thunderbird%20128.11.1esr.dmg"; 1169 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/uz/Thunderbird%20140.0.1esr.dmg"; 1170 1170 locale = "uz"; 1171 1171 arch = "mac"; 1172 - sha256 = "a517ead8414d926f604903230fd1a987a5867c05f78dac18597201bae98f22bf"; 1172 + sha256 = "baa2ed186c708f03fa8df0dd60ba8c0ee1157661e7a871b48526541bfeaa1e7f"; 1173 1173 } 1174 1174 { 1175 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/vi/Thunderbird%20128.11.1esr.dmg"; 1175 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/vi/Thunderbird%20140.0.1esr.dmg"; 1176 1176 locale = "vi"; 1177 1177 arch = "mac"; 1178 - sha256 = "b59993cbd972fe642be6a9f57c44cf75cfe6c31664b8daf81b1eede51b00eede"; 1178 + sha256 = "710a9b52e6343d27a9412cc6296b0f7fe2dd0b5fe322a25ff09ea7da5e6cc30f"; 1179 1179 } 1180 1180 { 1181 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/zh-CN/Thunderbird%20128.11.1esr.dmg"; 1181 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/zh-CN/Thunderbird%20140.0.1esr.dmg"; 1182 1182 locale = "zh-CN"; 1183 1183 arch = "mac"; 1184 - sha256 = "6030459cbef475ea9efabde5d2a7be84587871365a3a7f1b589168c39485b8e8"; 1184 + sha256 = "ea22275ae0bc0e0adce8228f798101ca699016577519a94a008ea409fa59497c"; 1185 1185 } 1186 1186 { 1187 - url = "http://archive.mozilla.org/pub/thunderbird/releases/128.11.1esr/mac/zh-TW/Thunderbird%20128.11.1esr.dmg"; 1187 + url = "http://archive.mozilla.org/pub/thunderbird/releases/140.0.1esr/mac/zh-TW/Thunderbird%20140.0.1esr.dmg"; 1188 1188 locale = "zh-TW"; 1189 1189 arch = "mac"; 1190 - sha256 = "cf9ab16f91e90662c1ac9b37cb08ba7d357179d8fd66b40e176847d341b99418"; 1190 + sha256 = "8fece4e313a472671567de0c2346db969d04aa870d7985a29c252848685bf2c6"; 1191 1191 } 1192 1192 ]; 1193 1193 }
+16 -27
pkgs/applications/radio/sdrangel/default.nix pkgs/by-name/sd/sdrangel/package.nix
··· 30 30 ninja, 31 31 opencv4, 32 32 pkg-config, 33 - qt5compat, 34 - qtcharts, 35 - qtdeclarative, 36 - qtlocation, 37 - qtmultimedia, 38 - qtscxml, 39 - qtserialport, 40 - qtspeech, 41 - qttools, 42 - qtwayland, 43 - qtwebsockets, 44 - qtwebengine, 33 + qt6, 34 + qt6Packages, 45 35 rtl-sdr, 46 36 serialdv, 47 37 sdrplay, 48 38 sgp4, 49 39 soapysdr-with-plugins, 50 40 uhd, 51 - wrapQtAppsHook, 52 41 zlib, 53 42 withSDRplay ? false, 54 43 }: ··· 60 49 src = fetchFromGitHub { 61 50 owner = "f4exb"; 62 51 repo = "sdrangel"; 63 - rev = "v${finalAttrs.version}"; 52 + tag = "v${finalAttrs.version}"; 64 53 hash = "sha256-ymDKHGJNoCOMa1zzFvjTzFa34wP1+iKSfJZZi7Sk/GM="; 65 54 }; 66 55 ··· 68 57 cmake 69 58 ninja 70 59 pkg-config 71 - wrapQtAppsHook 60 + qt6.wrapQtAppsHook 72 61 ]; 73 62 74 63 buildInputs = ··· 96 85 limesuite 97 86 mbelib 98 87 opencv4 99 - qt5compat 100 - qtcharts 101 - qtdeclarative 102 - qtlocation 103 - qtmultimedia 104 - qtscxml 105 - qtserialport 106 - qtspeech 107 - qttools 108 - qtwebsockets 109 - qtwebengine 88 + qt6Packages.qt5compat 89 + qt6Packages.qtcharts 90 + qt6Packages.qtdeclarative 91 + qt6Packages.qtlocation 92 + qt6Packages.qtmultimedia 93 + qt6Packages.qtscxml 94 + qt6Packages.qtserialport 95 + qt6Packages.qtspeech 96 + qt6Packages.qttools 97 + qt6Packages.qtwebsockets 98 + qt6Packages.qtwebengine 110 99 rtl-sdr 111 100 serialdv 112 101 sgp4 ··· 114 103 uhd 115 104 zlib 116 105 ] 117 - ++ lib.optionals stdenv.hostPlatform.isLinux [ qtwayland ] 106 + ++ lib.optionals stdenv.hostPlatform.isLinux [ qt6Packages.qtwayland ] 118 107 ++ lib.optionals stdenv.hostPlatform.isDarwin [ apple-sdk_12 ] 119 108 ++ lib.optionals withSDRplay [ sdrplay ]; 120 109
+1 -1
pkgs/by-name/am/amqpcat/package.nix
··· 35 35 mainProgram = "amqpcat"; 36 36 homepage = "https://github.com/cloudamqp/amqpcat"; 37 37 license = lib.licenses.mit; 38 - maintainers = with lib.maintainers; [ aaronjheng ]; 38 + maintainers = with lib.maintainers; [ ]; 39 39 }; 40 40 }
+3 -3
pkgs/by-name/an/ananicy-rules-cachyos/package.nix
··· 7 7 8 8 stdenvNoCC.mkDerivation { 9 9 pname = "ananicy-rules-cachyos"; 10 - version = "0-unstable-2025-03-19"; 10 + version = "0-unstable-2025-07-06"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "CachyOS"; 14 14 repo = "ananicy-rules"; 15 - rev = "99693d533a238c19915057f9cd5e541e6dbf57d9"; 16 - hash = "sha256-dTGfOw2Cj4q3AiQswcyl9bWUw1qInyqap43r4j+qS1Y="; 15 + rev = "339bee6f2de3de8e866c23b210baf6cabf153549"; 16 + hash = "sha256-D/+/7NdfV8kHwYm5mJ6b7Vl3QCUdK2+NbZSefWTZt5k="; 17 17 }; 18 18 19 19 dontConfigure = true;
+19 -22
pkgs/by-name/at/attic-client/package.nix
··· 8 8 pkg-config, 9 9 stdenv, 10 10 installShellFiles, 11 + nix-update-script, 11 12 crates ? [ "attic-client" ], 12 13 }: 14 + 13 15 let 14 16 # Only the attic-client crate builds against the Nix C++ libs 15 17 # This derivation is also used to build the server 16 18 needNixInclude = lib.elem "attic-client" crates; 19 + nix = nixVersions.nix_2_28; 17 20 in 21 + 18 22 rustPlatform.buildRustPackage { 19 23 pname = "attic"; 20 - version = "0-unstable-2025-07-01"; 24 + version = "0-unstable-2025-07-08"; 21 25 22 26 src = fetchFromGitHub { 23 27 owner = "zhaofengli"; 24 28 repo = "attic"; 25 - rev = "896ad88fa57ad5dbcd267c0ac51f1b71ccfcb4dd"; 26 - hash = "sha256-V0EPQNsQko1a8OqIWc2lLviLnMpR1m08Ej00z5RVTfs="; 29 + rev = "07147da79388468ff85c2a650500d11ca0edd12e"; 30 + hash = "sha256-pHsHcWQWGyzDh48YHnSw9YVKEnQ95QWnmHNFtvo7iu0="; 27 31 }; 28 32 29 33 nativeBuildInputs = [ ··· 31 35 installShellFiles 32 36 ]; 33 37 34 - buildInputs = lib.optional needNixInclude nixVersions.nix_2_24 ++ [ 35 - boost 36 - ]; 38 + buildInputs = lib.optional needNixInclude nix ++ [ boost ]; 37 39 38 40 cargoBuildFlags = lib.concatMapStrings (c: "-p ${c} ") crates; 39 - cargoHash = "sha256-AbpWnYfBMrR6oOfy2LkQvIPYsClCWE89bJav+iHTtLM="; 41 + cargoHash = "sha256-I5GS32dOCECYKSNMi2Xs2rBRxPLcvLEWHlIIWP/bMBU="; 40 42 useFetchCargoVendor = true; 41 43 42 - env = 43 - { 44 - ATTIC_DISTRIBUTOR = "nixpkgs"; 45 - } 46 - // lib.optionalAttrs needNixInclude { 47 - NIX_INCLUDE_PATH = "${lib.getDev nixVersions.nix_2_24}/include"; 48 - }; 44 + env = { 45 + ATTIC_DISTRIBUTOR = "nixpkgs"; 46 + } // lib.optionalAttrs needNixInclude { NIX_INCLUDE_PATH = "${lib.getDev nix}/include"; }; 49 47 50 48 # Attic interacts with Nix directly and its tests require trusted-user access 51 49 # to nix-daemon to import NARs, which is not possible in the build sandbox. ··· 61 59 ''; 62 60 63 61 passthru = { 64 - tests = { 65 - inherit (nixosTests) atticd; 66 - }; 62 + tests = { inherit (nixosTests) atticd; }; 67 63 68 - updateScript = ./update.sh; 64 + updateScript = nix-update-script { extraArgs = [ "--version=branch" ]; }; 69 65 }; 70 66 71 - meta = with lib; { 67 + meta = { 72 68 description = "Multi-tenant Nix Binary Cache"; 73 69 homepage = "https://github.com/zhaofengli/attic"; 74 - license = licenses.asl20; 75 - maintainers = with maintainers; [ 70 + license = lib.licenses.asl20; 71 + maintainers = with lib.maintainers; [ 76 72 zhaofengli 77 73 aciceri 74 + defelo 78 75 ]; 79 - platforms = platforms.linux ++ platforms.darwin; 76 + platforms = lib.platforms.linux ++ lib.platforms.darwin; 80 77 mainProgram = "attic"; 81 78 }; 82 79 }
-40
pkgs/by-name/at/attic-client/update.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #!nix-shell -i bash -p wget nix-prefetch-github jq coreutils 3 - 4 - # shellcheck shell=bash 5 - 6 - if [ -n "$GITHUB_TOKEN" ]; then 7 - TOKEN_ARGS=(--header "Authorization: token $GITHUB_TOKEN") 8 - fi 9 - 10 - if [[ $# -gt 1 || $1 == -* ]]; then 11 - echo "Regenerates packaging data for attic." 12 - echo "Usage: $0 [git commit]" 13 - exit 1 14 - fi 15 - 16 - set -x 17 - 18 - cd "$(dirname "$0")" 19 - rev="$1" 20 - 21 - set -euo pipefail 22 - 23 - if [ -z "$rev" ]; then 24 - rev="$(wget -O- "${TOKEN_ARGS[@]}" "https://api.github.com/repos/zhaofengli/attic/commits?per_page=1" | jq -r '.[0].sha')" 25 - fi 26 - 27 - date="$(wget -O- "${TOKEN_ARGS[@]}" "https://api.github.com/repos/zhaofengli/attic/commits/$rev" | jq -r '.commit.author.date' | cut -dT -f1)" 28 - 29 - version="0-unstable-$date" 30 - 31 - # Sources 32 - src_hash=$(nix-prefetch-github zhaofengli attic --rev "$rev" | jq -r .hash) 33 - 34 - # Cargo.lock 35 - src="https://raw.githubusercontent.com/zhaofengli/attic/$rev" 36 - wget "${TOKEN_ARGS[@]}" "$src/Cargo.lock" -O Cargo.lock 37 - 38 - sed -i -E -e "s#version = \".*\"#version = \"$version\"#" package.nix 39 - sed -i -E -e "s#rev = \".*\"#rev = \"$rev\"#" package.nix 40 - sed -i -E -e "s#hash = \".*\"#hash = \"$src_hash\"#" package.nix
+2 -2
pkgs/by-name/ba/bats/libraries.nix
··· 58 58 59 59 bats-detik = stdenv.mkDerivation (finalAttrs: { 60 60 pname = "bats-detik"; 61 - version = "1.3.2"; 61 + version = "1.3.3"; 62 62 src = fetchFromGitHub { 63 63 owner = "bats-core"; 64 64 repo = "bats-detik"; 65 65 rev = "v${finalAttrs.version}"; 66 - hash = "sha256-f8PN+VsUdUXrR9JiQgVuYDy2QgOtaxE8tkkxOUF0uC4="; 66 + hash = "sha256-NM8/WDiTOJORC6+pAa6tYJC7wnuMH9OP5LBaatXyaYw="; 67 67 }; 68 68 dontBuild = true; 69 69 installPhase = ''
+2 -2
pkgs/by-name/br/brltty/package.nix
··· 22 22 23 23 stdenv.mkDerivation rec { 24 24 pname = "brltty"; 25 - version = "6.7"; 25 + version = "6.8"; 26 26 27 27 src = fetchurl { 28 28 url = "https://brltty.app/archive/brltty-${version}.tar.gz"; 29 - sha256 = "sha256-FsM9AeL1lnBziJlmB7EZAIgDKylT8D4Il81Fe1y9Yjg="; 29 + sha256 = "sha256-MoDYjHU6aJY9e5cgjm9InOEDGCs+jvlEurMWg9wo4RY="; 30 30 }; 31 31 32 32 nativeBuildInputs = [
+49
pkgs/by-name/by/bypass-url-parser/package.nix
··· 1 + { 2 + lib, 3 + fetchFromGitHub, 4 + python3, 5 + }: 6 + 7 + python3.pkgs.buildPythonApplication rec { 8 + pname = "bypass-url-parser"; 9 + version = "0.4.4"; 10 + pyproject = true; 11 + 12 + src = fetchFromGitHub { 13 + owner = "laluka"; 14 + repo = "bypass-url-parser"; 15 + tag = "v${version}"; 16 + hash = "sha256-h9+kM2LmfPaaM7MK6lK/ARrArwvRn6d+3BW+rNTkqzA="; 17 + }; 18 + 19 + build-system = with python3.pkgs; [ pdm-backend ]; 20 + 21 + dependencies = with python3.pkgs; [ 22 + coloredlogs 23 + docopt 24 + ]; 25 + 26 + nativeCheckInputs = with python3.pkgs; [ pytestCheckHook ]; 27 + 28 + pythonImportsCheck = [ "bypass_url_parser" ]; 29 + 30 + preCheck = '' 31 + # Some tests need the binary 32 + export PATH=$out/bin:$PATH 33 + ''; 34 + 35 + disabledTests = [ 36 + # Tests require network access 37 + "test_sample_usage" 38 + "test_sample_cli_usage" 39 + ]; 40 + 41 + meta = { 42 + description = "Tool that tests URL bypasses to reach a 40X protected page"; 43 + homepage = "https://github.com/laluka/bypass-url-parser"; 44 + changelog = "https://github.com/laluka/bypass-url-parser/releases/tag/${src.tag}"; 45 + license = lib.licenses.agpl3Plus; 46 + maintainers = with lib.maintainers; [ fab ]; 47 + mainProgram = "bypass-url-parser"; 48 + }; 49 + }
+3 -3
pkgs/by-name/fa/fastly/package.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "fastly"; 14 - version = "11.3.0"; 14 + version = "11.4.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "fastly"; 18 18 repo = "cli"; 19 19 tag = "v${version}"; 20 - hash = "sha256-SFBKu30C92BbbwSlmlRU/66mBywROktWUiw8fltFXoA="; 20 + hash = "sha256-jfj37b3L3LcPODBYBAOTWq+mA0xrIr3r+6lu65gKyYI="; 21 21 # The git commit is part of the `fastly version` original output; 22 22 # leave that output the same in nixpkgs. Use the `.git` directory 23 23 # to retrieve the commit SHA, and remove the directory afterwards, ··· 34 34 "cmd/fastly" 35 35 ]; 36 36 37 - vendorHash = "sha256-ypimv9xi3mKL6xmmkAYdUO+lspafXpJsP8StaniboE0="; 37 + vendorHash = "sha256-souo+yksoZpUxWfY7flL4uLdRgAIrtZKRIlGK0p1hZs="; 38 38 39 39 nativeBuildInputs = [ 40 40 installShellFiles
+2 -2
pkgs/by-name/ga/gapless/package.nix
··· 16 16 }: 17 17 stdenv.mkDerivation (finalAttrs: { 18 18 pname = "gapless"; 19 - version = "4.4"; 19 + version = "4.5"; 20 20 21 21 src = fetchFromGitLab { 22 22 domain = "gitlab.gnome.org"; 23 23 owner = "neithern"; 24 24 repo = "g4music"; 25 25 rev = "v${finalAttrs.version}"; 26 - hash = "sha256-10AFaUmqVkL4q8xgewfosN2/SziNhat9p6x/+9mBdyU="; 26 + hash = "sha256-P8hmywS/k+24KfFxpQdnBv0ArD+pKgUNcYk/Mnsx5jY="; 27 27 }; 28 28 29 29 nativeBuildInputs = [
+1 -1
pkgs/by-name/gd/gdevelop/darwin.nix
··· 18 18 19 19 src = fetchurl { 20 20 url = "https://github.com/4ian/GDevelop/releases/download/v${version}/GDevelop-5-${version}-universal-mac.zip"; 21 - hash = "sha256-R8RB88K8dymzQnfeZUypo24EkXzpDfcsosQg3gTo3WI="; 21 + hash = "sha256-/0wqZN9bVCNXAe9LkGL8/dw2b/stffDbPPaZQrugEhQ="; 22 22 }; 23 23 24 24 sourceRoot = ".";
+1 -1
pkgs/by-name/gd/gdevelop/linux.nix
··· 13 13 if stdenv.hostPlatform.system == "x86_64-linux" then 14 14 fetchurl { 15 15 url = "https://github.com/4ian/GDevelop/releases/download/v${version}/GDevelop-5-${version}.AppImage"; 16 - hash = "sha256-ZVQ5e7Ghj/wZDE0RvoH264KNxaHP6x5fxSWEbbYsa88="; 16 + hash = "sha256-+J0AURlpnZ7Do0ZRqzwwvdcyozZLdWGQKr+7OggOn1I="; 17 17 } 18 18 else 19 19 throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}";
+1 -1
pkgs/by-name/gd/gdevelop/package.nix
··· 5 5 ... 6 6 }: 7 7 let 8 - version = "5.5.233"; 8 + version = "5.5.236"; 9 9 pname = "gdevelop"; 10 10 meta = { 11 11 description = "Graphical Game Development Studio";
+2 -2
pkgs/by-name/gr/graphite-gtk-theme/package.nix
··· 62 62 stdenvNoCC.mkDerivation 63 63 rec { 64 64 inherit pname; 65 - version = "2024-07-15"; 65 + version = "2025-07-06"; 66 66 67 67 src = fetchFromGitHub { 68 68 owner = "vinceliuice"; 69 69 repo = "graphite-gtk-theme"; 70 70 rev = version; 71 - hash = "sha256-k93l/7DF0HSKPfiIxzBLz0mBflgbdYJyGLEmWZx3q7o="; 71 + hash = "sha256-TOIpQTYg+1DX/Tq5BMygxbUC0NpzPWBGDtOnnT55c1w="; 72 72 }; 73 73 74 74 nativeBuildInputs = [
+2 -2
pkgs/by-name/ha/ha-mqtt-discoverable-cli/package.nix
··· 6 6 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "ha-mqtt-discoverable-cli"; 9 - version = "0.19.2.1"; 9 + version = "0.20.1"; 10 10 pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "unixorn"; 14 14 repo = "ha-mqtt-discoverable-cli"; 15 15 tag = "v${version}"; 16 - hash = "sha256-SPCbBqdhC+pgV3mQ+e3jkg2hWYegl1wE38Ac06R5uAA="; 16 + hash = "sha256-4iQHpz09CbPuU+236HQdRNRDB3bcj9VZ0s/4BdxyB/8="; 17 17 }; 18 18 19 19 pythonRelaxDeps = [ "ha-mqtt-discoverable" ];
+13 -7
pkgs/by-name/ht/httptoolkit-server/only-build-for-one-platform.patch
··· 1 1 diff --git a/pack.ts b/pack.ts 2 - index aba98cc..03ce86a 100644 2 + index 0212d09..03ce86a 100644 3 3 --- a/pack.ts 4 4 +++ b/pack.ts 5 - @@ -75,33 +75,7 @@ const packageApp = async () => { 5 + @@ -75,39 +75,7 @@ const packageApp = async () => { 6 6 delete pJson.scripts.prepack; // We don't want to rebuild - all built code will be in the packed content 7 7 await fs.writeJson(path.join(OUTPUT_DIR, 'package.json'), pJson); 8 8 ··· 10 10 - 11 11 - // Run build-release in this folder, for each platform. For each bundle, we copy in 12 12 - // only the relevant platform-specific NSS files. 13 - - console.log('Building for Linux'); 13 + - console.log('Building for Linux x64'); 14 14 - await fs.mkdir(path.join(OUTPUT_DIR, 'nss')); 15 15 - await fs.copy(path.join(__dirname, 'nss', 'linux'), path.join(OUTPUT_DIR, 'nss', 'linux')); 16 - - await spawn(buildScript, ['linux'], { cwd: OUTPUT_DIR, stdio: 'inherit' }); 16 + - await spawn(buildScript, ['linux', 'x64'], { cwd: OUTPUT_DIR, stdio: 'inherit' }); 17 17 - 18 - - console.log('Building for Darwin'); 18 + - console.log('Building for Linux arm64'); 19 + - await spawn(buildScript, ['linux', 'arm64'], { cwd: OUTPUT_DIR, stdio: 'inherit' }); 20 + - 21 + - console.log('Building for Darwin x64'); 19 22 - await fs.remove(path.join(OUTPUT_DIR, 'nss', 'linux')); 20 23 - await fs.copy(path.join(__dirname, 'nss', 'darwin'), path.join(OUTPUT_DIR, 'nss', 'darwin')); 21 - - await spawn(buildScript, ['darwin'], { cwd: OUTPUT_DIR, stdio: 'inherit' }); 24 + - await spawn(buildScript, ['darwin', 'x64'], { cwd: OUTPUT_DIR, stdio: 'inherit' }); 25 + - 26 + - console.log('Building for Darwin arm64'); 27 + - await spawn(buildScript, ['darwin', 'arm64'], { cwd: OUTPUT_DIR, stdio: 'inherit' }); 22 28 - 23 29 - console.log('Building for Win32'); 24 30 - await fs.remove(path.join(OUTPUT_DIR, 'nss', 'darwin')); 25 31 - await fs.copy(path.join(__dirname, 'nss', 'win32'), path.join(OUTPUT_DIR, 'nss', 'win32')); 26 - - await spawn(buildScript, ['win32'], { cwd: OUTPUT_DIR, stdio: 'inherit' }); 32 + - await spawn(buildScript, ['win32', 'x64'], { cwd: OUTPUT_DIR, stdio: 'inherit' }); 27 33 - 28 34 - // Oclif builds a nodeless platform-agnostic bundle too (although in our case, nothing is 29 35 - // really platform agnostic). Not necessary, probably won't work - drop it.
+12 -8
pkgs/by-name/ht/httptoolkit-server/package.nix
··· 9 9 pkg-config, 10 10 openssl, 11 11 libdatachannel, 12 + plog, 12 13 }: 13 14 14 15 let 15 16 nodejs = nodejs_20; 16 17 buildNpmPackage' = buildNpmPackage.override { inherit nodejs; }; 17 18 18 - version = "1.19.3"; 19 + version = "1.20.1"; 19 20 20 21 src = fetchFromGitHub { 21 22 owner = "httptoolkit"; 22 23 repo = "httptoolkit-server"; 23 24 rev = "refs/tags/v${version}"; 24 - hash = "sha256-cIxpV155A76TCOXurJhBA0dQpwn63hTpokBRXMLBEUA="; 25 + hash = "sha256-iEAYZX7WNk6TvZ44GAOgTqXOcW5oFn4gX+kzixZZbWA="; 25 26 }; 26 27 27 28 overridesNodeModules = buildNpmPackage' { ··· 29 30 inherit version src; 30 31 sourceRoot = "${src.name}/overrides/js"; 31 32 32 - npmDepsHash = "sha256-GRN6ua3FY1AE61bB7PM2wgbKPZI/zJeXa5HOOh/2N2Y="; 33 + npmDepsHash = "sha256-Uw7XbfwLMX+zbSrzFgvB8lw3hxUyw1eRKazCITrT/28="; 33 34 34 35 dontBuild = true; 35 36 ··· 41 42 42 43 nodeDatachannel = buildNpmPackage' { 43 44 pname = "node-datachannel"; 44 - version = "0.4.3"; 45 + version = "0.12.0"; 45 46 46 47 src = fetchFromGitHub { 47 48 owner = "murat-dogan"; 48 49 repo = "node-datachannel"; 49 50 rev = "refs/tags/v${nodeDatachannel.version}"; 50 - hash = "sha256-BlfeocqSG+pqbK0onnCf0VKbQw8Qq4qMxhAcfGlFYR8="; 51 + hash = "sha256-xjYja+e2Z7X5cU4sEuSsJzG0gtmTPl3VrUf+ypd3zdw="; 51 52 }; 52 53 53 54 npmFlags = [ "--ignore-scripts" ]; 54 55 55 56 makeCacheWritable = true; 56 57 57 - npmDepsHash = "sha256-pgcOOjiuWKlpD+WJyPj/c9ZhDjYuEnybpLS/BPmzeFM="; 58 + npmDepsHash = "sha256-Qhib9ZGulTXjoYcZIWunf3/BSd2SLXZuWEmMcstaphs="; 58 59 59 60 nativeBuildInputs = [ 60 61 cmake ··· 64 65 buildInputs = [ 65 66 openssl 66 67 libdatachannel 68 + plog 67 69 ]; 68 70 69 71 dontUseCmakeConfigure = true; ··· 73 75 74 76 preBuild = '' 75 77 # don't use static libs and don't use FetchContent 78 + # don't try to link plog (it's headers-only) 76 79 substituteInPlace CMakeLists.txt \ 77 80 --replace-fail 'OPENSSL_USE_STATIC_LIBS TRUE' 'OPENSSL_USE_STATIC_LIBS FALSE' \ 78 81 --replace-fail 'if(NOT libdatachannel)' 'if(false)' \ 79 - --replace-fail 'datachannel-static' 'datachannel' 82 + --replace-fail 'datachannel-static' 'datachannel' \ 83 + --replace-fail 'plog::plog' "" 80 84 81 85 # don't fetch node headers 82 86 substituteInPlace node_modules/cmake-js/lib/dist.js \ ··· 98 102 99 103 patches = [ ./only-build-for-one-platform.patch ]; 100 104 101 - npmDepsHash = "sha256-GZESwRDG1gEVhkclR+LBWwoUYaE1xS0z4EvPN7kYTrA="; 105 + npmDepsHash = "sha256-gHXop4CTsQTSMrZ5mBHkMcmpOr2MIjVLrzjLLCfZ3As="; 102 106 103 107 npmFlags = [ "--ignore-scripts" ]; 104 108
+6 -4
pkgs/by-name/ht/httptoolkit/package.nix
··· 12 12 13 13 buildNpmPackage rec { 14 14 pname = "httptoolkit"; 15 - version = "1.19.4"; 15 + version = "1.20.1"; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "httptoolkit"; 19 19 repo = "httptoolkit-desktop"; 20 20 tag = "v${version}"; 21 - hash = "sha256-oDwAosyFY4ff9MP82O8q5o+mN/X6+J7hM3b7myfOq7k="; 21 + hash = "sha256-1m4okGTNrboyj+QiMFPT7Z0/+FxZtxrqqAbuAobRgvU="; 22 22 }; 23 23 24 - npmDepsHash = "sha256-4kREJgw7OjKkOF/J1HpD3uPn+awtQIfUGWqJctwq3N0="; 24 + npmDepsHash = "sha256-NH6Ppj6SsM0BXAgboMgp1ZPwN43ciLNBaHkz5yq8Ff8="; 25 + 26 + makeCacheWritable = true; 25 27 26 28 env = { 27 29 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; ··· 40 42 '"forceCodeSigning": true' \ 41 43 '"forceCodeSigning": false' 42 44 43 - cp -r ${electron.dist} electron-dist 45 + cp -rL ${electron.dist} electron-dist 44 46 chmod -R u+w electron-dist 45 47 46 48 npm exec electron-builder -- \
+1 -1
pkgs/by-name/ki/kitex/package.nix
··· 40 40 description = "High-performance and strong-extensibility Golang RPC framework"; 41 41 homepage = "https://github.com/cloudwego/kitex"; 42 42 license = lib.licenses.asl20; 43 - maintainers = with lib.maintainers; [ aaronjheng ]; 43 + maintainers = with lib.maintainers; [ ]; 44 44 mainProgram = "kitex"; 45 45 }; 46 46 })
+3 -3
pkgs/by-name/kr/krillinai/package.nix
··· 11 11 12 12 buildGoModule (finalAttrs: { 13 13 pname = "krillinai"; 14 - version = "1.2.2"; 14 + version = "1.3.0"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "krillinai"; 18 18 repo = "KlicStudio"; 19 19 tag = "v${finalAttrs.version}"; 20 - hash = "sha256-RHlQeTFeG23LjLwczSGIghH3XPFTR6ZVDFk2KlRQGoA="; 20 + hash = "sha256-Cd+MrKXezcBKRSwmoRaD/2jiNT7r8R7IGweXHDZFhWE="; 21 21 }; 22 22 23 - vendorHash = "sha256-PN0ntMoPG24j3DrwuIiYHo71QmSU7u/A9iZ5OruIV/w="; 23 + vendorHash = "sha256-bAKLNpt0K06egScyn7ImHV0csDsMQGUm92kU1PVQK+I="; 24 24 25 25 nativeBuildInputs = [ pkg-config ]; 26 26
+25 -5
pkgs/by-name/li/lib3mf/package.nix
··· 2 2 lib, 3 3 stdenv, 4 4 fetchFromGitHub, 5 + fetchpatch, 5 6 cmake, 6 7 ninja, 7 8 automaticcomponenttoolkit, ··· 12 13 openssl, 13 14 libuuid, 14 15 zlib, 16 + nix-update-script, 15 17 }: 16 18 17 - stdenv.mkDerivation rec { 19 + stdenv.mkDerivation (finalAttrs: { 18 20 pname = "lib3mf"; 19 - version = "2.3.2"; 21 + version = "2.4.1"; 20 22 21 23 src = fetchFromGitHub { 22 24 owner = "3MFConsortium"; 23 25 repo = "lib3mf"; 24 - tag = "v${version}"; 25 - hash = "sha256-XEwrJINiNpI2+1wXxczirci8VJsUVs5iDUAMS6jWuNk="; 26 + tag = "v${finalAttrs.version}"; 27 + hash = "sha256-wq/dT/8m+em/qFoNNj6s5lyx/MgNeEBGSMBpuJiORqA="; 26 28 }; 29 + 30 + patches = [ 31 + # some patches are required for the gcc 14 source build 32 + # remove next release 33 + # https://github.com/3MFConsortium/lib3mf/pull/413 34 + (fetchpatch { 35 + url = "https://github.com/3MFConsortium/lib3mf/pull/413/commits/96b2f5ec9714088907fe8a6f05633e2bbd82053f.patch?full_index=1"; 36 + hash = "sha256-cJRc+SW1/6Ypf2r34yroVTxu4NMJWuoSmzsmoXogrUk="; 37 + }) 38 + # https://github.com/3MFConsortium/lib3mf/pull/421 39 + (fetchpatch { 40 + url = "https://github.com/3MFConsortium/lib3mf/pull/421/commits/6d7b5709a4a1cf9bd55ae8b4ae999c9ca014f62c.patch?full_index=1"; 41 + hash = "sha256-rGOyXZUZglRNMu1/oVhgSpRdi0pUa/wn5SFHCS9jVOY="; 42 + }) 43 + ]; 27 44 28 45 nativeBuildInputs = [ 29 46 cmake ··· 79 96 80 97 doCheck = true; 81 98 99 + passthru.updateScript = nix-update-script { }; 100 + 82 101 meta = with lib; { 102 + changelog = "https://github.com/3MFConsortium/lib3mf/releases/tag/${finalAttrs.src.tag}"; 83 103 description = "Reference implementation of the 3D Manufacturing Format file standard"; 84 104 homepage = "https://3mf.io/"; 85 105 license = licenses.bsd2; 86 106 maintainers = with maintainers; [ ]; 87 107 platforms = platforms.all; 88 108 }; 89 - } 109 + })
+2 -2
pkgs/by-name/li/libvirt/package.nix
··· 115 115 stdenv.mkDerivation rec { 116 116 pname = "libvirt"; 117 117 # if you update, also bump <nixpkgs/pkgs/development/python-modules/libvirt/default.nix> and SysVirt in <nixpkgs/pkgs/top-level/perl-packages.nix> 118 - version = "11.4.0"; 118 + version = "11.5.0"; 119 119 120 120 src = fetchFromGitLab { 121 121 owner = "libvirt"; 122 122 repo = "libvirt"; 123 123 tag = "v${version}"; 124 124 fetchSubmodules = true; 125 - hash = "sha256-0bOX95Ly8d1/XZan/EyxI6JaACJvOu9QsTkFNQTreqI="; 125 + hash = "sha256-wp/igqlyGqJiMCxcXFmPQgVDarVhR87Qlvuct+Eb8zA="; 126 126 }; 127 127 128 128 patches =
+13 -9
pkgs/by-name/ne/nekoray/package.nix
··· 4 4 5 5 buildGoModule, 6 6 fetchFromGitHub, 7 + fetchpatch, 7 8 makeDesktopItem, 8 9 9 10 cmake, 10 11 copyDesktopItems, 11 12 ninja, 12 13 13 - libcpr, 14 14 protobuf, 15 15 qt6Packages, 16 - yaml-cpp, 17 - zxing-cpp, 18 16 19 17 sing-geoip, 20 18 sing-geosite, ··· 22 20 23 21 stdenv.mkDerivation (finalAttrs: { 24 22 pname = "nekoray"; 25 - version = "4.3.5"; 23 + version = "4.3.7"; 26 24 27 25 src = fetchFromGitHub { 28 26 owner = "Mahdi-zarei"; 29 27 repo = "nekoray"; 30 28 tag = finalAttrs.version; 31 - hash = "sha256-dq3rBvCFEs+4+UadFObMnHhIiYeFlpvvLjTo0lcG8rE="; 29 + hash = "sha256-oRoHu9mt4LiGJFe2OEATbPQ8buYT/6o9395BxYg1qKI="; 32 30 }; 33 31 34 32 strictDeps = true; ··· 41 39 ]; 42 40 43 41 buildInputs = [ 44 - libcpr 45 42 protobuf 46 43 qt6Packages.qtbase 47 44 qt6Packages.qttools 48 - yaml-cpp 49 - zxing-cpp 50 45 ]; 51 46 52 47 cmakeFlags = [ ··· 106 101 patches = [ 107 102 # also check cap_net_admin so we don't have to set suid 108 103 ./core-also-check-capabilities.patch 104 + 105 + # adds missing entries to the lockfile 106 + # can be removed next update 107 + (fetchpatch { 108 + name = "fix-lockfile.patch"; 109 + url = "https://github.com/Mahdi-zarei/nekoray/commit/6f9b2c69e21b0b86242fcc5731f21561373d0963.patch"; 110 + stripLen = 2; 111 + hash = "sha256-LDLgCQUXOqaV++6Z4/8r2IaBM+Kz/LckjVsvZn/0lLM="; 112 + }) 109 113 ]; 110 114 111 - vendorHash = "sha256-hZiEIJ4/TcLUfT+pkqs6WfzjqppSTjKXEtQC+DS26Ug="; 115 + vendorHash = "sha256-6Q6Qi3QQOmuLBaV4t/CEER6s1MUvL7ER6Hfm44sQk4M="; 112 116 113 117 # ldflags and tags are taken from script/build_go.sh 114 118 ldflags = [
+9 -4
pkgs/by-name/oc/oci-cli/package.nix
··· 25 25 26 26 py.pkgs.buildPythonApplication rec { 27 27 pname = "oci-cli"; 28 - version = "3.61.0"; 29 - format = "setuptools"; 28 + version = "3.62.1"; 29 + pyproject = true; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "oracle"; 33 33 repo = "oci-cli"; 34 34 tag = "v${version}"; 35 - hash = "sha256-/Dl7y4asXDJiqAF5uvffrCnVWlObQt2cemQ23OKL0Xc="; 35 + hash = "sha256-Y1bkBdmgmaiHHizGJkBINXN/pL/DEcjIwFq8XjoK5Kc="; 36 36 }; 37 37 38 38 nativeBuildInputs = [ installShellFiles ]; 39 39 40 - propagatedBuildInputs = with py.pkgs; [ 40 + build-system = with py.pkgs; [ 41 + setuptools 42 + ]; 43 + 44 + dependencies = with py.pkgs; [ 41 45 arrow 42 46 certifi 43 47 click ··· 55 59 ]; 56 60 57 61 pythonRelaxDeps = [ 62 + "click" 58 63 "PyYAML" 59 64 "cryptography" 60 65 "oci"
+7 -3
pkgs/by-name/on/onioncircuits/package.nix
··· 11 11 python3.pkgs.buildPythonApplication rec { 12 12 pname = "onioncircuits"; 13 13 version = "0.8.1"; 14 - format = "setuptools"; 14 + pyproject = true; 15 15 16 16 src = fetchFromGitLab { 17 17 domain = "gitlab.tails.boum.org"; ··· 25 25 gobject-introspection 26 26 intltool 27 27 wrapGAppsHook3 28 - python3.pkgs.distutils-extra 29 28 ]; 30 29 31 - propagatedBuildInputs = with python3.pkgs; [ 30 + build-system = with python3.pkgs; [ 31 + setuptools 32 + distutils-extra 33 + ]; 34 + 35 + dependencies = with python3.pkgs; [ 32 36 pygobject3 33 37 stem 34 38 ];
+7 -3
pkgs/by-name/on/onlykey-cli/package.nix
··· 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "onlykey-cli"; 9 9 version = "1.2.10"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchPypi { 13 13 inherit version; ··· 16 16 }; 17 17 18 18 build-system = with python3Packages; [ 19 - cython 19 + setuptools 20 20 ]; 21 21 22 - propagatedBuildInputs = with python3Packages; [ 22 + pythonRemoveDeps = [ 23 + "Cython" # don't know why cython is listed as a runtime dependency, let's just remove it 24 + ]; 25 + 26 + dependencies = with python3Packages; [ 23 27 aenum 24 28 ecdsa 25 29 hidapi
+2 -2
pkgs/by-name/op/opencloud-desktop/package.nix
··· 12 12 }: 13 13 stdenv.mkDerivation (finalAttrs: { 14 14 pname = "opencloud-desktop"; 15 - version = "1.0.0"; 15 + version = "2.0.0"; 16 16 src = fetchFromGitHub { 17 17 owner = "opencloud-eu"; 18 18 repo = "desktop"; 19 19 tag = "v${finalAttrs.version}"; 20 - hash = "sha256-sGbjFPidPncCu9LqaeClrXoKQUzhbR1XbX8RoLuz+N8="; 20 + hash = "sha256-NM9SspeMXu1q3tfpcFk4OuLapu/clbotJLu2u4nmAlY="; 21 21 }; 22 22 23 23 buildInputs = [
+8 -2
pkgs/by-name/op/opensnitch-ui/package.nix
··· 6 6 }: 7 7 8 8 python3Packages.buildPythonApplication { 9 - format = "setuptools"; 9 + pyproject = true; 10 10 pname = "opensnitch-ui"; 11 11 12 12 inherit (opensnitch) src version; ··· 18 18 ''; 19 19 20 20 nativeBuildInputs = [ 21 - python3Packages.pyqt5 22 21 qt5.wrapQtAppsHook 23 22 ]; 24 23 25 24 buildInputs = [ 26 25 qt5.qtwayland 26 + ]; 27 + 28 + build-system = with python3Packages; [ 29 + setuptools 30 + pyqt5 27 31 ]; 28 32 29 33 dependencies = with python3Packages; [ ··· 58 62 59 63 # All tests are sandbox-incompatible and disabled for now 60 64 doCheck = false; 65 + 66 + pythonImportsCheck = [ "opensnitch" ]; 61 67 62 68 meta = { 63 69 description = "Application firewall";
+6 -2
pkgs/by-name/op/opentimestamps-client/package.nix
··· 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "opentimestamps-client"; 9 9 version = "0.7.2"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "opentimestamps"; ··· 16 16 hash = "sha256-ny2svB8WcoUky8UfeilANo1DlS+f3o9RtV4YNmUwjJk="; 17 17 }; 18 18 19 - propagatedBuildInputs = with python3.pkgs; [ 19 + build-system = with python3.pkgs; [ 20 + setuptools 21 + ]; 22 + 23 + dependencies = with python3.pkgs; [ 20 24 appdirs 21 25 gitpython 22 26 opentimestamps
+5 -3
pkgs/by-name/ou/outputcheck/package.nix
··· 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "outputcheck"; 10 10 version = "0.4.2"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "stp"; ··· 23 23 # - Fix version number cannot find error 24 24 postPatch = '' 25 25 substituteInPlace OutputCheck/Driver.py \ 26 - --replace "argparse.FileType('rU')" "argparse.FileType('r')" 26 + --replace-fail "argparse.FileType('rU')" "argparse.FileType('r')" 27 27 28 28 substituteInPlace tests/invalid-regex-syntax.smt2 \ 29 - --replace "unbalanced parenthesis" "missing ), unterminated subpattern" 29 + --replace-fail "unbalanced parenthesis" "missing ), unterminated subpattern" 30 30 31 31 echo ${version} > RELEASE-VERSION 32 32 ''; 33 33 34 34 nativeCheckInputs = [ lit ]; 35 + 36 + build-system = with python3.pkgs; [ setuptools ]; 35 37 36 38 checkPhase = '' 37 39 runHook preCheck
+8 -2
pkgs/by-name/pa/parsero/package.nix
··· 7 7 python3Packages.buildPythonApplication { 8 8 pname = "parsero"; 9 9 version = "0.81"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "behindthefirewalls"; ··· 16 16 sha256 = "rqupeJxslL3AfQ+CzBWRb4ZS32VoYd8hlA+eACMKGPY="; 17 17 }; 18 18 19 - propagatedBuildInputs = with python3Packages; [ 19 + build-system = with python3Packages; [ setuptools ]; 20 + 21 + pythonRemoveDeps = [ 22 + "pip" # this dependency is never actually used 23 + ]; 24 + 25 + dependencies = with python3Packages; [ 20 26 beautifulsoup4 21 27 urllib3 22 28 ];
+12 -7
pkgs/by-name/pa/pass-secret-service/package.nix
··· 15 15 # seemingly abandoned D-Bus package pydbus and started using maintained 16 16 # dbus-next. So let's use latest from GitHub. 17 17 version = "0-unstable-2023-12-16"; 18 - format = "setuptools"; 18 + pyproject = true; 19 19 20 20 src = fetchFromGitHub { 21 21 owner = "mdellweg"; ··· 28 28 # /etc/ in check phase. 29 29 postPatch = '' 30 30 substituteInPlace Makefile \ 31 - --replace "dbus-run-session" "dbus-run-session --config-file=${dbus}/share/dbus-1/session.conf" \ 32 - --replace '-p $(relpassstore)' '-p $(PASSWORD_STORE_DIR)' \ 33 - --replace 'pytest-3' 'pytest' 31 + --replace-fail "dbus-run-session" "dbus-run-session --config-file=${dbus}/share/dbus-1/session.conf" \ 32 + --replace-fail '-p $(relpassstore)' '-p $(PASSWORD_STORE_DIR)' 34 33 35 34 substituteInPlace systemd/org.freedesktop.secrets.service \ 36 - --replace "/bin/false" "${coreutils}/bin/false" 35 + --replace-fail "/bin/false" "${coreutils}/bin/false" 37 36 substituteInPlace systemd/dbus-org.freedesktop.secrets.service \ 38 - --replace "/usr/local" "$out" 37 + --replace-fail "/usr/local" "$out" 39 38 ''; 40 39 41 40 postInstall = '' ··· 44 43 cp systemd/dbus-org.freedesktop.secrets.service "$out/lib/systemd/user/" 45 44 ''; 46 45 47 - propagatedBuildInputs = with python3.pkgs; [ 46 + build-system = with python3.pkgs; [ 47 + setuptools 48 + ]; 49 + 50 + dependencies = with python3.pkgs; [ 48 51 click 49 52 cryptography 50 53 dbus-next ··· 66 69 ]; 67 70 68 71 checkTarget = "test"; 72 + 73 + pythonImportsCheck = [ "pass_secret_service" ]; 69 74 70 75 passthru = { 71 76 updateScript = nix-update-script {
+8 -2
pkgs/by-name/pa/patatt/package.nix
··· 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "patatt"; 9 9 version = "0.6.3"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 14 hash = "sha256-mAgm9lKdJXbCZ8ofVk1b7wRstH5UIVu1mO1sS5stCig="; 15 15 }; 16 16 17 - propagatedBuildInputs = with python3Packages; [ 17 + build-system = with python3Packages; [ 18 + setuptools 19 + ]; 20 + 21 + dependencies = with python3Packages; [ 18 22 pynacl 19 23 ]; 24 + 25 + pythonImportsCheck = [ "patatt" ]; 20 26 21 27 meta = with lib; { 22 28 homepage = "https://git.kernel.org/pub/scm/utils/patatt/patatt.git/about/";
+3 -1
pkgs/by-name/pa/patray/package.nix
··· 8 8 python312.pkgs.buildPythonApplication rec { 9 9 pname = "patray"; 10 10 version = "0.1.2"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit version pname; ··· 20 20 sed -i 's/production.txt/production.in/' setup.py 21 21 sed -i '/pyside2/d' requirements/production.in 22 22 ''; 23 + 24 + build-system = with python312.pkgs; [ setuptools ]; 23 25 24 26 dependencies = with python312.pkgs; [ 25 27 pulsectl
+4 -2
pkgs/by-name/pe/pentestgpt/package.nix
··· 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "pentestgpt"; 9 9 version = "unstable-2023-06-27"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "GreyDGL"; ··· 16 16 hash = "sha256-m0R/kMmbr5Ixuqvw6ZRoaAGCnI3j86Iwk4+TYqv0WbU="; 17 17 }; 18 18 19 + build-system = with python3.pkgs; [ setuptools ]; 20 + 19 21 pythonRelaxDeps = [ "playwright" ]; 20 22 pythonRemoveDeps = [ 21 23 "beautifulsoup4" ··· 23 25 "pytest" 24 26 ]; 25 27 26 - propagatedBuildInputs = with python3.pkgs; [ 28 + dependencies = with python3.pkgs; [ 27 29 beautifulsoup4 28 30 colorama 29 31 google
+3 -1
pkgs/by-name/pe/perfect-hash/package.nix
··· 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "perfect-hash"; 8 8 version = "0.4.1"; 9 - format = "setuptools"; 9 + pyproject = true; 10 10 11 11 # Archive on pypi does not contain examples, which are very helpful to 12 12 # understand how to use this program, so we use git source. ··· 16 16 rev = version; 17 17 sha256 = "0gkc3n613hl0q4jknrh2nm1n96j97p36q9jjgarb9d8yii9q7792"; 18 18 }; 19 + 20 + build-system = with python3.pkgs; [ setuptools ]; 19 21 20 22 postInstall = '' 21 23 mkdir -p $out/share/doc/perfect-hash
+6 -2
pkgs/by-name/pe/peru/package.nix
··· 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "peru"; 9 9 version = "1.3.3"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 disabled = python3Packages.pythonOlder "3.5"; 13 13 ··· 18 18 sha256 = "FCyR14jcFjI6epoFPNVyFZ4k1URZ1NraX1+ajVcCQ2A="; 19 19 }; 20 20 21 - propagatedBuildInputs = with python3Packages; [ 21 + build-system = with python3Packages; [ setuptools ]; 22 + 23 + dependencies = with python3Packages; [ 22 24 pyyaml 23 25 docopt 24 26 ]; 25 27 26 28 # No tests in archive 27 29 doCheck = false; 30 + 31 + pythonImportsCheck = [ "peru" ]; 28 32 29 33 meta = with lib; { 30 34 homepage = "https://github.com/buildinspace/peru";
+8 -6
pkgs/by-name/pe/pew/package.nix
··· 4 4 fetchPypi, 5 5 }: 6 6 7 - with python3.pkgs; 8 - 9 - buildPythonApplication rec { 7 + python3.pkgs.buildPythonApplication rec { 10 8 pname = "pew"; 11 9 version = "1.2.0"; 12 - format = "setuptools"; 10 + pyproject = true; 13 11 14 12 src = fetchPypi { 15 13 inherit pname version; 16 14 sha256 = "04anak82p4v9w0lgfs55s7diywxil6amq8c8bhli143ca8l2fcdq"; 17 15 }; 18 16 19 - propagatedBuildInputs = [ 17 + build-system = with python3.pkgs; [ 18 + setuptools 19 + ]; 20 + 21 + dependencies = with python3.pkgs; [ 20 22 virtualenv 21 23 virtualenv-clone 22 - setuptools 24 + setuptools # pkg_resources is imported during runtime 23 25 ]; 24 26 25 27 # no tests are packaged
+4 -2
pkgs/by-name/pg/pg_activity/package.nix
··· 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "pg_activity"; 9 9 version = "3.6.0"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 disabled = python3Packages.pythonOlder "3.8"; 12 12 13 13 src = fetchFromGitHub { ··· 17 17 sha256 = "sha256-7nHtJl/b2pZqiJbpWArMS5jh7B8dv8V1esic6uFPV/0="; 18 18 }; 19 19 20 - propagatedBuildInputs = with python3Packages; [ 20 + build-system = with python3Packages; [ setuptools ]; 21 + 22 + dependencies = with python3Packages; [ 21 23 attrs 22 24 blessed 23 25 humanize
+6 -2
pkgs/by-name/ph/photocollage/package.nix
··· 11 11 python3Packages.buildPythonApplication rec { 12 12 pname = "photocollage"; 13 13 version = "1.4.6"; 14 - format = "setuptools"; 14 + pyproject = true; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "adrienverge"; ··· 20 20 hash = "sha256-jDb2mFsok8TNi9+A/FAieqo7YbAUsmrFRBGwdGv71Xg="; 21 21 }; 22 22 23 - propagatedBuildInputs = with python3Packages; [ 23 + build-system = with python3Packages; [ setuptools ]; 24 + 25 + dependencies = with python3Packages; [ 24 26 pillow 25 27 pycairo 26 28 pygobject3 ··· 49 51 install -Dm0644 ./data/photocollage.appdata.xml $out/share/appdata/photocollage.appdata.xml 50 52 cp -r ./data/icons $out/share/icons 51 53 ''; 54 + 55 + pythonImportsCheck = [ "photocollage" ]; 52 56 53 57 meta = { 54 58 description = "Graphical tool to make photo collage posters";
+4 -2
pkgs/by-name/pi/pianotrans/package.nix
··· 8 8 python3.pkgs.buildPythonApplication rec { 9 9 pname = "pianotrans"; 10 10 version = "1.0.1"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "azuwis"; ··· 17 17 hash = "sha256-gRbyUQmPtGvx5QKAyrmeJl0stp7hwLBWwjSbJajihdE="; 18 18 }; 19 19 20 - propagatedBuildInputs = with python3.pkgs; [ 20 + build-system = with python3.pkgs; [ setuptools ]; 21 + 22 + dependencies = with python3.pkgs; [ 21 23 piano-transcription-inference 22 24 resampy 23 25 tkinter
+5 -1
pkgs/by-name/pi/pick-colour-picker/package.nix
··· 11 11 python3Packages.buildPythonPackage { 12 12 pname = "pick-colour-picker"; 13 13 version = "unstable-2022-05-08"; 14 - format = "setuptools"; 14 + pyproject = true; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "stuartlangridge"; ··· 31 31 wrapGAppsHook3 32 32 ]; 33 33 34 + build-system = with python3Packages; [ setuptools ]; 35 + 34 36 pythonPath = with python3Packages; [ 35 37 pygobject3 36 38 pycairo ··· 40 42 glib 41 43 gtk3 42 44 ]; 45 + 46 + pythonImportsCheck = [ "pick" ]; 43 47 44 48 meta = with lib; { 45 49 homepage = "https://kryogenix.org/code/pick/";
+7 -2
pkgs/by-name/pi/pifpaf/package.nix
··· 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "pifpaf"; 10 10 version = "3.3.0"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 15 hash = "sha256-xXkMj1sP1xXf6Ad/71BFbq8SHz/uHcaSqv6RQN0Ca1o="; 16 16 }; 17 17 18 - propagatedBuildInputs = with python3Packages; [ 18 + build-system = with python3Packages; [ 19 + setuptools 20 + setuptools-scm 21 + ]; 22 + 23 + dependencies = with python3Packages; [ 19 24 click 20 25 daiquiri 21 26 fixtures
+7 -5
pkgs/by-name/pi/pipreqs/package.nix
··· 4 4 fetchPypi, 5 5 }: 6 6 7 - with python3.pkgs; 8 - 9 - buildPythonApplication rec { 7 + python3.pkgs.buildPythonApplication rec { 10 8 pname = "pipreqs"; 11 9 version = "0.4.13"; 12 - format = "setuptools"; 10 + pyproject = true; 13 11 14 12 src = fetchPypi { 15 13 inherit pname version; 16 14 hash = "sha256-oX8WeIC2khvjdTPOTIHdxuIrRlwQeq1VfbQ7Gt1WqZs="; 17 15 }; 18 16 19 - propagatedBuildInputs = [ 17 + build-system = with python3.pkgs; [ setuptools ]; 18 + 19 + dependencies = with python3.pkgs; [ 20 20 yarg 21 21 docopt 22 22 ]; 23 23 24 24 # Tests requires network access. Works fine without sandboxing 25 25 doCheck = false; 26 + 27 + pythonImportsCheck = [ "pipreqs" ]; 26 28 27 29 meta = with lib; { 28 30 description = "Generate requirements.txt file for any project based on imports";
+6 -2
pkgs/by-name/pi/pirate-get/package.nix
··· 9 9 buildPythonApplication rec { 10 10 pname = "pirate-get"; 11 11 version = "0.4.2"; 12 - format = "setuptools"; 12 + pyproject = true; 13 13 14 14 src = fetchPypi { 15 15 inherit pname version; 16 16 hash = "sha256-VtnVyJqrdGXTqcyzpHCOMUI9G7/BkXzihDrBrsxl7Eg="; 17 17 }; 18 18 19 - propagatedBuildInputs = [ 19 + build-system = with python3Packages; [ setuptools ]; 20 + 21 + dependencies = [ 20 22 colorama 21 23 veryprettytable 22 24 pyperclip 23 25 ]; 26 + 27 + pythonImportsCheck = [ "pirate" ]; 24 28 25 29 meta = with lib; { 26 30 description = "Command line interface for The Pirate Bay";
+6 -1
pkgs/by-name/pl/plakativ/package.nix
··· 9 9 version = "0.5.3"; 10 10 in 11 11 python3Packages.buildPythonApplication { 12 - format = "setuptools"; 12 + pyproject = true; 13 13 inherit pname version; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; 17 17 hash = "sha256-6TvMznd5obkn/gsQTyZ6Pc/dF55I53987EbuSNAlY58="; 18 18 }; 19 + 20 + build-system = with python3Packages; [ setuptools ]; 19 21 20 22 dependencies = 21 23 with python3Packages; 22 24 [ 23 25 pymupdf 26 + img2pdf 24 27 ] 25 28 ++ lib.optional guiSupport tkinter; 29 + 30 + pythonImportsCheck = [ "plakativ" ]; 26 31 27 32 meta = { 28 33 description = "Convert a PDF into a large poster that can be printed on multiple smaller pages";
+6 -2
pkgs/by-name/pl/plecost/package.nix
··· 8 8 python3Packages.buildPythonApplication { 9 9 pname = "plecost"; 10 10 version = "1.1.4"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "iniqua"; ··· 27 27 }) 28 28 ]; 29 29 30 - propagatedBuildInputs = with python3Packages; [ 30 + build-system = with python3Packages; [ setuptools ]; 31 + 32 + dependencies = with python3Packages; [ 31 33 aiohttp 32 34 async-timeout 33 35 termcolor ··· 36 38 37 39 # Project has no tests 38 40 doCheck = false; 41 + 42 + pythonImportsCheck = [ "plecost_lib" ]; 39 43 40 44 meta = with lib; { 41 45 description = "Vulnerability fingerprinting and vulnerability finder for Wordpress blog engine";
+6 -3
pkgs/by-name/po/polygon-cli/package.nix
··· 7 7 python3.pkgs.buildPythonPackage rec { 8 8 pname = "polygon-cli"; 9 9 version = "1.1.11"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 14 hash = "sha256-gEz3kcXbXj9dXnMCx0Q8TjCQemXvJne9EwFsPt14xV4="; 15 15 }; 16 16 17 - propagatedBuildInputs = with python3.pkgs; [ 18 - setuptools 17 + build-system = with python3.pkgs; [ setuptools ]; 18 + 19 + dependencies = with python3.pkgs; [ 19 20 requests 20 21 prettytable 21 22 colorama ··· 23 24 ]; 24 25 25 26 doCheck = false; 27 + 28 + pythonImportsCheck = [ "polygon_cli" ]; 26 29 27 30 meta = { 28 31 description = "Command-line tool for polygon.codeforces.com";
+5 -1
pkgs/by-name/pq/pqos-wrapper/package.nix
··· 7 7 python3.pkgs.buildPythonApplication { 8 8 pname = "pqos-wrapper"; 9 9 version = "unstable-2022-01-31"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitLab { 13 13 group = "sosy-lab"; ··· 17 17 hash = "sha256-SaYr6lVucpJjVtGgxRbDGYbOoBwdfEDVKtvD+M1L0o4="; 18 18 }; 19 19 20 + build-system = with python3.pkgs; [ setuptools ]; 21 + 20 22 makeWrapperArgs = [ "--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ intel-cmt-cat ]}" ]; 23 + 24 + pythonImportsCheck = [ "pqos_wrapper" ]; 21 25 22 26 meta = with lib; { 23 27 description = "Wrapper for Intel PQoS for the purpose of using it in BenchExec";
+7 -3
pkgs/by-name/pr/pre-commit-hook-ensure-sops/package.nix
··· 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "pre-commit-hook-ensure-sops"; 10 10 version = "1.1"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "yuvipanda"; ··· 26 26 }) 27 27 ]; 28 28 29 - propagatedBuildInputs = [ 30 - python3Packages.ruamel-yaml 29 + build-system = with python3Packages; [ 30 + setuptools 31 + ]; 32 + 33 + dependencies = with python3Packages; [ 34 + ruamel-yaml 31 35 ]; 32 36 33 37 pythonImportsCheck = [
+4 -2
pkgs/by-name/pr/precice-config-visualizer/package.nix
··· 7 7 python3Packages.buildPythonApplication { 8 8 pname = "config-visualizer"; 9 9 version = "unstable-2022-02-23"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "precice"; ··· 16 16 hash = "sha256-2dnpkec9hN4oAqwu+1WmDJrfeu+JbfqZ6guv3bC4H1c="; 17 17 }; 18 18 19 - propagatedBuildInputs = with python3Packages; [ 19 + build-system = with python3Packages; [ setuptools ]; 20 + 21 + dependencies = with python3Packages; [ 20 22 lxml 21 23 pydot 22 24 ];
+4 -2
pkgs/by-name/pr/present/package.nix
··· 18 18 python3Packages.buildPythonPackage rec { 19 19 pname = "present"; 20 20 version = "0.6.0"; 21 - format = "setuptools"; 21 + pyproject = true; 22 22 23 23 src = fetchPypi { 24 24 inherit pname version; 25 25 hash = "sha256-l9W5L4LD9qRo3rLBkgd2I/aDaj+ucib5UYg+X4RYg6c="; 26 26 }; 27 27 28 - propagatedBuildInputs = with python3Packages; [ 28 + build-system = with python3Packages; [ setuptools ]; 29 + 30 + dependencies = with python3Packages; [ 29 31 click 30 32 pyyaml 31 33 pyfiglet
+4 -2
pkgs/by-name/pr/prometheus-deluge-exporter/package.nix
··· 7 7 python3.pkgs.buildPythonApplication { 8 8 pname = "deluge-exporter"; 9 9 version = "2.4.0-unstable-2024-06-02"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "ibizaman"; ··· 16 16 hash = "sha256-1brLWx6IEGffcvHPCkz10k9GCNQIXXJ9PYZuEzlKHTA="; 17 17 }; 18 18 19 - propagatedBuildInputs = with python3.pkgs; [ 19 + build-system = with python3.pkgs; [ setuptools ]; 20 + 21 + dependencies = with python3.pkgs; [ 20 22 deluge-client 21 23 loguru 22 24 prometheus-client
+4 -2
pkgs/by-name/pr/protocol/package.nix
··· 7 7 python3.pkgs.buildPythonApplication { 8 8 pname = "protocol"; 9 9 version = "unstable-2019-03-28"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "luismartingarcia"; ··· 18 18 19 19 postPatch = '' 20 20 substituteInPlace setup.py \ 21 - --replace "scripts=['protocol', 'constants.py', 'specs.py']" "scripts=['protocol'], py_modules=['constants', 'specs']" 21 + --replace-fail "scripts=['protocol', 'constants.py', 'specs.py']" "scripts=['protocol'], py_modules=['constants', 'specs']" 22 22 ''; 23 + 24 + build-system = with python3.pkgs; [ setuptools ]; 23 25 24 26 meta = with lib; { 25 27 description = "ASCII Header Generator for Network Protocols";
+6 -2
pkgs/by-name/pr/proxmove/package.nix
··· 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "proxmove"; 9 9 version = "1.2"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "ossobv"; ··· 16 16 hash = "sha256-8xzsmQsogoMrdpf8+mVZRWPGQt9BO0dBT0aKt7ygUe4="; 17 17 }; 18 18 19 - propagatedBuildInputs = with python3.pkgs; [ 19 + build-system = with python3.pkgs; [ 20 + setuptools 21 + ]; 22 + 23 + dependencies = with python3.pkgs; [ 20 24 proxmoxer 21 25 ]; 22 26
+5 -1
pkgs/by-name/ps/ps_mem/package.nix
··· 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "ps_mem"; 9 9 version = "3.14"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "pixelb"; ··· 15 15 rev = "v${version}"; 16 16 hash = "sha256-jCfPtPSky/QFk9Xo/tq3W7609Pie1yLC4iS4dqjCa+E="; 17 17 }; 18 + 19 + build-system = with python3Packages; [ setuptools ]; 20 + 21 + pythonImportsCheck = [ "ps_mem" ]; 18 22 19 23 meta = { 20 24 description = "Utility to accurately report the in core memory usage for a program";
+3 -1
pkgs/by-name/pu/pulsemeeter/package.nix
··· 12 12 python3Packages.buildPythonApplication rec { 13 13 pname = "pulsemeeter"; 14 14 version = "1.2.14"; 15 - format = "setuptools"; 15 + pyproject = true; 16 16 17 17 src = fetchFromGitHub { 18 18 owner = "theRealCarneiro"; ··· 46 46 ]; 47 47 48 48 dontWrapGApps = true; 49 + 50 + pythonImportsCheck = [ "pulsemeeter" ]; 49 51 50 52 passthru.tests.version = callPackage ./version-test.nix { inherit version; }; 51 53
+6 -2
pkgs/by-name/pw/pwgen-secure/package.nix
··· 11 11 buildPythonApplication rec { 12 12 pname = "pwgen-secure"; 13 13 version = "0.9.1"; 14 - format = "setuptools"; 14 + pyproject = true; 15 15 16 16 # it needs `secrets` which was introduced in 3.6 17 17 disabled = pythonOlder "3.6"; ··· 35 35 --replace-fail "os.path.join(path, 'words.txt')" "os.path.join('$shareDir', 'words.txt')" 36 36 ''; 37 37 38 - propagatedBuildInputs = with python3Packages; [ docopt ]; 38 + build-system = with python3Packages; [ setuptools ]; 39 + 40 + dependencies = with python3Packages; [ docopt ]; 39 41 40 42 postInstall = '' 41 43 install -Dm555 spwgen.py $out/bin/spwgen ··· 44 46 45 47 # there are no checks 46 48 doCheck = false; 49 + 50 + pythonImportsCheck = [ "pwgen_secure" ]; 47 51 48 52 meta = with lib; { 49 53 description = "Secure password generation library to replace pwgen";
+6 -2
pkgs/by-name/py/pyCA/package.nix
··· 49 49 python3.pkgs.buildPythonApplication rec { 50 50 pname = "pyca"; 51 51 version = "4.5"; 52 - format = "setuptools"; 52 + pyproject = true; 53 53 54 54 src = fetchFromGitHub { 55 55 owner = "opencast"; ··· 58 58 sha256 = "sha256-cTkWkOmgxJZlddqaSYKva2wih4Mvsdrd7LD4NggxKQk="; 59 59 }; 60 60 61 - propagatedBuildInputs = with python.pkgs; [ 61 + build-system = with python3.pkgs; [ setuptools ]; 62 + 63 + dependencies = with python.pkgs; [ 62 64 pycurl 63 65 python-dateutil 64 66 configobj ··· 72 74 postPatch = '' 73 75 sed -i -e 's#static_folder=.*#static_folder="${frontend}/static")#' pyca/ui/__init__.py 74 76 ''; 77 + 78 + pythonImportsCheck = [ "pyca" ]; 75 79 76 80 passthru = { 77 81 inherit frontend;
+4 -3
pkgs/by-name/py/pyamlboot/package.nix
··· 9 9 python3Packages.buildPythonApplication rec { 10 10 pname = "pyamlboot"; 11 11 version = "1.0.0"; 12 - format = "setuptools"; 12 + pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "superna9999"; ··· 24 24 25 25 dependencies = with python3Packages; [ 26 26 pyusb 27 - wheel 28 - setuptools 27 + setuptools # pkg_resources is imported during runtime 29 28 ]; 29 + 30 + pythonImportsCheck = [ "pyamlboot" ]; 30 31 31 32 passthru.tests.version = testers.testVersion { 32 33 package = pyamlboot;
+6 -2
pkgs/by-name/py/pychess/package.nix
··· 14 14 python3Packages.buildPythonApplication rec { 15 15 pname = "pychess"; 16 16 version = "1.0.5"; 17 - format = "setuptools"; 17 + pyproject = true; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "pychess"; ··· 36 36 gtksourceview 37 37 ]; 38 38 39 - propagatedBuildInputs = with python3Packages; [ 39 + build-system = with python3Packages; [ setuptools ]; 40 + 41 + dependencies = with python3Packages; [ 40 42 pygobject3 41 43 pycairo 42 44 sqlalchemy ··· 64 66 65 67 # No tests available. 66 68 doCheck = false; 69 + 70 + pythonImportsCheck = [ "pychess" ]; 67 71 68 72 meta = { 69 73 description = "Advanced GTK chess client written in Python";
+3 -1
pkgs/by-name/py/pydf/package.nix
··· 7 7 python3Packages.buildPythonPackage rec { 8 8 pname = "pydf"; 9 9 version = "12"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 14 sha256 = "7f47a7c3abfceb1ac04fc009ded538df1ae449c31203962a1471a4eb3bf21439"; 15 15 }; 16 + 17 + build-system = with python3Packages; [ setuptools ]; 16 18 17 19 postInstall = '' 18 20 mkdir -p $out/share/man/man1 $out/share/pydf
+3 -1
pkgs/by-name/py/pykickstart/package.nix
··· 9 9 python3Packages.buildPythonApplication rec { 10 10 pname = "pykickstart"; 11 11 version = "3.65"; 12 - format = "setuptools"; 12 + pyproject = true; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "pykickstart"; ··· 34 34 # All checks are for RedHat's weird translation library. 35 35 # Can't package it and not really necessary so disable them. 36 36 doCheck = false; 37 + 38 + pythonImportsCheck = [ "pykickstart" ]; 37 39 38 40 meta = { 39 41 description = "Python package to interact with Kickstart files commonly found in the RPM world";
+4 -2
pkgs/by-name/py/pylode/package.nix
··· 7 7 python3.pkgs.buildPythonApplication rec { 8 8 pname = "pylode"; 9 9 version = "2.13.3"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 disabled = python3.pythonOlder "3.6"; 13 13 ··· 18 18 sha256 = "sha256-AtqkxnpEL+580S/iKCaRcsQO6LLYhkJxyNx6fi3atbE="; 19 19 }; 20 20 21 - propagatedBuildInputs = with python3.pkgs; [ 21 + build-system = with python3.pkgs; [ setuptools ]; 22 + 23 + dependencies = with python3.pkgs; [ 22 24 beautifulsoup4 23 25 falcon 24 26 jinja2
+3 -1
pkgs/by-name/py/pympress/package.nix
··· 16 16 python3Packages.buildPythonApplication rec { 17 17 pname = "pympress"; 18 18 version = "1.8.6"; 19 - format = "setuptools"; 19 + pyproject = true; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "cimbali"; ··· 63 63 ]; 64 64 65 65 doCheck = false; # there are no tests 66 + 67 + pythonImportsCheck = [ "pympress" ]; 66 68 67 69 meta = { 68 70 description = "Simple yet powerful PDF reader designed for dual-screen presentations";
+4 -2
pkgs/by-name/py/pyradio/package.nix
··· 8 8 python3Packages.buildPythonApplication rec { 9 9 pname = "pyradio"; 10 10 version = "0.9.3.11.15"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "coderholic"; ··· 21 21 installShellFiles 22 22 ]; 23 23 24 - propagatedBuildInputs = with python3Packages; [ 24 + build-system = with python3Packages; [ setuptools ]; 25 + 26 + dependencies = with python3Packages; [ 25 27 dnspython 26 28 netifaces 27 29 psutil
+10 -6
pkgs/by-name/py/pyrseas/package.nix
··· 8 8 pgdbconn = python3Packages.buildPythonPackage rec { 9 9 pname = "pgdbconn"; 10 10 version = "0.8.0"; 11 - format = "setuptools"; 11 + pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "perseas"; ··· 16 16 rev = "v${version}"; 17 17 sha256 = "09r4idk5kmqi3yig7ip61r6js8blnmac5n4q32cdcbp1rcwzdn6z"; 18 18 }; 19 + 20 + build-system = with python3Packages; [ setuptools ]; 19 21 20 22 # The tests are impure (they try to access a PostgreSQL server) 21 23 doCheck = false; 22 24 23 - propagatedBuildInputs = with python3Packages; [ 25 + dependencies = with python3Packages; [ 24 26 psycopg2 25 - pytest 26 27 ]; 27 28 }; 28 29 in ··· 30 31 python3Packages.buildPythonApplication rec { 31 32 pname = "pyrseas"; 32 33 version = "0.9.1"; 33 - format = "setuptools"; 34 + pyproject = true; 34 35 35 36 src = fetchFromGitHub { 36 37 owner = "perseas"; ··· 39 40 sha256 = "sha256-+MxnxvbLMxK1Ak+qKpKe3GHbzzC+XHO0eR7rl4ON9H4="; 40 41 }; 41 42 42 - propagatedBuildInputs = with python3Packages; [ 43 + build-system = with python3Packages; [ setuptools ]; 44 + 45 + dependencies = with python3Packages; [ 43 46 psycopg2 44 - pytest 45 47 pyyaml 46 48 pgdbconn 47 49 ]; 48 50 49 51 # The tests are impure (they try to access a PostgreSQL server) 50 52 doCheck = false; 53 + 54 + pythonImportsCheck = [ "pyrseas" ]; 51 55 52 56 meta = { 53 57 description = "Declarative language to describe PostgreSQL databases";
+5 -4
pkgs/by-name/py/pytrainer/package.nix
··· 32 32 python.pkgs.buildPythonApplication rec { 33 33 pname = "pytrainer"; 34 34 version = "2.2.1"; 35 - format = "setuptools"; 35 + pyproject = true; 36 36 37 37 src = fetchFromGitHub { 38 38 owner = "pytrainer"; ··· 41 41 hash = "sha256-t61vHVTKN5KsjrgbhzljB7UZdRask7qfYISd+++QbV0="; 42 42 }; 43 43 44 - propagatedBuildInputs = with python.pkgs; [ 44 + build-system = with python3.pkgs; [ setuptools ]; 45 + 46 + dependencies = with python.pkgs; [ 45 47 sqlalchemy 46 48 python-dateutil 47 49 matplotlib 48 50 lxml 49 - setuptools 50 51 requests 51 52 gdal 52 53 ]; ··· 88 89 89 90 postPatch = '' 90 91 substituteInPlace pytrainer/platform.py \ 91 - --replace 'sys.prefix' "\"$out\"" 92 + --replace-fail 'sys.prefix' "\"$out\"" 92 93 ''; 93 94 94 95 checkPhase = ''
+3 -1
pkgs/by-name/py/pywalfox-native/package.nix
··· 6 6 python3.pkgs.buildPythonApplication { 7 7 pname = "pywalfox-native"; 8 8 version = "2.7.4"; 9 - format = "setuptools"; 9 + pyproject = true; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "Frewacom"; ··· 14 14 rev = "7ecbbb193e6a7dab424bf3128adfa7e2d0fa6ff9"; 15 15 hash = "sha256-i1DgdYmNVvG+mZiFiBmVHsQnFvfDFOFTGf0GEy81lpE="; 16 16 }; 17 + 18 + build-system = with python3.pkgs; [ setuptools ]; 17 19 18 20 pythonImportsCheck = [ "pywalfox" ]; 19 21
+6 -3
pkgs/by-name/q-/q-text-as-data/package.nix
··· 7 7 python3Packages.buildPythonApplication rec { 8 8 pname = "q-text-as-data"; 9 9 version = "2.0.19"; 10 - format = "setuptools"; 10 + pyproject = true; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "harelba"; ··· 16 16 sha256 = "18cwyfjgxxavclyd08bmb943c8bvzp1gnqp4klkq5xlgqwivr4sv"; 17 17 }; 18 18 19 - propagatedBuildInputs = with python3Packages; [ 19 + build-system = with python3Packages; [ 20 20 setuptools 21 + ]; 22 + 23 + dependencies = with python3Packages; [ 21 24 six 22 25 ]; 23 26 ··· 28 31 rm bin/qtextasdata.py 29 32 30 33 # not considered good practice pinning in install_requires 31 - substituteInPlace setup.py --replace 'six==' 'six>=' 34 + substituteInPlace setup.py --replace-fail 'six==' 'six>=' 32 35 ''; 33 36 34 37 meta = with lib; {
+2 -2
pkgs/by-name/qb/qbittorrent-enhanced/package.nix
··· 7 7 8 8 (qbittorrent.override { inherit guiSupport; }).overrideAttrs (old: rec { 9 9 pname = "qbittorrent-enhanced" + lib.optionalString (!guiSupport) "-nox"; 10 - version = "5.1.0.11"; 10 + version = "5.1.2.10"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "c0re100"; 14 14 repo = "qBittorrent-Enhanced-Edition"; 15 15 rev = "release-${version}"; 16 - hash = "sha256-LY79Y7sG6EHGOh1hRujAOMRK3MKSAblJ+FFuGlj13iQ="; 16 + hash = "sha256-Q3gipRgZCzihKUQZZmETT65AUSEUfgj9dFxZFybq258="; 17 17 }; 18 18 19 19 meta = old.meta // {
+8 -2
pkgs/by-name/qu/quisk/package.nix
··· 10 10 python3.pkgs.buildPythonApplication rec { 11 11 pname = "quisk"; 12 12 version = "4.2.42"; 13 - format = "setuptools"; 13 + pyproject = true; 14 14 15 15 src = fetchPypi { 16 16 inherit pname version; ··· 23 23 pulseaudio 24 24 ]; 25 25 26 - propagatedBuildInputs = with python3.pkgs; [ 26 + build-system = with python3.pkgs; [ 27 + setuptools 28 + ]; 29 + 30 + dependencies = with python3.pkgs; [ 27 31 pyusb 28 32 wxpython 29 33 ]; 30 34 31 35 doCheck = false; 36 + 37 + pythonImportsCheck = [ "quisk" ]; 32 38 33 39 meta = with lib; { 34 40 description = "SDR transceiver for radios that use the Hermes protocol";
+3 -3
pkgs/by-name/r5/r53-ddns/package.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "r53-ddns"; 9 - version = "1.1.0"; 9 + version = "1.3.0"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "fleaz"; 13 13 repo = "r53-ddns"; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-KJAPhSGaC3upWLfo2eeSD3Vit9Blmbol7s8y3f849N4="; 15 + sha256 = "sha256-+vJrcRxckAISYjab6kVT2mpChra1D3NflOqNWCch15I="; 16 16 }; 17 17 18 - vendorHash = "sha256-KkyMd94cejWkgg/RJudy1lm/M3lsEJXFGqVTzGIX3qM="; 18 + vendorHash = "sha256-ImV/jxCYIWObN+jCSbXhuzR4TuRc/EgQ8SIV6x+wEpA="; 19 19 20 20 meta = with lib; { 21 21 license = licenses.mit;
+3 -3
pkgs/by-name/re/renode-dts2repl/package.nix
··· 7 7 8 8 python3.pkgs.buildPythonApplication { 9 9 pname = "renode-dts2repl"; 10 - version = "0-unstable-2025-06-16"; 10 + version = "0-unstable-2025-07-08"; 11 11 pyproject = true; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "antmicro"; 15 15 repo = "dts2repl"; 16 - rev = "65232f0be8d171650e050690ade02c50755241c4"; 17 - hash = "sha256-v/RzEXRie3O37DVVY7bX09rnXMLH7L99o8sWPOPnDOw="; 16 + rev = "9c75757b1de9e1bd93d1b1de5d516a65c481b026"; 17 + hash = "sha256-m3v/HQKDHhfmk7vjbSGxZiyAK2/5b8FVszJjNDHQj2Y="; 18 18 }; 19 19 20 20 nativeBuildInputs = [
+4 -4
pkgs/by-name/si/signal-desktop/libsignal-node.nix
··· 24 24 in 25 25 rustPlatform.buildRustPackage (finalAttrs: { 26 26 pname = "libsignal-node"; 27 - version = "0.74.1"; 27 + version = "0.76.0"; 28 28 29 29 src = fetchFromGitHub { 30 30 owner = "signalapp"; 31 31 repo = "libsignal"; 32 32 tag = "v${finalAttrs.version}"; 33 - hash = "sha256-ZMi+/d051CS7TcWVZnVItNpok0ac+vAvvZL/buNrtL0="; 33 + hash = "sha256-8V+q28hv7LDsS3SdH27PVHtnAneB55xYqFkhRapkcOI="; 34 34 }; 35 35 useFetchCargoVendor = true; 36 - cargoHash = "sha256-pRMFWJSRjhZYfX7dmOQXK3BjhJKzPR1Pg+TZzTfPnd4="; 36 + cargoHash = "sha256-z8PbpE+kID+kOmlimuvxTrzoWpbWTKpP6HHnhZDATWM="; 37 37 38 38 npmRoot = "node"; 39 39 npmDeps = fetchNpmDeps { 40 40 name = "${finalAttrs.pname}-npm-deps"; 41 41 inherit (finalAttrs) version src; 42 42 sourceRoot = "${finalAttrs.src.name}/${finalAttrs.npmRoot}"; 43 - hash = "sha256-9x1oCzZLBeX0AN+R4qcyBNwsJ/AY6mebCEEfQ5JKpl8="; 43 + hash = "sha256-/DL3sQeeZO4l16/rx7BrWEUGUIAdHft+gO3oJ1WQJUE="; 44 44 }; 45 45 46 46 nativeBuildInputs = [
+5 -5
pkgs/by-name/si/signal-desktop/package.nix
··· 52 52 ''; 53 53 }); 54 54 55 - version = "7.59.0"; 55 + version = "7.61.0"; 56 56 57 57 src = fetchFromGitHub { 58 58 owner = "signalapp"; 59 59 repo = "Signal-Desktop"; 60 60 tag = "v${version}"; 61 - hash = "sha256-Brvr4SQ2TzAqrvXm9C7a1ejaP4kviJoQhgRBP3R3dIg="; 61 + hash = "sha256-foMzSKm2BROZ8ATCdYx/0sl+4tQfhgoPA4AWSHEKL0Y="; 62 62 }; 63 63 64 64 sticker-creator = stdenv.mkDerivation (finalAttrs: { ··· 120 120 ; 121 121 hash = 122 122 if withAppleEmojis then 123 - "sha256-mVC7dOsBcBrOEuz7t4xMv1QX2ZgfA5EjnRYunZEx73E=" 123 + "sha256-ry7s9fbKx4e1LR8DlI2LIJY9GQrxmU7JQt+3apJGw/M=" 124 124 else 125 - "sha256-9hvqLZGSrzJD5vMTdHoIpDeRM6fu2JSRNdHgyeSWmDY="; 125 + "sha256-AkrfugpNvk4KgesRLQbso8p5b96Dg174R9/xuP4JtJg="; 126 126 }; 127 127 128 128 env = { 129 129 ELECTRON_SKIP_BINARY_DOWNLOAD = "1"; 130 130 SIGNAL_ENV = "production"; 131 - SOURCE_DATE_EPOCH = 1750885921; 131 + SOURCE_DATE_EPOCH = 1752109090; 132 132 }; 133 133 134 134 preBuild = ''
+3 -3
pkgs/by-name/si/signal-desktop/ringrtc.nix
··· 19 19 in 20 20 rustPlatform.buildRustPackage (finalAttrs: { 21 21 pname = "ringrtc"; 22 - version = "2.53.0"; 22 + version = "2.54.1"; 23 23 24 24 src = fetchFromGitHub { 25 25 owner = "signalapp"; 26 26 repo = "ringrtc"; 27 27 tag = "v${finalAttrs.version}"; 28 - hash = "sha256-JxEeE5r/qQGfTBP0szpChRdPuUl4PMK1km84N/8Dozg="; 28 + hash = "sha256-T8oI04DOnTHFs7xlJ1wJbK64zqgJ2dM4Plz+C26DWEg="; 29 29 }; 30 30 useFetchCargoVendor = true; 31 - cargoHash = "sha256-qOBjSj1MErB0SajScicVPEn2pqAY+kWq7TS4Wiu4oxI="; 31 + cargoHash = "sha256-KTPZ/1rDqxYxgUfgVTnNg7nLNxwCWGXDf+uJAhmpB3g="; 32 32 33 33 cargoBuildFlags = [ 34 34 "-p"
+2 -2
pkgs/by-name/si/signal-desktop/webrtc-sources.json
··· 1 1 { 2 2 "src": { 3 3 "args": { 4 - "hash": "sha256-laPkmf87ujO0dmQ6LqGSnvajeE2D0i5hL95RxN+SdNA=", 4 + "hash": "sha256-ErUR9Xg69X5PEPoDw65BU2Tcpo7+JC2Pc+pYIxEGzNA=", 5 5 "owner": "signalapp", 6 6 "repo": "webrtc", 7 - "tag": "7103d" 7 + "tag": "7103e" 8 8 }, 9 9 "fetcher": "fetchFromGitHub" 10 10 },
+18 -7
pkgs/by-name/sk/skopeo/package.nix
··· 51 51 btrfs-progs 52 52 ]; 53 53 54 - buildPhase = '' 55 - runHook preBuild 56 - patchShebangs . 57 - make bin/skopeo completions docs 58 - runHook postBuild 59 - ''; 54 + buildPhase = 55 + '' 56 + runHook preBuild 57 + patchShebangs . 58 + make bin/skopeo docs 59 + '' 60 + + lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 61 + make completions 62 + '' 63 + + '' 64 + runHook postBuild 65 + ''; 60 66 61 67 installPhase = 62 68 '' 63 69 runHook preInstall 64 - PREFIX=${placeholder "out"} make install-binary install-completions install-docs 70 + PREFIX=${placeholder "out"} make install-binary install-docs 71 + '' 72 + + lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' 73 + PREFIX=${placeholder "out"} make install-completions 74 + '' 75 + + '' 65 76 install ${passthru.policy}/default-policy.json -Dt $out/etc/containers 66 77 '' 67 78 + lib.optionalString stdenv.hostPlatform.isLinux ''
+3 -3
pkgs/by-name/sn/snazy/package.nix
··· 8 8 9 9 rustPlatform.buildRustPackage rec { 10 10 pname = "snazy"; 11 - version = "0.56.0"; 11 + version = "0.57.1"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "chmouel"; 15 15 repo = "snazy"; 16 16 rev = version; 17 - hash = "sha256-VR4IRMmSQCF/CXgKfJ5OEFbXg9o/40lBonupOF38lFg="; 17 + hash = "sha256-W9Bb9a9oeZF89mopKOY/E44tqj981I6z9EMRHgFb0Eo="; 18 18 }; 19 19 20 20 useFetchCargoVendor = true; 21 - cargoHash = "sha256-tZYAIlQW1IsQSpMF4BmiiCo1CVYjM2GNXcEXT3gCoPA="; 21 + cargoHash = "sha256-yvRZjNY3RRdMm9KuZAwgt4JzvaNwPdia7vQhR7uFNs4="; 22 22 23 23 nativeBuildInputs = [ installShellFiles ]; 24 24
+15 -28
pkgs/by-name/st/starc/package.nix
··· 1 1 { 2 - stdenvNoCC, 3 2 lib, 4 3 fetchurl, 5 4 appimageTools, 6 5 makeWrapper, 7 6 }: 8 - 9 - stdenvNoCC.mkDerivation (finalAttrs: { 7 + let 10 8 pname = "starc"; 11 9 version = "0.7.7"; 12 - 13 10 src = fetchurl { 14 - url = "https://github.com/story-apps/starc/releases/download/v${finalAttrs.version}/starc-setup.AppImage"; 11 + url = "https://github.com/story-apps/starc/releases/download/v${version}/starc-setup.AppImage"; 15 12 hash = "sha256-jjas5vx+emdc4OUjXFAGYkKrR6cgb9BlabVv17KAaIQ="; 16 13 }; 17 14 18 - dontUnpack = true; 19 - 15 + appimageContents = appimageTools.extract { inherit pname version src; }; 16 + in 17 + appimageTools.wrapType2 { 18 + inherit pname version src; 20 19 nativeBuildInputs = [ makeWrapper ]; 21 - 22 - installPhase = 23 - let 24 - appimageContents = appimageTools.extract { inherit (finalAttrs) pname version src; }; 25 - starc-unwrapped = appimageTools.wrapType2 { inherit (finalAttrs) pname version src; }; 26 - in 27 - '' 28 - runHook preInstall 29 - 30 - # Fixup desktop item icons 31 - install -D ${appimageContents}/starc.desktop -t $out/share/applications/ 32 - 33 - substituteInPlace $out/share/applications/starc.desktop \ 20 + extraInstallCommands = '' 21 + # Fixup desktop item icons 22 + install -D ${appimageContents}/starc.desktop -t $out/share/applications/ 23 + substituteInPlace $out/share/applications/starc.desktop \ 34 24 --replace-fail "Icon=starc" "${'' 35 25 Icon=dev.storyapps.starc 36 26 StartupWMClass=Story Architect''}" 27 + cp -r ${appimageContents}/share/* $out/share/ 37 28 38 - cp -r ${appimageContents}/share/* $out/share/ 39 - 40 - makeWrapper ${starc-unwrapped}/bin/starc $out/bin/starc \ 41 - --unset QT_PLUGIN_PATH 42 - 43 - runHook postInstall 44 - ''; 29 + wrapProgram $out/bin/starc \ 30 + --unset QT_PLUGIN_PATH 31 + ''; 45 32 46 33 meta = { 47 34 description = "Intuitive screenwriting app that streamlines the writing process"; ··· 51 38 maintainers = with lib.maintainers; [ pancaek ]; 52 39 platforms = [ "x86_64-linux" ]; 53 40 }; 54 - }) 41 + }
+13
pkgs/by-name/tm/tmc-cli/package.nix
··· 1 1 { 2 2 lib, 3 + stdenv, 3 4 fetchFromGitHub, 4 5 rustPlatform, 5 6 writableTmpDirAsHomeHook, ··· 23 24 writableTmpDirAsHomeHook 24 25 ]; 25 26 27 + checkFlags = lib.optionals stdenv.hostPlatform.isDarwin [ 28 + # When sandboxing, "Attempted to create a NULL object." 29 + # https://github.com/mullvad/system-configuration-rs/pull/59 may fix. 30 + "--skip=commands::courses::tests::list_courses_with_client_test" 31 + # Same 32 + "--skip=all_integration_tests" 33 + # When sandboxing, "Lazy instance has previously been poisoned." 34 + "--skip=commands::exercises::tests::list_exercises_with_client_test" 35 + ]; 36 + 26 37 nativeInstallCheckInputs = [ 27 38 versionCheckHook 28 39 ]; 29 40 doInstallCheck = true; 30 41 versionCheckProgram = "${placeholder "out"}/bin/${finalAttrs.meta.mainProgram}"; 31 42 versionCheckProgramArg = "--version"; 43 + 44 + __darwinAllowLocalNetworking = true; 32 45 33 46 meta = { 34 47 description = "CLI for using the TestMyCode programming assignment evaluator";
+3 -3
pkgs/by-name/to/tombi/package.nix
··· 7 7 8 8 rustPlatform.buildRustPackage (finalAttrs: { 9 9 pname = "tombi"; 10 - version = "0.4.13"; 10 + version = "0.4.25"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "tombi-toml"; 14 14 repo = "tombi"; 15 15 tag = "v${finalAttrs.version}"; 16 - hash = "sha256-DYr9RtWV2Fs1YGQ5V00eACLerJSsm34mPYdmVWRKXSQ="; 16 + hash = "sha256-EVr4qybyLtGgNde0uuNoQYv2jugNGJups5HUcs7n4KI="; 17 17 }; 18 18 19 19 # Tests relies on the presence of network 20 20 doCheck = false; 21 21 cargoBuildFlags = [ "--package tombi-cli" ]; 22 - cargoHash = "sha256-JyYA/Bu1gcj7s5hxx9LOcrN28Klhz3Qy1SbGoWEiwnA="; 22 + cargoHash = "sha256-vtaif74fYBCP0AAL1NFXxHJ/casZGwTJsmwZLiWqY64="; 23 23 24 24 postPatch = '' 25 25 substituteInPlace Cargo.toml \
+3 -3
pkgs/by-name/wa/walker/package.nix
··· 14 14 15 15 buildGoModule rec { 16 16 pname = "walker"; 17 - version = "0.12.28"; 17 + version = "0.12.31"; 18 18 19 19 src = fetchFromGitHub { 20 20 owner = "abenz1267"; 21 21 repo = "walker"; 22 22 rev = "v${version}"; 23 - hash = "sha256-OHBhSYWZ11wEMIwHlh6tK1AM/0JWV5PcoMC783uOUVs="; 23 + hash = "sha256-G55itZe9xAlEq1x4IsE6Pm17t0c7A4obmOTRXjChs+o="; 24 24 }; 25 25 26 - vendorHash = "sha256-SG1JTl/Al9bRyDkzN7xliuZIAMifQJZdIeC5fr0WpWw="; 26 + vendorHash = "sha256-250HPwSkcT7pOulhqAtmuoWOJUakF0S1bpZ8FMsp7bU="; 27 27 subPackages = [ "cmd/walker.go" ]; 28 28 29 29 passthru.updateScript = nix-update-script { };
+48
pkgs/by-name/wp/wpprobe/package.nix
··· 1 + { 2 + lib, 3 + buildGoModule, 4 + fetchFromGitHub, 5 + versionCheckHook, 6 + writableTmpDirAsHomeHook, 7 + }: 8 + 9 + buildGoModule (finalAttrs: { 10 + pname = "wpprobe"; 11 + version = "0.7.2"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "Chocapikk"; 15 + repo = "wpprobe"; 16 + tag = "v${finalAttrs.version}"; 17 + hash = "sha256-6aL1hK9oZYcBVQbfualIOsYrbMWTA1uV+fEKbOFaSHU="; 18 + }; 19 + 20 + vendorHash = "sha256-KV6Ss0fN3xwm5Id7MAHMUjq9TsQbaInLjd5xcLKGX6U="; 21 + 22 + nativeCheckInputs = [ 23 + versionCheckHook 24 + writableTmpDirAsHomeHook 25 + ]; 26 + 27 + ldflags = [ 28 + "-s" 29 + "-w" 30 + "-X=github.com/Chocapikk/wpprobe/internal/utils.Version=v${finalAttrs.version}" 31 + ]; 32 + 33 + doInstallCheck = true; 34 + 35 + checkFlags = [ 36 + # Test requires network access 37 + "-skip=TestUpdateWordfence" 38 + ]; 39 + 40 + meta = { 41 + description = "WordPress plugin enumeration tool"; 42 + homepage = "https://github.com/Chocapikk/wpprobe"; 43 + changelog = "https://github.com/Chocapikk/wpprobe/releases/tag/${finalAttrs.src.tag}"; 44 + license = lib.licenses.mit; 45 + maintainers = with lib.maintainers; [ fab ]; 46 + mainProgram = "wpprobe"; 47 + }; 48 + })
+2 -2
pkgs/desktops/gnome-2/platform/GConf/default.nix
··· 8 8 ORBit2, 9 9 libxml2, 10 10 polkit, 11 - python3, 11 + python312, 12 12 intltool, 13 13 }: 14 14 ··· 46 46 nativeBuildInputs = [ 47 47 pkg-config 48 48 intltool 49 - python3 49 + python312 50 50 glib 51 51 ]; 52 52
+37 -37
pkgs/development/compilers/flutter/versions/3_32/data.json
··· 1 1 { 2 - "version": "3.32.5", 3 - "engineVersion": "dd93de6fb1776398bf586cbd477deade1391c7e4", 2 + "version": "3.32.6", 3 + "engineVersion": "72f2b18bb094f92f62a3113a8075240ebb59affa", 4 4 "engineSwiftShaderHash": "sha256-ATVcuxqPHqHOWYyO7DoX9LdgUiO3INUi7m9Mc6ccc1M=", 5 5 "engineSwiftShaderRev": "d040a5bab638bf7c226235c95787ba6288bb6416", 6 6 "channel": "stable", 7 7 "engineHashes": { 8 8 "aarch64-linux": { 9 - "aarch64-linux": "sha256-IUvraWqQxNba63OI4AVJNerMt6zdq5D5W8SKVMaDRLc=", 10 - "x86_64-linux": "sha256-IUvraWqQxNba63OI4AVJNerMt6zdq5D5W8SKVMaDRLc=" 9 + "aarch64-linux": "sha256-MjWz+aveIDXygAejZiNGFZluR0gjpS62h16UcFGz7FA=", 10 + "x86_64-linux": "sha256-MjWz+aveIDXygAejZiNGFZluR0gjpS62h16UcFGz7FA=" 11 11 }, 12 12 "x86_64-linux": { 13 - "aarch64-linux": "sha256-f1GZHMH6LJRSlgT1CSOGscwrkcV3EOxc61KctAXgZcM=", 14 - "x86_64-linux": "sha256-f1GZHMH6LJRSlgT1CSOGscwrkcV3EOxc61KctAXgZcM=" 13 + "aarch64-linux": "sha256-jWM+egf2tZVR8bnBXSHiXOG0CbkEjxEqxwPnaR7tJKk=", 14 + "x86_64-linux": "sha256-jWM+egf2tZVR8bnBXSHiXOG0CbkEjxEqxwPnaR7tJKk=" 15 15 } 16 16 }, 17 17 "dartVersion": "3.8.1", ··· 21 21 "x86_64-darwin": "sha256-S3iGDVLollApke2SnXAcV919qsDTVmz5Gf9fTletr00=", 22 22 "aarch64-darwin": "sha256-haHQks9N1mBIqRsYg9sOLw7ra7gC708gsTWfKxvIK1c=" 23 23 }, 24 - "flutterHash": "sha256-qiFYbKUVdRNc2RV6uJAayQ7PrMZWNziAgI8++KEMpxA=", 24 + "flutterHash": "sha256-YxApWMp6Ax1ZNOH/7kgeXgiaBcXN7Ves4TFUImFtd3s=", 25 25 "artifactHashes": { 26 26 "android": { 27 - "aarch64-darwin": "sha256-JBBlXNXcBbygs7GNCcTYmeSuKOjTKHMZsiuSHiuWWM4=", 28 - "aarch64-linux": "sha256-72mofJFv9hVFaPK3sj57fqcF7NvcDgLHD0QILZ6TM7M=", 29 - "x86_64-darwin": "sha256-JBBlXNXcBbygs7GNCcTYmeSuKOjTKHMZsiuSHiuWWM4=", 30 - "x86_64-linux": "sha256-72mofJFv9hVFaPK3sj57fqcF7NvcDgLHD0QILZ6TM7M=" 27 + "aarch64-darwin": "sha256-thfXrVn6nWlQg23yDHiNAx6XebQkV80tkckONwmfjaU=", 28 + "aarch64-linux": "sha256-fM90NqMpD4SkrjZfDXvHjMNdGiaDqX2T+A4cNNZkplk=", 29 + "x86_64-darwin": "sha256-thfXrVn6nWlQg23yDHiNAx6XebQkV80tkckONwmfjaU=", 30 + "x86_64-linux": "sha256-fM90NqMpD4SkrjZfDXvHjMNdGiaDqX2T+A4cNNZkplk=" 31 31 }, 32 32 "fuchsia": { 33 - "aarch64-darwin": "sha256-aJmLxwEBV8VronlVcPazczpcVxl30A+y2v6LtpXQ+ug=", 34 - "aarch64-linux": "sha256-aJmLxwEBV8VronlVcPazczpcVxl30A+y2v6LtpXQ+ug=", 35 - "x86_64-darwin": "sha256-aJmLxwEBV8VronlVcPazczpcVxl30A+y2v6LtpXQ+ug=", 36 - "x86_64-linux": "sha256-aJmLxwEBV8VronlVcPazczpcVxl30A+y2v6LtpXQ+ug=" 33 + "aarch64-darwin": "sha256-Lh6z51v14kZIGxriaKDdOn5fAKyANm8FAzIozoOiAZg=", 34 + "aarch64-linux": "sha256-Lh6z51v14kZIGxriaKDdOn5fAKyANm8FAzIozoOiAZg=", 35 + "x86_64-darwin": "sha256-Lh6z51v14kZIGxriaKDdOn5fAKyANm8FAzIozoOiAZg=", 36 + "x86_64-linux": "sha256-Lh6z51v14kZIGxriaKDdOn5fAKyANm8FAzIozoOiAZg=" 37 37 }, 38 38 "ios": { 39 - "aarch64-darwin": "sha256-6rI+Pxqqg7K2qcXZSH9/DhwJoJgEJ9+QkoyiAr0CyUo=", 40 - "aarch64-linux": "sha256-6rI+Pxqqg7K2qcXZSH9/DhwJoJgEJ9+QkoyiAr0CyUo=", 41 - "x86_64-darwin": "sha256-6rI+Pxqqg7K2qcXZSH9/DhwJoJgEJ9+QkoyiAr0CyUo=", 42 - "x86_64-linux": "sha256-6rI+Pxqqg7K2qcXZSH9/DhwJoJgEJ9+QkoyiAr0CyUo=" 39 + "aarch64-darwin": "sha256-zCR8wt7QZHl9UFOhkU8KFkyRbaUitXJHTiMLOe+M5/g=", 40 + "aarch64-linux": "sha256-zCR8wt7QZHl9UFOhkU8KFkyRbaUitXJHTiMLOe+M5/g=", 41 + "x86_64-darwin": "sha256-zCR8wt7QZHl9UFOhkU8KFkyRbaUitXJHTiMLOe+M5/g=", 42 + "x86_64-linux": "sha256-zCR8wt7QZHl9UFOhkU8KFkyRbaUitXJHTiMLOe+M5/g=" 43 43 }, 44 44 "linux": { 45 - "aarch64-darwin": "sha256-/GxeyrWsQdEX5cmFrGiRMKpPt7Hr7CgQf3eSjdcifvI=", 46 - "aarch64-linux": "sha256-/GxeyrWsQdEX5cmFrGiRMKpPt7Hr7CgQf3eSjdcifvI=", 47 - "x86_64-darwin": "sha256-y6yHQfiWq6G9Nc0qD8ptgqPjYWRyIEu4onwlW/AXSB0=", 48 - "x86_64-linux": "sha256-y6yHQfiWq6G9Nc0qD8ptgqPjYWRyIEu4onwlW/AXSB0=" 45 + "aarch64-darwin": "sha256-dSXB6GFQZjHoyiDStAnohYtzFIrVWmD3DfQ0b+cGwcU=", 46 + "aarch64-linux": "sha256-dSXB6GFQZjHoyiDStAnohYtzFIrVWmD3DfQ0b+cGwcU=", 47 + "x86_64-darwin": "sha256-9ds2C7XBIvnzbgwcBPwJhaF/l/t+uZQEiuwQg2WIVkE=", 48 + "x86_64-linux": "sha256-9ds2C7XBIvnzbgwcBPwJhaF/l/t+uZQEiuwQg2WIVkE=" 49 49 }, 50 50 "macos": { 51 - "aarch64-darwin": "sha256-80OvLcvTZ9YxgodTEPo6GF+DrFyQ9tbzAF/6AyDVqIA=", 52 - "aarch64-linux": "sha256-80OvLcvTZ9YxgodTEPo6GF+DrFyQ9tbzAF/6AyDVqIA=", 53 - "x86_64-darwin": "sha256-80OvLcvTZ9YxgodTEPo6GF+DrFyQ9tbzAF/6AyDVqIA=", 54 - "x86_64-linux": "sha256-80OvLcvTZ9YxgodTEPo6GF+DrFyQ9tbzAF/6AyDVqIA=" 51 + "aarch64-darwin": "sha256-Qybdtwy8MfPEsCJUHxlV62fZyEAClOHM4thsEw4nmvg=", 52 + "aarch64-linux": "sha256-Qybdtwy8MfPEsCJUHxlV62fZyEAClOHM4thsEw4nmvg=", 53 + "x86_64-darwin": "sha256-Qybdtwy8MfPEsCJUHxlV62fZyEAClOHM4thsEw4nmvg=", 54 + "x86_64-linux": "sha256-Qybdtwy8MfPEsCJUHxlV62fZyEAClOHM4thsEw4nmvg=" 55 55 }, 56 56 "universal": { 57 - "aarch64-darwin": "sha256-MbKydBhX2pT/H5E0sif/aqvMjHSB3ch8e7aiO90daIU=", 58 - "aarch64-linux": "sha256-UHb2USyHW1zjC8lDW/NbJEIm+UWvvdl4lRp1s5tSA+c=", 59 - "x86_64-darwin": "sha256-iFQbCFOLkD920F4gCrZDAl3cr7o+IXr3EWp5z/wj2OU=", 60 - "x86_64-linux": "sha256-zzUQlYs+o/irWlUIZyXJ2+qFRXhhtPQNI+VPcp7uD78=" 57 + "aarch64-darwin": "sha256-37CxKej4SB4Qm3aJVkf3SK0uiimLYSGJBAOwqWStmEY=", 58 + "aarch64-linux": "sha256-7p4CTx///0ND5xUpb9uGbBgaLeClt/aGoSm6mE56ySk=", 59 + "x86_64-darwin": "sha256-sjrzv4jJ28RViNaC7jG4utnerBj3521kXfT8CAgGOLI=", 60 + "x86_64-linux": "sha256-B9gqS5lfLy8pYjP7N52jLqZmroukuAS/ed0xP5xspeg=" 61 61 }, 62 62 "web": { 63 - "aarch64-darwin": "sha256-xaJtvj3UJFnMVe+CLDriQ3BqISlrIflpYXdtNuTlB3g=", 64 - "aarch64-linux": "sha256-xaJtvj3UJFnMVe+CLDriQ3BqISlrIflpYXdtNuTlB3g=", 65 - "x86_64-darwin": "sha256-xaJtvj3UJFnMVe+CLDriQ3BqISlrIflpYXdtNuTlB3g=", 66 - "x86_64-linux": "sha256-xaJtvj3UJFnMVe+CLDriQ3BqISlrIflpYXdtNuTlB3g=" 63 + "aarch64-darwin": "sha256-iLAX0UCh+ZTsSggKj29cUm+8CIEJfXj+iWiTV1ndfrU=", 64 + "aarch64-linux": "sha256-iLAX0UCh+ZTsSggKj29cUm+8CIEJfXj+iWiTV1ndfrU=", 65 + "x86_64-darwin": "sha256-iLAX0UCh+ZTsSggKj29cUm+8CIEJfXj+iWiTV1ndfrU=", 66 + "x86_64-linux": "sha256-iLAX0UCh+ZTsSggKj29cUm+8CIEJfXj+iWiTV1ndfrU=" 67 67 }, 68 68 "windows": { 69 - "x86_64-darwin": "sha256-fgM3VMvwTGs4MVndmJmjkr3+bpS/sNcyDAnt6EBDzAM=", 70 - "x86_64-linux": "sha256-fgM3VMvwTGs4MVndmJmjkr3+bpS/sNcyDAnt6EBDzAM=" 69 + "x86_64-darwin": "sha256-7M6lLznB1FwQi4e4O6r5IWRxYFaXhfdkSx3rN2GZr5c=", 70 + "x86_64-linux": "sha256-7M6lLznB1FwQi4e4O6r5IWRxYFaXhfdkSx3rN2GZr5c=" 71 71 } 72 72 }, 73 73 "pubspecLock": {
+3 -2
pkgs/development/coq-modules/Ordinal/default.nix
··· 12 12 with lib.versions; 13 13 lib.switch coq.version [ 14 14 { 15 - case = range "8.12" "8.18"; 16 - out = "0.5.3"; 15 + case = range "8.12" "8.20"; 16 + out = "0.5.4"; 17 17 } 18 18 ] null; 19 19 release = { 20 + "0.5.4".sha256 = "sha256-PaEC71FzJzHVGYpf3J1jvb/JsJzzMio0L5d5dPwiXuc="; 20 21 "0.5.3".sha256 = "sha256-Myxwy749ZCBpqia6bf91cMTyJn0nRzXskD7Ue8kc37c="; 21 22 "0.5.2".sha256 = "sha256-jf16EyLAnKm+42K+gTTHVFJqeOVQfIY2ozbxIs5x5DE="; 22 23 "0.5.1".sha256 = "sha256-ThJ+jXmtkAd3jElpQZqfzqqc3EfoKY0eMpTHnbrracY=";
+4 -2
pkgs/development/python-modules/doubleratchet/default.nix
··· 8 8 typing-extensions, 9 9 pytestCheckHook, 10 10 pytest-asyncio, 11 + pytest-cov-stub, 11 12 }: 12 13 13 14 buildPythonPackage rec { 14 15 pname = "doubleratchet"; 15 - version = "1.1.0"; 16 + version = "1.2.0"; 16 17 pyproject = true; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "Syndace"; 20 21 repo = "python-doubleratchet"; 21 22 tag = "v${version}"; 22 - hash = "sha256-yoph3u7LjGjSPi1hFlXzWmSNkCXvY/ocTt2MKa+F1fs="; 23 + hash = "sha256-TgkRityDMSzyF6ihM63lAGCSrCHCHrsbCyGYUaObvDU="; 23 24 }; 24 25 25 26 strictDeps = true; ··· 37 38 nativeCheckInputs = [ 38 39 pytestCheckHook 39 40 pytest-asyncio 41 + pytest-cov-stub 40 42 ]; 41 43 42 44 pythonImportsCheck = [ "doubleratchet" ];
+2 -2
pkgs/development/python-modules/h5netcdf/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "h5netcdf"; 15 - version = "1.6.1"; 15 + version = "1.6.3"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "h5netcdf"; 20 20 repo = "h5netcdf"; 21 21 tag = "v${version}"; 22 - hash = "sha256-DQ4zGtX0+HvSuayyaCwO6NVSQWj8JRzYS/BfBtspZxI="; 22 + hash = "sha256-frKnnUh5OFeQGAhf/y5idMWGb0ufHznz4u5A8FRJSuA="; 23 23 }; 24 24 25 25 build-system = [
+2 -2
pkgs/development/python-modules/ha-mqtt-discoverable/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "ha-mqtt-discoverable"; 15 - version = "0.20.0"; 15 + version = "0.20.1"; 16 16 pyproject = true; 17 17 18 18 disabled = pythonOlder "3.10"; ··· 21 21 owner = "unixorn"; 22 22 repo = "ha-mqtt-discoverable"; 23 23 tag = "v${version}"; 24 - hash = "sha256-1kI07OalbzxQ5zeDgT9cnFEr86epKYjPhHaUZfshwrk="; 24 + hash = "sha256-XaaL5O6WHIs+9vNq/IqolPUsL04l6PCKTZNBTYH1z4g="; 25 25 }; 26 26 27 27 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/libvirt/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "libvirt"; 15 - version = "11.4.0"; 15 + version = "11.5.0"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitLab { 19 19 owner = "libvirt"; 20 20 repo = "libvirt-python"; 21 21 tag = "v${version}"; 22 - hash = "sha256-jI14/lBuqSqI8mnTa7dqa+B+6tU2erW6wlT8E0eTgtY="; 22 + hash = "sha256-8VW5MDHmGnR1DM6e9o72iQ5pFBZQQ50v2q3ansAf8g0="; 23 23 }; 24 24 25 25 postPatch = ''
+2 -2
pkgs/development/python-modules/llama-cloud-services/default.nix
··· 17 17 18 18 buildPythonPackage rec { 19 19 pname = "llama-cloud-services"; 20 - version = "0.6.41"; 20 + version = "0.6.46"; 21 21 pyproject = true; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "run-llama"; 25 25 repo = "llama_cloud_services"; 26 26 tag = "v${version}"; 27 - hash = "sha256-TNcBUW0pJa6WoK7rNGHitm9xbdie4JV/ZmOc169/XzY="; 27 + hash = "sha256-GRMoRRmAvtcaNFyPHEbiuCohmYji1j9shlPbriJqfIM="; 28 28 }; 29 29 30 30 pythonRelaxDeps = [ "llama-cloud" ];
+2 -2
pkgs/development/python-modules/llama-cloud/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "llama-cloud"; 13 - version = "0.1.29"; 13 + version = "0.1.33"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 18 18 src = fetchPypi { 19 19 pname = "llama_cloud"; 20 20 inherit version; 21 - hash = "sha256-aZWUPtTx0f5lT36l0BlwYRxdxwYC3q+TeGt/lUXnDx4="; 21 + hash = "sha256-oLuQDVpuhvjHZ7SGhsUlNnmtfKG1dhLcObB2fletPXg="; 22 22 }; 23 23 24 24 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/llama-index-agent-openai/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "llama-index-agent-openai"; 13 - version = "0.4.9"; 13 + version = "0.4.12"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 18 18 src = fetchPypi { 19 19 pname = "llama_index_agent_openai"; 20 20 inherit version; 21 - hash = "sha256-FTzA9J3KoMxEeV4tPqIO+33RJRNowNdwSm4mqsZhHJ0="; 21 + hash = "sha256-0v5T/rac/kV1LttzKL8NJfapBxs8BWeH5mG5Plt0iig="; 22 22 }; 23 23 24 24 pythonRelaxDeps = [ "llama-index-llms-openai" ];
+2 -2
pkgs/development/python-modules/llama-index-cli/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "llama-index-cli"; 14 - version = "0.4.3"; 14 + version = "0.4.4"; 15 15 pyproject = true; 16 16 17 17 src = fetchPypi { 18 18 pname = "llama_index_cli"; 19 19 inherit version; 20 - hash = "sha256-2ugYOhBVG72JaGuU7SlKbPRGM8PdYoXE+ZHIUDG3pV8="; 20 + hash = "sha256-w68M8eKn5e9E0Lrlqo6IcrVMXda3Ma+66fE//rSZe+A="; 21 21 }; 22 22 23 23 build-system = [ hatchling ];
+2 -2
pkgs/development/python-modules/llama-index-core/default.nix
··· 39 39 40 40 buildPythonPackage rec { 41 41 pname = "llama-index-core"; 42 - version = "0.12.44"; 42 + version = "0.12.46"; 43 43 pyproject = true; 44 44 45 45 disabled = pythonOlder "3.9"; ··· 48 48 owner = "run-llama"; 49 49 repo = "llama_index"; 50 50 tag = "v${version}"; 51 - hash = "sha256-i/aH/PU2e03jy6dWYhrn2QhTrc4UMr7cRGqhkbMbqug="; 51 + hash = "sha256-B1i5zabacapc/ipPTQtQzLVZql5ifqxfFoDhaBR+eYc="; 52 52 }; 53 53 54 54 sourceRoot = "${src.name}/${pname}";
+2 -2
pkgs/development/python-modules/llama-index-indices-managed-llama-cloud/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "llama-index-indices-managed-llama-cloud"; 13 - version = "0.7.7"; 13 + version = "0.7.10"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.8"; ··· 18 18 src = fetchPypi { 19 19 pname = "llama_index_indices_managed_llama_cloud"; 20 20 inherit version; 21 - hash = "sha256-f9cwopZ9wg60Iq4vpAKLTPcCMRSlz621IyNVE3dUGG8="; 21 + hash = "sha256-UyZ5B+I9j7y7l8epYXekFEbeGFUMpgMCdgkuc7RcqIA="; 22 22 }; 23 23 24 24 pythonRelaxDeps = [ "llama-cloud" ];
+4 -2
pkgs/development/python-modules/llama-index-readers-file/default.nix
··· 2 2 lib, 3 3 beautifulsoup4, 4 4 buildPythonPackage, 5 + defusedxml, 5 6 fetchPypi, 6 7 hatchling, 7 8 llama-index-core, ··· 13 14 14 15 buildPythonPackage rec { 15 16 pname = "llama-index-readers-file"; 16 - version = "0.4.9"; 17 + version = "0.4.11"; 17 18 pyproject = true; 18 19 19 20 disabled = pythonOlder "3.8"; ··· 21 22 src = fetchPypi { 22 23 pname = "llama_index_readers_file"; 23 24 inherit version; 24 - hash = "sha256-twX9QqKHWvA9NDxmsoE4RxgAzROmfvzEiuKYOznYFsc="; 25 + hash = "sha256-GyHLZteN1fYOhxZgfZpHzNgbs5EG1FlmW+HKd5npWXs="; 25 26 }; 26 27 27 28 pythonRelaxDeps = [ ··· 34 35 35 36 dependencies = [ 36 37 beautifulsoup4 38 + defusedxml 37 39 llama-index-core 38 40 pymupdf 39 41 pypdf
+6 -6
pkgs/development/python-modules/llama-index-vector-stores-qdrant/default.nix
··· 2 2 lib, 3 3 buildPythonPackage, 4 4 fetchPypi, 5 - llama-index-core, 6 - qdrant-client, 7 - poetry-core, 8 5 grpcio, 6 + hatchling, 7 + llama-index-core, 9 8 pythonOlder, 9 + qdrant-client, 10 10 }: 11 11 12 12 buildPythonPackage rec { 13 13 pname = "llama-index-vector-stores-qdrant"; 14 - version = "0.6.0"; 14 + version = "0.6.1"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.8"; ··· 19 19 src = fetchPypi { 20 20 pname = "llama_index_vector_stores_qdrant"; 21 21 inherit version; 22 - hash = "sha256-8vBnEOX6Ob4cXxQofmuxJBZumxdFug88JhGt1UnuAGs="; 22 + hash = "sha256-14hQ/MCrwf1tucVprPbo2mLRuBWaHI0S515sbNB3Q1I="; 23 23 }; 24 24 25 - build-system = [ poetry-core ]; 25 + build-system = [ hatchling ]; 26 26 27 27 dependencies = [ 28 28 grpcio
+2 -2
pkgs/development/python-modules/llama-index-workflows/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "llama-index-workflows"; 13 - version = "1.0.1"; 13 + version = "1.1.0"; 14 14 pyproject = true; 15 15 16 16 src = fetchPypi { 17 17 pname = "llama_index_workflows"; 18 18 inherit version; 19 - hash = "sha256-B6aM9YBA1GmvjQX1YhdBiuZARVfwJUv/IqdIGYeBjj8="; 19 + hash = "sha256-/wAdNiEAv8KjNTzF8lKKCttSJF5jIZGoa0vdrN5ytq8="; 20 20 }; 21 21 22 22 pythonRelaxDeps = [ "pydantic" ];
+2 -2
pkgs/development/python-modules/llama-parse/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "llama-parse"; 12 - version = "0.6.37"; 12 + version = "0.6.46"; 13 13 pyproject = true; 14 14 15 15 disabled = pythonOlder "3.8"; ··· 17 17 src = fetchPypi { 18 18 pname = "llama_parse"; 19 19 inherit version; 20 - hash = "sha256-ZKeUdxHnnQns1j4MnKaHGvRbE6cFfd6BJGkT11bUZnQ="; 20 + hash = "sha256-YFQ/90Es+9JwNSLlmtuJE+2pZr5+keOVvxFNY1T05e8="; 21 21 }; 22 22 23 23 build-system = [ poetry-core ];
+2 -2
pkgs/development/python-modules/nominal/default.nix
··· 20 20 21 21 buildPythonPackage rec { 22 22 pname = "nominal"; 23 - version = "1.59.0"; 23 + version = "1.65.0"; 24 24 pyproject = true; 25 25 26 26 src = fetchFromGitHub { 27 27 owner = "nominal-io"; 28 28 repo = "nominal-client"; 29 29 tag = "v${version}"; 30 - hash = "sha256-wWy7i9lWZzDCx3cPyViLp7r7hSSDQbqdSUABX7L0LSE="; 30 + hash = "sha256-MDIrKDMU4PgCXxaraVYKeRwgn84UXdwxNeyoJvMHiuE="; 31 31 }; 32 32 33 33 build-system = [ hatchling ];
+2 -2
pkgs/development/python-modules/panel/default.nix
··· 16 16 17 17 buildPythonPackage rec { 18 18 pname = "panel"; 19 - version = "1.7.1"; 19 + version = "1.7.2"; 20 20 21 21 format = "wheel"; 22 22 ··· 25 25 # tries to fetch even more artifacts 26 26 src = fetchPypi { 27 27 inherit pname version format; 28 - hash = "sha256-gM67iOMxCIfThsiC+JSxN6N3A1VhoGCZCP4tH1QrWIw="; 28 + hash = "sha256-5gFBqEupP+v/W+tWe+x9wScejTJcvaplXtt1Gidoazo="; 29 29 dist = "py3"; 30 30 python = "py3"; 31 31 };
+2 -2
pkgs/development/python-modules/pyghmi/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "pyghmi"; 18 - version = "1.6.1"; 18 + version = "1.6.2"; 19 19 pyproject = true; 20 20 21 21 src = fetchPypi { 22 22 inherit pname version; 23 - hash = "sha256-XS0QQhHLkld9swn4WYj6nnMkMO6BZZ5iG0oJgFOCC9k="; 23 + hash = "sha256-VCgUWUiPaCSZnmSar7e7SkI6cEw/hwv2bh5sfvTMmA0="; 24 24 }; 25 25 26 26 build-system = [
+2 -2
pkgs/development/python-modules/pytenable/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "pytenable"; 31 - version = "1.8.0"; 31 + version = "1.8.1"; 32 32 pyproject = true; 33 33 34 34 disabled = pythonOlder "3.10"; ··· 37 37 owner = "tenable"; 38 38 repo = "pyTenable"; 39 39 tag = version; 40 - hash = "sha256-859+qKkOZBVU96QJI4YlQGXM9O81yjMmmwhAlxqO4QY="; 40 + hash = "sha256-ayueOCgbn90vFtDfKtfOhFvWX5p3nsrg7sBQP0QBNaQ="; 41 41 }; 42 42 43 43 pythonRelaxDeps = [
+2 -2
pkgs/development/python-modules/pytransportnswv2/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pytransportnswv2"; 13 - version = "0.8.0"; 13 + version = "0.8.3"; 14 14 pyproject = true; 15 15 16 16 disabled = pythonOlder "3.7"; ··· 18 18 src = fetchPypi { 19 19 pname = "PyTransportNSWv2"; 20 20 inherit version; 21 - hash = "sha256-IQhapQzzrjvhB2pWxoIePEk7epiuC0IolO7SM3/QSWg="; 21 + hash = "sha256-IjEc+fIlov0eOFhgq+k64aINqVVHq63pHEZrxAMUH+Q="; 22 22 }; 23 23 24 24 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pyvicare/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "pyvicare"; 15 - version = "2.44.0"; 15 + version = "2.50.0"; 16 16 pyproject = true; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "openviess"; 20 20 repo = "PyViCare"; 21 21 tag = version; 22 - hash = "sha256-R7GhMiE4gXCTQkew7meSkMBGSdZlTKd9X2A1zEgC8ng="; 22 + hash = "sha256-RV82dsr3asZKlgURfUdcYoaLFqSvvvLJCvZiH0CYGpk="; 23 23 }; 24 24 25 25 postPatch = ''
+2 -2
pkgs/development/python-modules/translate-toolkit/default.nix
··· 28 28 29 29 buildPythonPackage rec { 30 30 pname = "translate-toolkit"; 31 - version = "3.15.5"; 31 + version = "3.15.6"; 32 32 33 33 pyproject = true; 34 34 ··· 36 36 owner = "translate"; 37 37 repo = "translate"; 38 38 tag = version; 39 - hash = "sha256-VrnL9hD7NroXCyTydLIJlpBTGkUuCLKhrQJPWe3glAM="; 39 + hash = "sha256-G6DzpOkyD2FiskHwOhOsgRrZCXQJ9ITjp6PVZd3j9f4="; 40 40 }; 41 41 42 42 build-system = [ setuptools-scm ];
+2 -2
pkgs/development/python-modules/twilio/default.nix
··· 21 21 22 22 buildPythonPackage rec { 23 23 pname = "twilio"; 24 - version = "9.6.4"; 24 + version = "9.6.5"; 25 25 pyproject = true; 26 26 27 27 disabled = pythonOlder "3.7"; ··· 30 30 owner = "twilio"; 31 31 repo = "twilio-python"; 32 32 tag = version; 33 - hash = "sha256-tl4kCTpehILfX5Fvk2+GWL0Lm6btkmxSO3VHXEK1uXo="; 33 + hash = "sha256-zMVeqY7pr+4JfUVPUcfSQsKEB88+nH2dzKrkTP54vIE="; 34 34 }; 35 35 36 36 build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/ufo2ft/default.nix
··· 19 19 20 20 buildPythonPackage rec { 21 21 pname = "ufo2ft"; 22 - version = "3.5.0"; 22 + version = "3.5.1"; 23 23 pyproject = true; 24 24 25 25 disabled = pythonOlder "3.8"; 26 26 27 27 src = fetchPypi { 28 28 inherit pname version; 29 - hash = "sha256-mAuMJzuXxO00j0YqxZ21qk+HTAwBhPCws6DUhE9vIrs="; 29 + hash = "sha256-FUITbL+FnscmZjZMlgh/dX4+tJR6MD0LoH5jDNisQkI="; 30 30 }; 31 31 32 32 build-system = [
+27 -11
pkgs/development/python-modules/xnatpy/default.nix
··· 3 3 buildPythonPackage, 4 4 fetchPypi, 5 5 pythonOlder, 6 - setuptools, 6 + hatchling, 7 + versioningit, 7 8 click, 9 + click-option-group, 10 + importlib-metadata, 8 11 isodate, 9 12 progressbar2, 10 13 pydicom, 14 + python-dateutil, 15 + pyyaml, 11 16 requests, 12 17 }: 13 18 14 19 buildPythonPackage rec { 15 20 pname = "xnatpy"; 16 - version = "0.5.1"; 17 - format = "pyproject"; 18 - 19 - disabled = pythonOlder "3.7"; 21 + version = "0.7.2"; 22 + pyproject = true; 20 23 21 24 src = fetchPypi { 22 25 pname = "xnat"; 23 26 inherit version; 24 - hash = "sha256-iOw9cVWP5Am4S9JQ0NTmtew38KZiKmau+19K2KG2aKQ="; 27 + hash = "sha256-YbZJl6lvhuhpmeC+0LikZghIEsR2OYe0Om6IRxZcBwg="; 25 28 }; 26 29 27 - nativeBuildInputs = [ setuptools ]; 30 + build-system = [ 31 + hatchling 32 + versioningit 33 + ]; 28 34 29 - propagatedBuildInputs = [ 35 + dependencies = [ 30 36 click 37 + click-option-group 38 + importlib-metadata 31 39 isodate 32 40 progressbar2 33 41 pydicom 42 + python-dateutil 43 + pyyaml 34 44 requests 35 45 ]; 36 46 47 + pythonRelaxDeps = [ 48 + "importlib-metadata" 49 + "python-dateutil" 50 + "pydicom" 51 + ]; 52 + 37 53 # tests missing in PyPI dist and require network access and Docker container 38 54 doCheck = false; 39 55 40 56 pythonImportsCheck = [ "xnat" ]; 41 57 42 - meta = with lib; { 58 + meta = { 43 59 homepage = "https://xnat.readthedocs.io"; 44 60 description = "New XNAT client (distinct from pyxnat) that exposes XNAT objects/functions as Python objects/functions"; 45 61 changelog = "https://gitlab.com/radiology/infrastructure/xnatpy/-/blob/${version}/CHANGELOG?ref_type=tags"; 46 - license = licenses.asl20; 47 - maintainers = with maintainers; [ bcdarwin ]; 62 + license = lib.licenses.asl20; 63 + maintainers = with lib.maintainers; [ bcdarwin ]; 48 64 mainProgram = "xnat"; 49 65 }; 50 66 }
+2 -2
pkgs/development/tools/ceedling/Gemfile.lock
··· 1 1 GEM 2 2 remote: https://rubygems.org/ 3 3 specs: 4 - ceedling (1.0.0) 4 + ceedling (1.0.1) 5 5 constructor (~> 2) 6 6 deep_merge (~> 1.2) 7 7 diy (~> 1.1) ··· 26 26 ceedling 27 27 28 28 BUNDLED WITH 29 - 2.5.22 29 + 2.5.9
+2 -2
pkgs/development/tools/ceedling/gemset.nix
··· 12 12 platforms = [ ]; 13 13 source = { 14 14 remotes = [ "https://rubygems.org" ]; 15 - sha256 = "1c6f8gypc86rc7ww3c2lcqy0z08ksdzjdw0zkdd9whairx6flhvl"; 15 + sha256 = "05iacl7p408b4p47khhvpp9hf00smb70x1qj8xmw50mdq2vng6gn"; 16 16 type = "gem"; 17 17 }; 18 - version = "1.0.0"; 18 + version = "1.0.1"; 19 19 }; 20 20 constructor = { 21 21 groups = [ "default" ];
+3 -3
pkgs/development/tools/devbox/default.nix
··· 7 7 }: 8 8 buildGoModule rec { 9 9 pname = "devbox"; 10 - version = "0.14.2"; 10 + version = "0.15.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "jetify-com"; 14 14 repo = pname; 15 15 rev = version; 16 - hash = "sha256-bnquJceB1zaW1ZWU5yOWP35fkpgZWW8QQA6wzsq+RKc="; 16 + hash = "sha256-LAYGjpaHxlolzzpilD3DOvd+J0eNJ0p+VdRayGQvUWo="; 17 17 }; 18 18 19 19 ldflags = [ ··· 27 27 # integration tests want file system access 28 28 doCheck = false; 29 29 30 - vendorHash = "sha256-zqkuq8MlUCELjo4Z/uJhs65XUYyH755/ohgz1Ao4UAQ="; 30 + vendorHash = "sha256-cBRdJUviqtzX1W85/rZr23W51mdjoEPCwXxF754Dhqw="; 31 31 32 32 nativeBuildInputs = [ installShellFiles ]; 33 33
+1 -1
pkgs/development/tools/electron/info.json
··· 1366 1366 }, 1367 1367 "src/electron": { 1368 1368 "args": { 1369 - "hash": "sha256-Y6OnTmAleyYsmUn/F6kOFNkA4x+QQt00mx97UNWVIWU=", 1369 + "hash": "sha256-/5e0R3R3RRsRNcYYHqb/VJ8DIXc528baIccnQocoxwU=", 1370 1370 "owner": "electron", 1371 1371 "repo": "electron", 1372 1372 "tag": "v36.7.1"
+13 -14
pkgs/games/libremines/default.nix pkgs/by-name/li/libremines/package.nix
··· 3 3 stdenv, 4 4 fetchFromGitHub, 5 5 cmake, 6 - wrapQtAppsHook, 7 - qtmultimedia, 8 - qtwayland, 6 + qt6, 7 + qt6Packages, 9 8 }: 10 9 11 - stdenv.mkDerivation rec { 10 + stdenv.mkDerivation (finalAttrs: { 12 11 pname = "libremines"; 13 12 version = "2.0.1"; 14 13 15 14 src = fetchFromGitHub { 16 15 owner = "Bollos00"; 17 - repo = pname; 18 - rev = "v${version}"; 16 + repo = "libremines"; 17 + tag = "v${finalAttrs.version}"; 19 18 hash = "sha256-TQwjEgtqAvKnrpia6VloRgFwtq5TNDmxU+ZWjtEK/n8="; 20 19 }; 21 20 22 21 nativeBuildInputs = [ 23 22 cmake 24 - wrapQtAppsHook 23 + qt6.wrapQtAppsHook 25 24 ]; 26 25 27 26 buildInputs = 28 27 [ 29 - qtmultimedia 28 + qt6Packages.qtmultimedia 30 29 ] 31 30 ++ lib.optionals stdenv.hostPlatform.isLinux [ 32 - qtwayland 31 + qt6Packages.qtwayland 33 32 ]; 34 33 35 34 cmakeFlags = [ "-DUSE_QT6=TRUE" ]; 36 35 37 - meta = with lib; { 36 + meta = { 38 37 description = "Qt based Minesweeper game"; 39 38 mainProgram = "libremines"; 40 39 longDescription = '' 41 40 A Free/Libre and Open Source Software Qt based Minesweeper game available for GNU/Linux, FreeBSD and Windows systems. 42 41 ''; 43 42 homepage = "https://bollos00.github.io/LibreMines"; 44 - license = licenses.gpl3Plus; 45 - maintainers = with maintainers; [ aleksana ]; 46 - platforms = platforms.unix; 43 + license = lib.licenses.gpl3Plus; 44 + maintainers = with lib.maintainers; [ aleksana ]; 45 + platforms = lib.platforms.unix; 47 46 }; 48 - } 47 + })
+3 -3
pkgs/misc/drivers/gutenprint/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "gutenprint"; 20 - version = "5.3.4"; 20 + version = "5.3.5"; 21 21 22 22 src = fetchurl { 23 - url = "mirror://sourceforge/gimp-print/gutenprint-${version}.tar.bz2"; 24 - sha256 = "0s0b14hjwvbxksq7af5v8z9g2rfqv9jdmxd9d81m57f5mh6rad0p"; 23 + url = "mirror://sourceforge/gimp-print/gutenprint-${version}.tar.xz"; 24 + hash = "sha256-9an0feKFMLGuIGnPvGR6mmQbruq+gJuw7ys+xblmjXA="; 25 25 }; 26 26 27 27 strictDeps = true;
+5 -5
pkgs/servers/monitoring/grafana/plugins/grafana-github-datasource/default.nix
··· 2 2 3 3 grafanaPlugin { 4 4 pname = "grafana-github-datasource"; 5 - version = "1.9.0"; 5 + version = "1.9.2"; 6 6 zipHash = { 7 - x86_64-linux = "sha256-DQKb8VKa41bL6D9DN8OpL3sqBIlRCa1zgIjduD6AcQc="; 8 - aarch64-linux = "sha256-RHFURMnBF14QCZhVxZQO3JJ3OP6JXD2Hfef8IyVOgBs="; 9 - x86_64-darwin = "sha256-UBwc8CZRRHsEKpzTgn5PNXjxLzETyWKGsDFtXZnkRW4="; 10 - aarch64-darwin = "sha256-xgQ7s3QP7Sq8ni0n54NE/nYlyALIESfXNKncruAWty0="; 7 + x86_64-linux = "sha256-gh+vdZ8vkG/0OosqJSoh54Gi3JQGGm7YF0YgQCXr0LY="; 8 + aarch64-linux = "sha256-OEDT5N/AyL3xocl1nesV9hCcfA/a8XBPBoaOH4UTo+M="; 9 + x86_64-darwin = "sha256-5WrWvZriXjQIId52Y6THAVg7RfQFl1CT5qhKr/m0vVk="; 10 + aarch64-darwin = "sha256-4IowlmyDGjxHBHvBD/eqZvouuOEvlad0nW8L0n8hf+g"; 11 11 }; 12 12 meta = with lib; { 13 13 description = "The GitHub datasource allows GitHub API data to be visually represented in Grafana dashboards.";
+4 -4
pkgs/servers/nextcloud/default.nix
··· 59 59 in 60 60 { 61 61 nextcloud30 = generic { 62 - version = "30.0.12"; 63 - hash = "sha256-nhmyX0InPUNhIYQmtHYqdmvuQIz6aqghn4wn9yCVp6g="; 62 + version = "30.0.13"; 63 + hash = "sha256-viMmo689YHK08Uza05O5Y3qj3EDK9W/TgXXuo6j/j4Y="; 64 64 packages = nextcloud30Packages; 65 65 }; 66 66 67 67 nextcloud31 = generic { 68 - version = "31.0.6"; 69 - hash = "sha256-pqvOG+hK5lCQYliV7leWxuYx/RDLF2RexNc/fZs3Jig="; 68 + version = "31.0.7"; 69 + hash = "sha256-ACpdA64Fp/DDBWlH1toLeaRNPXIPVyj+UVWgxaO07Gk="; 70 70 packages = nextcloud31Packages; 71 71 }; 72 72
+39 -39
pkgs/servers/nextcloud/packages/30.json
··· 10 10 ] 11 11 }, 12 12 "bookmarks": { 13 - "hash": "sha256-oXpTsmjD1zGjNoPoNVIVSVO4nHAoWy0YW3IT797XrRM=", 14 - "url": "https://github.com/nextcloud/bookmarks/releases/download/v15.1.0/bookmarks-15.1.0.tar.gz", 15 - "version": "15.1.0", 13 + "hash": "sha256-NVe9eOL6dcL4hYYV7dsoR8ZKXFHkEGAo5sj9DXuDJEI=", 14 + "url": "https://github.com/nextcloud/bookmarks/releases/download/v15.1.1/bookmarks-15.1.1.tar.gz", 15 + "version": "15.1.1", 16 16 "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- ☠ Find broken links and duplicates\n- 📲 Synchronize with all your browsers and devices\n- 📔 Store archived versions of your links in case they are depublished\n- 🔍 Full-text search on site contents\n- 👪 Share bookmarks with other users, groups and teams or via public links\n- ⚛ Generate RSS feeds of your collections\n- 📈 Stats on how often you access which links\n- 🔒 Automatic backups of your bookmarks collection\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 17 17 "homepage": "https://github.com/nextcloud/bookmarks", 18 18 "licenses": [ ··· 20 20 ] 21 21 }, 22 22 "calendar": { 23 - "hash": "sha256-vsqyTtHDTjB4POwQyDtlAPnb8nBQw0ZTBnBUqP4Kw9A=", 24 - "url": "https://github.com/nextcloud-releases/calendar/releases/download/v5.3.2/calendar-v5.3.2.tar.gz", 25 - "version": "5.3.2", 23 + "hash": "sha256-Wm7RWDe/6jcOEGp2eR1k7x05ilB6kW1u1aRdN7HI4Wk=", 24 + "url": "https://github.com/nextcloud-releases/calendar/releases/download/v5.3.5/calendar-v5.3.5.tar.gz", 25 + "version": "5.3.5", 26 26 "description": "A Calendar app for Nextcloud. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Like Contacts, Talk, Tasks, Deck and Circles\n* 🌐 **WebCal Support!** Want to see your favorite team's matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 **Search!** Find your events at ease\n* ☑️ **Tasks!** See tasks or Deck cards with a due date directly in the calendar\n* 🔈 **Talk rooms!** Create an associated Talk room when booking a meeting with just one click\n* 📆 **Appointment booking** Send people a link so they can book an appointment with you [using this app](https://apps.nextcloud.com/apps/appointments)\n* 📎 **Attachments!** Add, upload and view event attachments\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.", 27 27 "homepage": "https://github.com/nextcloud/calendar/", 28 28 "licenses": [ ··· 40 40 ] 41 41 }, 42 42 "contacts": { 43 - "hash": "sha256-uT1QOZpuKvsrnZWYbaQUhUdM49xdIivotFe6FAz330I=", 44 - "url": "https://github.com/nextcloud-releases/contacts/releases/download/v7.1.3/contacts-v7.1.3.tar.gz", 45 - "version": "7.1.3", 43 + "hash": "sha256-52FNlLIc4Xr/8mKzEJW8YJ7RbfaeSpMaIxGhBFp0WFc=", 44 + "url": "https://github.com/nextcloud-releases/contacts/releases/download/v7.1.5/contacts-v7.1.5.tar.gz", 45 + "version": "7.1.5", 46 46 "description": "The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Mail and Calendar – more to come.\n* 🎉 **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.\n* 👥 **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!\n* 🙈 **We’re not reinventing the wheel!** Based on the great and open SabreDAV library.", 47 47 "homepage": "https://github.com/nextcloud/contacts#readme", 48 48 "licenses": [ ··· 130 130 ] 131 131 }, 132 132 "forms": { 133 - "hash": "sha256-t4/1Rq99VH+g43zLcms5P714bSYv5h6RTaI4Q7jvD+Y=", 134 - "url": "https://github.com/nextcloud-releases/forms/releases/download/v5.1.0/forms-v5.1.0.tar.gz", 135 - "version": "5.1.0", 133 + "hash": "sha256-WOLrsu/0CYPnthm+c6TELXUis91bnEclQJ5iOdBeszc=", 134 + "url": "https://github.com/nextcloud-releases/forms/releases/download/v5.1.2/forms-v5.1.2.tar.gz", 135 + "version": "5.1.2", 136 136 "description": "**Simple surveys and questionnaires, self-hosted!**\n\n- **📝 Simple design:** No mass of options, only the essentials. Works well on mobile of course.\n- **📊 View & export results:** Results are visualized and can also be exported as CSV in the same format used by Google Forms.\n- **🔒 Data under your control!** Unlike in Google Forms, Typeform, Doodle and others, the survey info and responses are kept private on your instance.\n- **🧑‍💻 Connect to your software:** Easily integrate Forms into your service with our full-fledged [REST-API](https://github.com/nextcloud/forms/blob/main/docs/API.md).\n- **🙋 Get involved!** We have lots of stuff planned like more question types, collaboration on forms, [and much more](https://github.com/nextcloud/forms/milestones)!", 137 137 "homepage": "https://github.com/nextcloud/forms", 138 138 "licenses": [ ··· 150 150 ] 151 151 }, 152 152 "groupfolders": { 153 - "hash": "sha256-xlxc4m0xxjrI3Pi+1L63Sm4wQCjJdkHD9JPorsrI5e0=", 154 - "url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v18.1.2/groupfolders-v18.1.2.tar.gz", 155 - "version": "18.1.2", 156 - "description": "Admin configured folders shared with everyone in a team.\n\nFolders can be configured from *Team folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more teams, control their write/sharing permissions and assign a quota for the folder.", 153 + "hash": "sha256-FpGpZB5hv0gSXRDTYpCo0MPNOat27ZsyuXxVIYBs+pg=", 154 + "url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v18.1.3/groupfolders-v18.1.3.tar.gz", 155 + "version": "18.1.3", 156 + "description": "Admin configured folders shared with everyone in a group.\n\nFolders can be configured from *Group folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.", 157 157 "homepage": "https://github.com/nextcloud/groupfolders", 158 158 "licenses": [ 159 159 "agpl" ··· 200 200 ] 201 201 }, 202 202 "mail": { 203 - "hash": "sha256-P2LeJOjCR6ufq26gz4aK/Xy359vwnD2TZJodn/YfXcU=", 204 - "url": "https://github.com/nextcloud-releases/mail/releases/download/v5.1.3/mail-v5.1.3.tar.gz", 205 - "version": "5.1.3", 203 + "hash": "sha256-FSpr/PVZlx4t+1cGmyoES/9i0c2nyRTPLTodLM2JP04=", 204 + "url": "https://github.com/nextcloud-releases/mail/releases/download/v5.1.7/mail-v5.1.7.tar.gz", 205 + "version": "5.1.7", 206 206 "description": "**💌 A mail app for Nextcloud**\n\n- **🚀 Integration with other Nextcloud apps!** Currently Contacts, Calendar & Files – more to come.\n- **📥 Multiple mail accounts!** Personal and company account? No problem, and a nice unified inbox. Connect any IMAP account.\n- **🔒 Send & receive encrypted mails!** Using the great [Mailvelope](https://mailvelope.com) browser extension.\n- **🙈 We’re not reinventing the wheel!** Based on the great [Horde](https://www.horde.org) libraries.\n- **📬 Want to host your own mail server?** We do not have to reimplement this as you could set up [Mail-in-a-Box](https://mailinabox.email)!\n\n## Ethical AI Rating\n\n### Priority Inbox\n\nPositive:\n* The software for training and inferencing of this model is open source.\n* The model is created and trained on-premises based on the user's own data.\n* The training data is accessible to the user, making it possible to check or correct for bias or optimise the performance and CO2 usage.\n\n### Thread Summaries (opt-in)\n\n**Rating:** 🟢/🟡/🟠/🔴\n\nThe rating depends on the installed text processing backend. See [the rating overview](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html) for details.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 207 207 "homepage": "https://github.com/nextcloud/mail#readme", 208 208 "licenses": [ ··· 220 220 ] 221 221 }, 222 222 "music": { 223 - "hash": "sha256-h83Xc292/NQPWOTRIbUSgqHUH/Sp4fYJ8GAHSiJWHP0=", 224 - "url": "https://github.com/owncloud/music/releases/download/v2.1.4/music_2.1.4_for_nextcloud.tar.gz", 225 - "version": "2.1.4", 226 - "description": "A stand-alone music player app and a \"lite\" player for the Files app\n\n- On modern browsers, supports audio types .mp3, .ogg, .m4a, .m4b, .flac, .wav, and more\n- Playlist support with import from m3u, m3u8, and pls files\n- Browse by artists, albums, genres, or folders\n- Gapless play\n- Filter the shown content with the search function\n- Advanced search to freely use and combine dozens of search criteria\n- Play internet radio and podcast channels\n- Setup Last.fm connection to see background information on artists, albums, and songs\n- Control with media control keys on the keyboard or OS\n- The app can handle libraries consisting of thousands of albums and tens of thousands of songs\n- Includes a server backend compatible with the Subsonic and Ampache protocols, allowing playback and browsing of your library on dozens of external apps on Android, iOS, Windows, Linux, etc.\n- Widget for the Nextcloud Dashboard", 223 + "hash": "sha256-8FQrQdoaSeJh4tnqvGOiuxN1YPQIJSwm6sTHOfc31cg=", 224 + "url": "https://github.com/owncloud/music/releases/download/v2.2.0/music_2.2.0_for_nextcloud.tar.gz", 225 + "version": "2.2.0", 226 + "description": "A stand-alone music player app and a \"lite\" player for the Files app\n\n- On modern browsers, supports audio types .mp3, .ogg, .m4a, .m4b, .flac, .wav, and more\n- Playlist support with import from .m3u, .m3u8, .pls, and .wpl files\n- Show lyrics from the file metadata or .lrc files\n- Browse by artists, albums, genres, or folders\n- Gapless play\n- Filter the shown content with the search function\n- Advanced search to freely use and combine dozens of search criteria\n- Play internet radio and podcast channels\n- Setup Last.fm connection to see background information on artists, albums, and songs\n- Control with media control keys on the keyboard or OS\n- The app can handle libraries consisting of thousands of albums and tens of thousands of songs\n- Includes a server backend compatible with the Subsonic and Ampache protocols, allowing playback and browsing of your library on dozens of external apps on Android, iOS, Windows, Linux, etc.\n- Widget for the Nextcloud Dashboard", 227 227 "homepage": "https://github.com/owncloud/music", 228 228 "licenses": [ 229 229 "agpl" 230 230 ] 231 231 }, 232 232 "news": { 233 - "hash": "sha256-T/ZKL4YWw0ai7mZ9gm91BUl6Md6hyTakYgKsarSYO4k=", 234 - "url": "https://github.com/nextcloud/news/releases/download/26.0.1/news.tar.gz", 235 - "version": "26.0.1", 233 + "hash": "sha256-Y1+hcRxewWyctG5nS7GjN+zWCBrxoroeb01HLzqAR08=", 234 + "url": "https://github.com/nextcloud/news/releases/download/26.0.2/news.tar.gz", 235 + "version": "26.0.2", 236 236 "description": "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)", 237 237 "homepage": "https://github.com/nextcloud/news", 238 238 "licenses": [ ··· 290 290 ] 291 291 }, 292 292 "polls": { 293 - "hash": "sha256-AJUC5UIz6xY75cEJHfNjhUm9K9HnXWMokt9gIOcq8vI=", 294 - "url": "https://github.com/nextcloud-releases/polls/releases/download/v7.4.3/polls-v7.4.3.tar.gz", 295 - "version": "7.4.3", 296 - "description": "A polls app, similar to Doodle/Dudle with the possibility to restrict access (members, certain groups/users, hidden and public).", 293 + "hash": "sha256-j+Aq3Hu7i52o5HqMROTHeb/955N7Qw4TMFPEevR+bYQ=", 294 + "url": "https://github.com/nextcloud-releases/polls/releases/download/v7.4.4/polls-v7.4.4.tar.gz", 295 + "version": "7.4.4", 296 + "description": "A polls app, similar to Doodle/DuD-Poll with the possibility to restrict access (members, certain groups/users, hidden and public).", 297 297 "homepage": "https://github.com/nextcloud/polls", 298 298 "licenses": [ 299 299 "agpl" ··· 360 360 ] 361 361 }, 362 362 "spreed": { 363 - "hash": "sha256-C3TLD6tZa++H6Kg0X5gz2kyJQVitXJoQ5rUccyX4N8w=", 364 - "url": "https://github.com/nextcloud-releases/spreed/releases/download/v20.1.7/spreed-v20.1.7.tar.gz", 365 - "version": "20.1.7", 363 + "hash": "sha256-McNUCYvP7bKwZHrfqKMq5w5aEvA4ulS+ifFqUIl4i48=", 364 + "url": "https://github.com/nextcloud-releases/spreed/releases/download/v20.1.8/spreed-v20.1.8.tar.gz", 365 + "version": "20.1.8", 366 366 "description": "Chat, video & audio-conferencing using WebRTC\n\n* 💬 **Chat** Nextcloud Talk comes with a simple text chat, allowing you to share or upload files from your Nextcloud Files app or local device and mention other participants.\n* 👥 **Private, group, public and password protected calls!** Invite someone, a whole group or send a public link to invite to a call.\n* 🌐 **Federated chats** Chat with other Nextcloud users on their servers\n* 💻 **Screen sharing!** Share your screen with the participants of your call.\n* 🚀 **Integration with other Nextcloud apps** like Files, Calendar, User status, Dashboard, Flow, Maps, Smart picker, Contacts, Deck, and many more.\n* 🌉 **Sync with other chat solutions** With [Matterbridge](https://github.com/42wim/matterbridge/) being integrated in Talk, you can easily sync a lot of other chat solutions to Nextcloud Talk and vice-versa.", 367 367 "homepage": "https://github.com/nextcloud/spreed", 368 368 "licenses": [ ··· 400 400 ] 401 401 }, 402 402 "unroundedcorners": { 403 - "hash": "sha256-ONOBDUciyWlKvi3Fd5+mWh3OLRfyW+PlKJKJWdMph0U=", 404 - "url": "https://github.com/OliverParoczai/nextcloud-unroundedcorners/releases/download/v1.1.4/unroundedcorners-v1.1.4.tar.gz", 405 - "version": "1.1.4", 403 + "hash": "sha256-0+fOJnPsuengy8TPzTKizDnDXTlZStalFDOv+dFlRgc=", 404 + "url": "https://github.com/OliverParoczai/nextcloud-unroundedcorners/releases/download/v1.1.5/unroundedcorners-v1.1.5.tar.gz", 405 + "version": "1.1.5", 406 406 "description": "# Unrounded Corners\nA Nextcloud app that restores the corners of buttons and widgets to their original looks by unrounding them.", 407 407 "homepage": "https://github.com/OliverParoczai/nextcloud-unroundedcorners", 408 408 "licenses": [ ··· 450 450 ] 451 451 }, 452 452 "whiteboard": { 453 - "hash": "sha256-hz8nviBUakDWH5ThDILoRFxyBFVpzJgXM6dgqry13tc=", 454 - "url": "https://github.com/nextcloud-releases/whiteboard/releases/download/v1.0.5/whiteboard-v1.0.5.tar.gz", 455 - "version": "1.0.5", 453 + "hash": "sha256-njiTDKDiwDeOH9biOohIQueAI8/pSijWy8EDXHoVeQo=", 454 + "url": "https://github.com/nextcloud-releases/whiteboard/releases/download/v1.1.2/whiteboard-v1.1.2.tar.gz", 455 + "version": "1.1.2", 456 456 "description": "The official whiteboard app for Nextcloud. It allows users to create and share whiteboards with other users and collaborate in real-time.\n\n**Whiteboard requires a separate collaboration server to work.** Please see the [documentation](https://github.com/nextcloud/whiteboard?tab=readme-ov-file#backend) on how to install it.\n\n- 🎨 Drawing shapes, writing text, connecting elements\n- 📝 Real-time collaboration\n- 🖼️ Add images with drag and drop\n- 📊 Easily add mermaid diagrams\n- ✨ Use the Smart Picker to embed other elements from Nextcloud\n- 📦 Image export\n- 💪 Strong foundation: We use Excalidraw as our base library", 457 457 "homepage": "https://github.com/nextcloud/whiteboard", 458 458 "licenses": [
+42 -42
pkgs/servers/nextcloud/packages/31.json
··· 10 10 ] 11 11 }, 12 12 "bookmarks": { 13 - "hash": "sha256-oXpTsmjD1zGjNoPoNVIVSVO4nHAoWy0YW3IT797XrRM=", 14 - "url": "https://github.com/nextcloud/bookmarks/releases/download/v15.1.0/bookmarks-15.1.0.tar.gz", 15 - "version": "15.1.0", 13 + "hash": "sha256-NVe9eOL6dcL4hYYV7dsoR8ZKXFHkEGAo5sj9DXuDJEI=", 14 + "url": "https://github.com/nextcloud/bookmarks/releases/download/v15.1.1/bookmarks-15.1.1.tar.gz", 15 + "version": "15.1.1", 16 16 "description": "- 📂 Sort bookmarks into folders\n- 🏷 Add tags and personal notes\n- ☠ Find broken links and duplicates\n- 📲 Synchronize with all your browsers and devices\n- 📔 Store archived versions of your links in case they are depublished\n- 🔍 Full-text search on site contents\n- 👪 Share bookmarks with other users, groups and teams or via public links\n- ⚛ Generate RSS feeds of your collections\n- 📈 Stats on how often you access which links\n- 🔒 Automatic backups of your bookmarks collection\n- 💼 Built-in Dashboard widgets for frequent and recent links\n\nRequirements:\n - PHP extensions:\n - intl: *\n - mbstring: *\n - when using MySQL, use at least v8.0", 17 17 "homepage": "https://github.com/nextcloud/bookmarks", 18 18 "licenses": [ ··· 20 20 ] 21 21 }, 22 22 "calendar": { 23 - "hash": "sha256-vsqyTtHDTjB4POwQyDtlAPnb8nBQw0ZTBnBUqP4Kw9A=", 24 - "url": "https://github.com/nextcloud-releases/calendar/releases/download/v5.3.2/calendar-v5.3.2.tar.gz", 25 - "version": "5.3.2", 23 + "hash": "sha256-Wm7RWDe/6jcOEGp2eR1k7x05ilB6kW1u1aRdN7HI4Wk=", 24 + "url": "https://github.com/nextcloud-releases/calendar/releases/download/v5.3.5/calendar-v5.3.5.tar.gz", 25 + "version": "5.3.5", 26 26 "description": "A Calendar app for Nextcloud. Easily sync events from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Like Contacts, Talk, Tasks, Deck and Circles\n* 🌐 **WebCal Support!** Want to see your favorite team's matchdays in your calendar? No problem!\n* 🙋 **Attendees!** Invite people to your events\n* ⌚ **Free/Busy!** See when your attendees are available to meet\n* ⏰ **Reminders!** Get alarms for events inside your browser and via email\n* 🔍 **Search!** Find your events at ease\n* ☑️ **Tasks!** See tasks or Deck cards with a due date directly in the calendar\n* 🔈 **Talk rooms!** Create an associated Talk room when booking a meeting with just one click\n* 📆 **Appointment booking** Send people a link so they can book an appointment with you [using this app](https://apps.nextcloud.com/apps/appointments)\n* 📎 **Attachments!** Add, upload and view event attachments\n* 🙈 **We’re not reinventing the wheel!** Based on the great [c-dav library](https://github.com/nextcloud/cdav-library), [ical.js](https://github.com/mozilla-comm/ical.js) and [fullcalendar](https://github.com/fullcalendar/fullcalendar) libraries.", 27 27 "homepage": "https://github.com/nextcloud/calendar/", 28 28 "licenses": [ ··· 40 40 ] 41 41 }, 42 42 "contacts": { 43 - "hash": "sha256-uT1QOZpuKvsrnZWYbaQUhUdM49xdIivotFe6FAz330I=", 44 - "url": "https://github.com/nextcloud-releases/contacts/releases/download/v7.1.3/contacts-v7.1.3.tar.gz", 45 - "version": "7.1.3", 43 + "hash": "sha256-52FNlLIc4Xr/8mKzEJW8YJ7RbfaeSpMaIxGhBFp0WFc=", 44 + "url": "https://github.com/nextcloud-releases/contacts/releases/download/v7.1.5/contacts-v7.1.5.tar.gz", 45 + "version": "7.1.5", 46 46 "description": "The Nextcloud contacts app is a user interface for Nextcloud's CardDAV server. Easily sync contacts from various devices with your Nextcloud and edit them online.\n\n* 🚀 **Integration with other Nextcloud apps!** Currently Mail and Calendar – more to come.\n* 🎉 **Never forget a birthday!** You can sync birthdays and other recurring events with your Nextcloud Calendar.\n* 👥 **Sharing of Adressbooks!** You want to share your contacts with your friends or coworkers? No problem!\n* 🙈 **We’re not reinventing the wheel!** Based on the great and open SabreDAV library.", 47 47 "homepage": "https://github.com/nextcloud/contacts#readme", 48 48 "licenses": [ ··· 130 130 ] 131 131 }, 132 132 "forms": { 133 - "hash": "sha256-t4/1Rq99VH+g43zLcms5P714bSYv5h6RTaI4Q7jvD+Y=", 134 - "url": "https://github.com/nextcloud-releases/forms/releases/download/v5.1.0/forms-v5.1.0.tar.gz", 135 - "version": "5.1.0", 133 + "hash": "sha256-WOLrsu/0CYPnthm+c6TELXUis91bnEclQJ5iOdBeszc=", 134 + "url": "https://github.com/nextcloud-releases/forms/releases/download/v5.1.2/forms-v5.1.2.tar.gz", 135 + "version": "5.1.2", 136 136 "description": "**Simple surveys and questionnaires, self-hosted!**\n\n- **📝 Simple design:** No mass of options, only the essentials. Works well on mobile of course.\n- **📊 View & export results:** Results are visualized and can also be exported as CSV in the same format used by Google Forms.\n- **🔒 Data under your control!** Unlike in Google Forms, Typeform, Doodle and others, the survey info and responses are kept private on your instance.\n- **🧑‍💻 Connect to your software:** Easily integrate Forms into your service with our full-fledged [REST-API](https://github.com/nextcloud/forms/blob/main/docs/API.md).\n- **🙋 Get involved!** We have lots of stuff planned like more question types, collaboration on forms, [and much more](https://github.com/nextcloud/forms/milestones)!", 137 137 "homepage": "https://github.com/nextcloud/forms", 138 138 "licenses": [ ··· 150 150 ] 151 151 }, 152 152 "groupfolders": { 153 - "hash": "sha256-GEM5Xw8J2xFOTf9AOlOttVXo25E/x4foT9493J9ZIf4=", 154 - "url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v19.1.0/groupfolders-v19.1.0.tar.gz", 155 - "version": "19.1.0", 156 - "description": "Admin configured folders shared with everyone in a team.\n\nFolders can be configured from *Team folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more teams, control their write/sharing permissions and assign a quota for the folder.", 153 + "hash": "sha256-KqbPvcHOYJA8bjWbh6X/7RM78FGCqFJIOS8FgugJyJk=", 154 + "url": "https://github.com/nextcloud-releases/groupfolders/releases/download/v19.1.2/groupfolders-v19.1.2.tar.gz", 155 + "version": "19.1.2", 156 + "description": "Admin configured folders shared with everyone in a group.\n\nFolders can be configured from *Group folders* in the admin settings.\n\nAfter a folder is created, the admin can give access to the folder to one or more groups, control their write/sharing permissions and assign a quota for the folder.", 157 157 "homepage": "https://github.com/nextcloud/groupfolders", 158 158 "licenses": [ 159 159 "agpl" ··· 200 200 ] 201 201 }, 202 202 "mail": { 203 - "hash": "sha256-P2LeJOjCR6ufq26gz4aK/Xy359vwnD2TZJodn/YfXcU=", 204 - "url": "https://github.com/nextcloud-releases/mail/releases/download/v5.1.3/mail-v5.1.3.tar.gz", 205 - "version": "5.1.3", 203 + "hash": "sha256-FSpr/PVZlx4t+1cGmyoES/9i0c2nyRTPLTodLM2JP04=", 204 + "url": "https://github.com/nextcloud-releases/mail/releases/download/v5.1.7/mail-v5.1.7.tar.gz", 205 + "version": "5.1.7", 206 206 "description": "**💌 A mail app for Nextcloud**\n\n- **🚀 Integration with other Nextcloud apps!** Currently Contacts, Calendar & Files – more to come.\n- **📥 Multiple mail accounts!** Personal and company account? No problem, and a nice unified inbox. Connect any IMAP account.\n- **🔒 Send & receive encrypted mails!** Using the great [Mailvelope](https://mailvelope.com) browser extension.\n- **🙈 We’re not reinventing the wheel!** Based on the great [Horde](https://www.horde.org) libraries.\n- **📬 Want to host your own mail server?** We do not have to reimplement this as you could set up [Mail-in-a-Box](https://mailinabox.email)!\n\n## Ethical AI Rating\n\n### Priority Inbox\n\nPositive:\n* The software for training and inferencing of this model is open source.\n* The model is created and trained on-premises based on the user's own data.\n* The training data is accessible to the user, making it possible to check or correct for bias or optimise the performance and CO2 usage.\n\n### Thread Summaries (opt-in)\n\n**Rating:** 🟢/🟡/🟠/🔴\n\nThe rating depends on the installed text processing backend. See [the rating overview](https://docs.nextcloud.com/server/latest/admin_manual/ai/index.html) for details.\n\nLearn more about the Nextcloud Ethical AI Rating [in our blog](https://nextcloud.com/blog/nextcloud-ethical-ai-rating/).", 207 207 "homepage": "https://github.com/nextcloud/mail#readme", 208 208 "licenses": [ ··· 220 220 ] 221 221 }, 222 222 "music": { 223 - "hash": "sha256-h83Xc292/NQPWOTRIbUSgqHUH/Sp4fYJ8GAHSiJWHP0=", 224 - "url": "https://github.com/owncloud/music/releases/download/v2.1.4/music_2.1.4_for_nextcloud.tar.gz", 225 - "version": "2.1.4", 226 - "description": "A stand-alone music player app and a \"lite\" player for the Files app\n\n- On modern browsers, supports audio types .mp3, .ogg, .m4a, .m4b, .flac, .wav, and more\n- Playlist support with import from m3u, m3u8, and pls files\n- Browse by artists, albums, genres, or folders\n- Gapless play\n- Filter the shown content with the search function\n- Advanced search to freely use and combine dozens of search criteria\n- Play internet radio and podcast channels\n- Setup Last.fm connection to see background information on artists, albums, and songs\n- Control with media control keys on the keyboard or OS\n- The app can handle libraries consisting of thousands of albums and tens of thousands of songs\n- Includes a server backend compatible with the Subsonic and Ampache protocols, allowing playback and browsing of your library on dozens of external apps on Android, iOS, Windows, Linux, etc.\n- Widget for the Nextcloud Dashboard", 223 + "hash": "sha256-8FQrQdoaSeJh4tnqvGOiuxN1YPQIJSwm6sTHOfc31cg=", 224 + "url": "https://github.com/owncloud/music/releases/download/v2.2.0/music_2.2.0_for_nextcloud.tar.gz", 225 + "version": "2.2.0", 226 + "description": "A stand-alone music player app and a \"lite\" player for the Files app\n\n- On modern browsers, supports audio types .mp3, .ogg, .m4a, .m4b, .flac, .wav, and more\n- Playlist support with import from .m3u, .m3u8, .pls, and .wpl files\n- Show lyrics from the file metadata or .lrc files\n- Browse by artists, albums, genres, or folders\n- Gapless play\n- Filter the shown content with the search function\n- Advanced search to freely use and combine dozens of search criteria\n- Play internet radio and podcast channels\n- Setup Last.fm connection to see background information on artists, albums, and songs\n- Control with media control keys on the keyboard or OS\n- The app can handle libraries consisting of thousands of albums and tens of thousands of songs\n- Includes a server backend compatible with the Subsonic and Ampache protocols, allowing playback and browsing of your library on dozens of external apps on Android, iOS, Windows, Linux, etc.\n- Widget for the Nextcloud Dashboard", 227 227 "homepage": "https://github.com/owncloud/music", 228 228 "licenses": [ 229 229 "agpl" 230 230 ] 231 231 }, 232 232 "news": { 233 - "hash": "sha256-T/ZKL4YWw0ai7mZ9gm91BUl6Md6hyTakYgKsarSYO4k=", 234 - "url": "https://github.com/nextcloud/news/releases/download/26.0.1/news.tar.gz", 235 - "version": "26.0.1", 233 + "hash": "sha256-Y1+hcRxewWyctG5nS7GjN+zWCBrxoroeb01HLzqAR08=", 234 + "url": "https://github.com/nextcloud/news/releases/download/26.0.2/news.tar.gz", 235 + "version": "26.0.2", 236 236 "description": "📰 A RSS/Atom Feed reader App for Nextcloud\n\n- 📲 Synchronize your feeds with multiple mobile or desktop [clients](https://nextcloud.github.io/news/clients/)\n- 🔄 Automatic updates of your news feeds\n- 🆓 Free and open source under AGPLv3, no ads or premium functions\n\n**System Cron is currently required for this app to work**\n\nRequirements can be found [here](https://nextcloud.github.io/news/install/#dependencies)\n\nThe Changelog is available [here](https://github.com/nextcloud/news/blob/master/CHANGELOG.md)\n\nCreate a [bug report](https://github.com/nextcloud/news/issues/new/choose)\n\nCreate a [feature request](https://github.com/nextcloud/news/discussions/new)\n\nReport a [feed issue](https://github.com/nextcloud/news/discussions/new)", 237 237 "homepage": "https://github.com/nextcloud/news", 238 238 "licenses": [ ··· 290 290 ] 291 291 }, 292 292 "polls": { 293 - "hash": "sha256-AJUC5UIz6xY75cEJHfNjhUm9K9HnXWMokt9gIOcq8vI=", 294 - "url": "https://github.com/nextcloud-releases/polls/releases/download/v7.4.3/polls-v7.4.3.tar.gz", 295 - "version": "7.4.3", 296 - "description": "A polls app, similar to Doodle/Dudle with the possibility to restrict access (members, certain groups/users, hidden and public).", 293 + "hash": "sha256-iv3Jjx/p2uGhxYctaMaaB/5c3oroauE8iOEH2eWi4+A=", 294 + "url": "https://github.com/nextcloud-releases/polls/releases/download/v8.0.6/polls-v8.0.6.tar.gz", 295 + "version": "8.0.6", 296 + "description": "A polls app, similar to Doodle/DuD-Poll with the possibility to restrict access (members, certain groups/users, hidden and public).", 297 297 "homepage": "https://github.com/nextcloud/polls", 298 298 "licenses": [ 299 299 "agpl" ··· 340 340 ] 341 341 }, 342 342 "richdocuments": { 343 - "hash": "sha256-3tCUe7mXgUpmWSWd1y7uYGc3yBk2C26QLPAOcfsUEjY=", 344 - "url": "https://github.com/nextcloud-releases/richdocuments/releases/download/v8.7.0/richdocuments-v8.7.0.tar.gz", 345 - "version": "8.7.0", 343 + "hash": "sha256-qJt7nkXhW3t0c8m+MHStWt2FnSNUNiMbDLeDOpU8VVA=", 344 + "url": "https://github.com/nextcloud-releases/richdocuments/releases/download/v8.7.1/richdocuments-v8.7.1.tar.gz", 345 + "version": "8.7.1", 346 346 "description": "This application can connect to a Collabora Online (or other) server (WOPI-like Client). Nextcloud is the WOPI Host. Please read the documentation to learn more about that.\n\nYou can also edit your documents off-line with the Collabora Office app from the **[Android](https://play.google.com/store/apps/details?id=com.collabora.libreoffice)** and **[iOS](https://apps.apple.com/us/app/collabora-office/id1440482071)** store.", 347 347 "homepage": "https://collaboraoffice.com/", 348 348 "licenses": [ ··· 360 360 ] 361 361 }, 362 362 "spreed": { 363 - "hash": "sha256-DxwK3PMsLTxbdjyM10rX6wveRFCr8EoIGToKSkaMwYM=", 364 - "url": "https://github.com/nextcloud-releases/spreed/releases/download/v21.1.0/spreed-v21.1.0.tar.gz", 365 - "version": "21.1.0", 363 + "hash": "sha256-tumLEoJAGvcFgN8dQbmwxPofOQ825mySOa5qNg6wzgs=", 364 + "url": "https://github.com/nextcloud-releases/spreed/releases/download/v21.1.1/spreed-v21.1.1.tar.gz", 365 + "version": "21.1.1", 366 366 "description": "Chat, video & audio-conferencing using WebRTC\n\n* 💬 **Chat** Nextcloud Talk comes with a simple text chat, allowing you to share or upload files from your Nextcloud Files app or local device and mention other participants.\n* 👥 **Private, group, public and password protected calls!** Invite someone, a whole group or send a public link to invite to a call.\n* 🌐 **Federated chats** Chat with other Nextcloud users on their servers\n* 💻 **Screen sharing!** Share your screen with the participants of your call.\n* 🚀 **Integration with other Nextcloud apps** like Files, Calendar, User status, Dashboard, Flow, Maps, Smart picker, Contacts, Deck, and many more.\n* 🌉 **Sync with other chat solutions** With [Matterbridge](https://github.com/42wim/matterbridge/) being integrated in Talk, you can easily sync a lot of other chat solutions to Nextcloud Talk and vice-versa.", 367 367 "homepage": "https://github.com/nextcloud/spreed", 368 368 "licenses": [ ··· 400 400 ] 401 401 }, 402 402 "unroundedcorners": { 403 - "hash": "sha256-ONOBDUciyWlKvi3Fd5+mWh3OLRfyW+PlKJKJWdMph0U=", 404 - "url": "https://github.com/OliverParoczai/nextcloud-unroundedcorners/releases/download/v1.1.4/unroundedcorners-v1.1.4.tar.gz", 405 - "version": "1.1.4", 403 + "hash": "sha256-0+fOJnPsuengy8TPzTKizDnDXTlZStalFDOv+dFlRgc=", 404 + "url": "https://github.com/OliverParoczai/nextcloud-unroundedcorners/releases/download/v1.1.5/unroundedcorners-v1.1.5.tar.gz", 405 + "version": "1.1.5", 406 406 "description": "# Unrounded Corners\nA Nextcloud app that restores the corners of buttons and widgets to their original looks by unrounding them.", 407 407 "homepage": "https://github.com/OliverParoczai/nextcloud-unroundedcorners", 408 408 "licenses": [ ··· 450 450 ] 451 451 }, 452 452 "whiteboard": { 453 - "hash": "sha256-hz8nviBUakDWH5ThDILoRFxyBFVpzJgXM6dgqry13tc=", 454 - "url": "https://github.com/nextcloud-releases/whiteboard/releases/download/v1.0.5/whiteboard-v1.0.5.tar.gz", 455 - "version": "1.0.5", 453 + "hash": "sha256-njiTDKDiwDeOH9biOohIQueAI8/pSijWy8EDXHoVeQo=", 454 + "url": "https://github.com/nextcloud-releases/whiteboard/releases/download/v1.1.2/whiteboard-v1.1.2.tar.gz", 455 + "version": "1.1.2", 456 456 "description": "The official whiteboard app for Nextcloud. It allows users to create and share whiteboards with other users and collaborate in real-time.\n\n**Whiteboard requires a separate collaboration server to work.** Please see the [documentation](https://github.com/nextcloud/whiteboard?tab=readme-ov-file#backend) on how to install it.\n\n- 🎨 Drawing shapes, writing text, connecting elements\n- 📝 Real-time collaboration\n- 🖼️ Add images with drag and drop\n- 📊 Easily add mermaid diagrams\n- ✨ Use the Smart Picker to embed other elements from Nextcloud\n- 📦 Image export\n- 💪 Strong foundation: We use Excalidraw as our base library", 457 457 "homepage": "https://github.com/nextcloud/whiteboard", 458 458 "licenses": [
+1 -1
pkgs/servers/samba/4.x.nix
··· 167 167 libbsd 168 168 ] 169 169 ++ optionals stdenv.hostPlatform.isLinux [ 170 - #liburing # FIXME: better solution 170 + liburing 171 171 systemd 172 172 ] 173 173 ++ optionals stdenv.hostPlatform.isDarwin [ libiconv ]
+6 -4
pkgs/tools/misc/kcollectd/default.nix
··· 1 1 { 2 2 lib, 3 3 fetchFromGitLab, 4 - mkDerivation, 4 + stdenv, 5 + wrapQtAppsHook, 5 6 qtbase, 6 7 cmake, 7 8 kconfig, ··· 17 18 breeze-icons, 18 19 }: 19 20 20 - mkDerivation rec { 21 + stdenv.mkDerivation rec { 21 22 pname = "kcollectd"; 22 - version = "0.12.1"; 23 + version = "0.12.2"; 23 24 src = fetchFromGitLab { 24 25 owner = "aerusso"; 25 26 repo = pname; 26 27 rev = "v${version}"; 27 - hash = "sha256-bUVL5eRQ5UkSZo562pnyEcj0fVoSC5WHRq4BfN67jEM="; 28 + hash = "sha256-35zb5Kx0tRP5l0hILdomCu2YSQfng02mbyyAClm4uZs="; 28 29 }; 29 30 30 31 postPatch = lib.optional (!lib.versionOlder rrdtool.version "1.9.0") '' ··· 32 33 ''; 33 34 34 35 nativeBuildInputs = [ 36 + wrapQtAppsHook 35 37 cmake 36 38 extra-cmake-modules 37 39 shared-mime-info
+8 -6
pkgs/tools/networking/openconnect/default.nix
··· 1 1 { 2 2 callPackage, 3 - fetchurl, 3 + fetchFromGitLab, 4 4 }: 5 5 let 6 6 common = opts: callPackage (import ./common.nix opts) { }; 7 7 in 8 8 rec { 9 - openconnect = common rec { 10 - version = "9.12"; 11 - src = fetchurl { 12 - url = "ftp://ftp.infradead.org/pub/openconnect/openconnect-${version}.tar.gz"; 13 - sha256 = "sha256-or7c46pN/nXjbkB+SOjovJHUbe9TNayVZPv5G9SyQT4="; 9 + openconnect = common { 10 + version = "9.12-unstable-2025-01-14"; 11 + src = fetchFromGitLab { 12 + owner = "openconnect"; 13 + repo = "openconnect"; 14 + rev = "f17fe20d337b400b476a73326de642a9f63b59c8"; 15 + hash = "sha256-OBEojqOf7cmGtDa9ToPaJUHrmBhq19/CyZ5agbP7WUw="; 14 16 }; 15 17 }; 16 18
+3 -3
pkgs/tools/package-management/nix/default.nix
··· 210 210 nix_2_29 = addTests "nix_2_29" self.nixComponents_2_29.nix-everything; 211 211 212 212 nixComponents_git = nixDependencies.callPackage ./modular/packages.nix rec { 213 - version = "2.30pre20250624_${lib.substring 0 8 src.rev}"; 213 + version = "2.31pre20250712_${lib.substring 0 8 src.rev}"; 214 214 inherit (self.nix_2_24.meta) maintainers teams; 215 215 otherSplices = generateSplicesForNixComponents "nixComponents_git"; 216 216 src = fetchFromGitHub { 217 217 owner = "NixOS"; 218 218 repo = "nix"; 219 - rev = "448cfb71eafbb3f2932b025aa2600c80b6d383f1"; 220 - hash = "sha256-tk1H8lOA5lIvhNP/izZ6JzT0EuDmCOX5RBhOeHdc2cM="; 219 + rev = "b124512388378cd38c4e353ddb387905d296e877"; 220 + hash = "sha256-asBUtSonedNfMO0/Z6HUi8RK/y/7I1qBDHv2UryichA="; 221 221 }; 222 222 }; 223 223
+1 -5
pkgs/top-level/all-packages.nix
··· 3573 3573 3574 3574 node2nix = nodePackages.node2nix; 3575 3575 3576 - kcollectd = libsForQt5.callPackage ../tools/misc/kcollectd { }; 3576 + kcollectd = kdePackages.callPackage ../tools/misc/kcollectd { }; 3577 3577 3578 3578 ktailctl = kdePackages.callPackage ../applications/networking/ktailctl { }; 3579 3579 ··· 8655 8655 inherit (lomiri) cmake-extras; 8656 8656 }; 8657 8657 8658 - libremines = qt6.callPackage ../games/libremines { }; 8659 - 8660 8658 librepo = callPackage ../tools/package-management/librepo { }; 8661 8659 8662 8660 libretranslate = with python3.pkgs; toPythonApplication libretranslate; ··· 11229 11227 sddm-chili-theme = libsForQt5.callPackage ../data/themes/chili-sddm { }; 11230 11228 11231 11229 sddm-sugar-dark = libsForQt5.callPackage ../data/themes/sddm-sugar-dark { }; 11232 - 11233 - sdrangel = qt6Packages.callPackage ../applications/radio/sdrangel { }; 11234 11230 11235 11231 sgx-sdk = callPackage ../os-specific/linux/sgx/sdk { }; 11236 11232