Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub d8e43e21 66bfbfb6

+188 -59
+24
pkgs/applications/misc/limesctl/default.nix
··· 1 + { lib, buildGoModule, fetchFromGitHub }: 2 + 3 + buildGoModule rec { 4 + pname = "limesctl"; 5 + version = "2.0.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "sapcc"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-fhmGVgJ/4xnf6pe8aXxx1KEmLInxm54my+qgSU4Vc/k="; 12 + }; 13 + 14 + vendorSha256 = "sha256-9MlymY5gM9/K2+7/yTa3WaSIfDJ4gRf33vSCwdIpNqw="; 15 + 16 + subPackages = [ "." ]; 17 + 18 + meta = with lib; { 19 + description = "CLI for Limes"; 20 + homepage = "https://github.com/sapcc/limesctl"; 21 + license = licenses.asl20; 22 + maintainers = with maintainers; [ SuperSandro2000 ]; 23 + }; 24 + }
+9 -9
pkgs/applications/networking/browsers/chromium/upstream-info.json
··· 18 18 } 19 19 }, 20 20 "beta": { 21 - "version": "95.0.4638.17", 22 - "sha256": "1v5r8m3wlwh6prcj7bd4zprsr4g43869lhxv43m207c5nlnqiriz", 23 - "sha256bin64": "0h88gd8y4i2jmvhiwadbq6hzqygddym8jy1fhzp8qnwfhc30qm4m", 21 + "version": "95.0.4638.32", 22 + "sha256": "1w904axixagn6gqcb90849q3qy0k3c6lgl0c97cb6m78l9xrrnbr", 23 + "sha256bin64": "1z7xx608sh8agdl98r7xk7s43d3qnfpd1jvgbl7l8fqd85ns11i0", 24 24 "deps": { 25 25 "gn": { 26 26 "version": "2021-08-11", ··· 31 31 } 32 32 }, 33 33 "dev": { 34 - "version": "96.0.4651.0", 35 - "sha256": "0da1mhz3cy0k2igdh208i28k8fxca0yjfypvmj7624p7igrp4an6", 36 - "sha256bin64": "1gslpdnpjp7w40lsl748rmbkbs31v22f2x45gahrijkvfrkgdqp9", 34 + "version": "96.0.4655.0", 35 + "sha256": "00gax7xqi1n4jiqwpff43c43mpqb5jakckwdfbgwhrp6h35xxdv1", 36 + "sha256bin64": "1xyyz6p4qllzyd6wbdbhs6kp062dz40i03wrlsggb919bgp7ivnw", 37 37 "deps": { 38 38 "gn": { 39 - "version": "2021-08-11", 39 + "version": "2021-09-13", 40 40 "url": "https://gn.googlesource.com/gn", 41 - "rev": "69ec4fca1fa69ddadae13f9e6b7507efa0675263", 42 - "sha256": "031znmkbm504iim5jvg3gmazj4qnkfc7zg8aymjsij18fhf7piz0" 41 + "rev": "de86ec4176235871a7cb335756987e41246dae4a", 42 + "sha256": "0mlnsqcj06azz5cpwlafi5gg6pvf2s6x9qq02zl1sm2h288y152g" 43 43 } 44 44 } 45 45 },
+9 -6
pkgs/applications/video/haruna/default.nix
··· 1 1 { lib 2 - , fetchFromGitHub 2 + , fetchFromGitLab 3 3 , mkDerivation 4 4 , breeze-icons 5 5 , breeze-qt5 6 6 , cmake 7 7 , extra-cmake-modules 8 + , ffmpeg-full 8 9 , kcodecs 9 10 , kconfig 10 11 , kcoreaddons ··· 26 27 27 28 mkDerivation rec { 28 29 pname = "haruna"; 29 - version = "0.6.3"; 30 + version = "0.7.2"; 30 31 31 - src = fetchFromGitHub { 32 - owner = "g-fb"; 32 + src = fetchFromGitLab { 33 + owner = "multimedia"; 33 34 repo = "haruna"; 34 - rev = version; 35 - sha256 = "sha256-gJCLc8qJolv4Yufm/OBCTTEpyoodtySAqKH+zMHCoLU="; 35 + rev = "v${version}"; 36 + sha256 = "sha256-0s4v3YJhSssp2S9mppMXq0AtWXPIaqOYWPmJgKjXjDE="; 37 + domain = "invent.kde.org"; 36 38 }; 37 39 38 40 buildInputs = [ 39 41 breeze-icons 40 42 breeze-qt5 43 + ffmpeg-full 41 44 kcodecs 42 45 kconfig 43 46 kcoreaddons
-24
pkgs/development/python-modules/WazeRouteCalculator/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi 2 - , requests }: 3 - 4 - buildPythonPackage rec { 5 - pname = "WazeRouteCalculator"; 6 - version = "0.12"; 7 - 8 - src = fetchPypi { 9 - inherit pname version; 10 - sha256 = "889fe753a530b258bd23def65616666d32c48d93ad8ed211dadf2ed9afcec65b"; 11 - }; 12 - 13 - propagatedBuildInputs = [ requests ]; 14 - 15 - # there are no tests 16 - doCheck = false; 17 - 18 - meta = with lib; { 19 - description = "Calculate actual route time and distance with Waze API"; 20 - homepage = "https://github.com/kovacsbalu/WazeRouteCalculator"; 21 - license = licenses.gpl3; 22 - maintainers = with maintainers; [ peterhoeg ]; 23 - }; 24 - }
+2 -2
pkgs/development/python-modules/ephem/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "ephem"; 11 - version = "4.0.0.2"; 11 + version = "4.1"; 12 12 13 13 src = fetchPypi { 14 14 inherit pname version; 15 - sha256 = "sha256-0D3nPr9qkWgdWX61tdQ7z28MZ+KSu6L5qXRzS08VdX4="; 15 + sha256 = "c076794a511a34b5b91871c1cf6374dbc323ec69fca3f50eb718f20b171259d6"; 16 16 }; 17 17 18 18 checkInputs = [
+2 -2
pkgs/development/python-modules/holidays/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "holidays"; 15 - version = "0.11.3"; 15 + version = "0.11.3.1"; 16 16 disabled = pythonOlder "3.6"; 17 17 18 18 src = fetchPypi { 19 19 inherit pname version; 20 - sha256 = "b7bff8f9d7090656aee3c54c252c9e356785ee566c67de4af800ddbfa888bc77"; 20 + sha256 = "4855afe0ebf428efbcf848477828b889f8515be7f4f15ae26682919369d92774"; 21 21 }; 22 22 23 23 propagatedBuildInputs = [
+37
pkgs/development/python-modules/mbddns/default.nix
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "mbddns"; 10 + version = "0.1.2"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.6"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "thinkl33t"; 17 + repo = "mb-ddns"; 18 + rev = version; 19 + sha256 = "13xzkprqk1v0zlzx4a0n9zzpnlb1g2h6pc62ms66fj72lsmjynj7"; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + aiohttp 24 + ]; 25 + 26 + # Project has no tests 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ "mbddns" ]; 30 + 31 + meta = with lib; { 32 + description = "Mythic Beasts Dynamic DNS updater"; 33 + homepage = "https://github.com/thinkl33t/mb-ddns"; 34 + license = with licenses; [ mit ]; 35 + maintainers = with maintainers; [ fab ]; 36 + }; 37 + }
+2 -2
pkgs/development/python-modules/mypy-boto3-builder/default.nix
··· 15 15 16 16 buildPythonPackage rec { 17 17 pname = "mypy-boto3-builder"; 18 - version = "5.4.0"; 18 + version = "5.5.0"; 19 19 format = "pyproject"; 20 20 21 21 disabled = pythonOlder "3.8"; ··· 24 24 owner = "vemel"; 25 25 repo = "mypy_boto3_builder"; 26 26 rev = version; 27 - sha256 = "sha256-PS2MMpI/ezjHnI6vUoHTt0uuuB/w94OrOYBLNCpSxIE="; 27 + sha256 = "sha256-cFe8d6w28VFTNyj/ABWHkFQDfnM4aTrNZ+WUw5g8H5I="; 28 28 }; 29 29 30 30 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/pycontrol4/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pycontrol4"; 11 - version = "0.1.0"; 11 + version = "0.3.0"; 12 12 13 13 disabled = pythonOlder "3.6"; 14 14 ··· 16 16 owner = "lawtancool"; 17 17 repo = "pyControl4"; 18 18 rev = "v${version}"; 19 - sha256 = "0idw9kv6yxrbp0r33vb1jlzgil20m2rjjfrxhcwxmbjjqv93zn6d"; 19 + sha256 = "sha256-z7MDz9fGwZY4JcqabeYFGZ9nsRU2qa5LYnNQx/ae/4Y="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/pynobo/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "pynobo"; 8 - version = "1.2.0"; 8 + version = "1.3.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "echoromeo"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "0f98qm9vp7f0hqaxhihv7y5swciyp60222la44f4936g0rvs005x"; 14 + sha256 = "sha256-tcDSI5GODV53o4m35B4CXscVCnwt7gqRu7qohEnvyz8="; 15 15 }; 16 16 17 17 # Project has no tests
+2 -2
pkgs/development/python-modules/somecomfort/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "somecomfort"; 10 - version = "0.5.2"; 10 + version = "0.6.0"; 11 11 12 12 src = fetchPypi { 13 13 inherit pname version; 14 - sha256 = "681f44449e8c0a923305aa05aa5262f4d2304a6ecea496caa8d5a51b724a0fef"; 14 + sha256 = "sha256-CbV8NOpCXzVz0dBKhUclUCPrD4530zv5HIYxsbNO+OA="; 15 15 }; 16 16 17 17 propagatedBuildInputs = [
+32
pkgs/development/python-modules/wazeroutecalculator/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , requests 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "wazeroutecalculator"; 9 + version = "0.13"; 10 + 11 + src = fetchPypi { 12 + pname = "WazeRouteCalculator"; 13 + inherit version; 14 + sha256 = "sha256-Ex9yglaJkk0+Uo3Y+xpimb5boXz+4QdbJS2O75U6dUg="; 15 + }; 16 + 17 + propagatedBuildInputs = [ 18 + requests 19 + ]; 20 + 21 + # there are no tests 22 + doCheck = false; 23 + 24 + pythonImportsCheck = [ "WazeRouteCalculator" ]; 25 + 26 + meta = with lib; { 27 + description = "Calculate actual route time and distance with Waze API"; 28 + homepage = "https://github.com/kovacsbalu/WazeRouteCalculator"; 29 + license = licenses.gpl3Only; 30 + maintainers = with maintainers; [ peterhoeg ]; 31 + }; 32 + }
+22
pkgs/development/tools/database/gobang/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "gobang"; 5 + version = "0.1.0-alpha.5"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "tako8ki"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "02glb3hlprpdc72ji0248a7g0vr36yxr0gfbbms2m25v251dyaa6"; 12 + }; 13 + 14 + cargoSha256 = "sha256-Tiefet5gLpiuYY6Scg5fjnaPiZfVl5Gy2oZFdhgNRxY="; 15 + 16 + meta = with lib; { 17 + description = "A cross-platform TUI database management tool written in Rust"; 18 + homepage = "https://github.com/tako8ki/gobang"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ figsoda ]; 21 + }; 22 + }
+2 -2
pkgs/servers/home-assistant/component-packages.nix
··· 551 551 "myq" = ps: with ps; [ pymyq ]; 552 552 "mysensors" = ps: with ps; [ aiohttp-cors paho-mqtt pymysensors ]; 553 553 "mystrom" = ps: with ps; [ aiohttp-cors python-mystrom ]; 554 - "mythicbeastsdns" = ps: with ps; [ ]; # missing inputs: mbddns 554 + "mythicbeastsdns" = ps: with ps; [ mbddns ]; 555 555 "nad" = ps: with ps; [ nad-receiver ]; 556 556 "nam" = ps: with ps; [ nettigo-air-monitor ]; 557 557 "namecheapdns" = ps: with ps; [ defusedxml ]; ··· 961 961 "waterfurnace" = ps: with ps; [ waterfurnace ]; 962 962 "watson_iot" = ps: with ps; [ ]; # missing inputs: ibmiotf 963 963 "watson_tts" = ps: with ps; [ ibm-watson ]; 964 - "waze_travel_time" = ps: with ps; [ WazeRouteCalculator ]; 964 + "waze_travel_time" = ps: with ps; [ wazeroutecalculator ]; 965 965 "weather" = ps: with ps; [ ]; 966 966 "webhook" = ps: with ps; [ aiohttp-cors ]; 967 967 "webostv" = ps: with ps; [ aiopylgtv ];
+1
pkgs/servers/home-assistant/default.nix
··· 522 522 "my" 523 523 "myq" 524 524 "mysensors" 525 + "mythicbeastsdns" 525 526 "nam" 526 527 "namecheapdns" 527 528 "neato"
+2 -2
pkgs/servers/jackett/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "jackett"; 5 - version = "0.18.545"; 5 + version = "0.18.582"; 6 6 7 7 src = fetchurl { 8 8 url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz"; 9 - sha256 = "sha256-aHb7bhqagf60YkzL5II/mGPeUibH655QH8Qx3+EqWjY="; 9 + sha256 = "sha256-WwTeUvBD790CP+mph2xKm/m7csYQgmXgJa4TLn5nsVI="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ makeWrapper ];
+3 -3
pkgs/servers/miniflux/default.nix
··· 2 2 3 3 let 4 4 pname = "miniflux"; 5 - version = "2.0.31"; 5 + version = "2.0.33"; 6 6 7 7 in buildGoModule { 8 8 inherit pname version; ··· 11 11 owner = pname; 12 12 repo = pname; 13 13 rev = version; 14 - sha256 = "sha256-01v5gwUv0SfX/9AJgo4HiBcmoCfQbnKIGcS26IebU2Q="; 14 + sha256 = "0vcfpy71gdvd0z20v6d36l3yvmnm4nmfplivw9yjzv8kbnf9mabc"; 15 15 }; 16 16 17 - vendorSha256 = "sha256-69iTdrjgBmJHeVa8Tq47clQR5Xhy4rWcp2OwS4nIw/c="; 17 + vendorSha256 = "1j4jskcply9mxz9bggw1c6368k22rga6f3f6mgs1pklz5v7r7n2j"; 18 18 19 19 nativeBuildInputs = [ installShellFiles ]; 20 20
+25
pkgs/tools/networking/dnstake/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "dnstake"; 8 + version = "0.0.2"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "pwnesia"; 12 + repo = pname; 13 + rev = "v${version}"; 14 + sha256 = "0mjwnb0zyqnwk26f32v9vqxc9k6zcks9nn1595mf2hck5xwn86yk"; 15 + }; 16 + 17 + vendorSha256 = "1xhzalx1x8js449w1qs2qdwbnz2s8mmypz9maj7jzl5mqfyhlwlp"; 18 + 19 + meta = with lib; { 20 + description = "Tool to check missing hosted DNS zones"; 21 + homepage = "https://github.com/pwnesia/dnstake"; 22 + license = with licenses; [ mit ]; 23 + maintainers = with maintainers; [ fab ]; 24 + }; 25 + }
+6
pkgs/top-level/all-packages.nix
··· 11780 11780 11781 11781 go-junit-report = callPackage ../development/tools/go-junit-report { }; 11782 11782 11783 + gobang = callPackage ../development/tools/database/gobang { }; 11784 + 11783 11785 gogetdoc = callPackage ../development/tools/gogetdoc { }; 11784 11786 11785 11787 gox = callPackage ../development/tools/gox { }; ··· 24781 24783 withPortAudio = stdenv.isDarwin; 24782 24784 }; 24783 24785 24786 + limesctl = callPackage ../applications/misc/limesctl { }; 24787 + 24784 24788 linssid = libsForQt5.callPackage ../applications/networking/linssid { }; 24785 24789 24786 24790 deadd-notification-center = callPackage ../applications/misc/deadd-notification-center/default.nix { }; ··· 32773 32777 duti = callPackage ../os-specific/darwin/duti { 32774 32778 inherit (darwin.apple_sdk.frameworks) ApplicationServices; 32775 32779 }; 32780 + 32781 + dnstake = callPackage ../tools/networking/dnstake {}; 32776 32782 32777 32783 dnstracer = callPackage ../tools/networking/dnstracer { 32778 32784 inherit (darwin) libresolv;
+1
pkgs/top-level/python-aliases.nix
··· 79 79 sphinxcontrib_plantuml = sphinxcontrib-plantuml; 80 80 topydo = throw "python3Packages.topydo was moved to topydo"; # 2017-09-22 81 81 tvnamer = throw "python3Packages.tvnamer was moved to tvnamer"; # 2021-07-05 82 + WazeRouteCalculator = wazeroutecalculator; # 2021-09-29 82 83 websocket_client = websocket-client; 83 84 zc_buildout221 = zc_buildout; # added 2021-07-21 84 85 })
+3 -1
pkgs/top-level/python-packages.nix
··· 4532 4532 inherit (self) pyface pygments numpy vtk traitsui envisage apptools pyqt5; 4533 4533 }; 4534 4534 4535 + mbddns = callPackage ../development/python-modules/mbddns { }; 4536 + 4535 4537 mccabe = callPackage ../development/python-modules/mccabe { }; 4536 4538 4537 4539 mcstatus = callPackage ../development/python-modules/mcstatus { }; ··· 9546 9548 9547 9549 wavedrom = callPackage ../development/python-modules/wavedrom { }; 9548 9550 9549 - WazeRouteCalculator = callPackage ../development/python-modules/WazeRouteCalculator { }; 9551 + wazeroutecalculator = callPackage ../development/python-modules/wazeroutecalculator { }; 9550 9552 9551 9553 wcmatch = callPackage ../development/python-modules/wcmatch { }; 9552 9554