Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub ba27c024 3c57389c

+97 -19
+5 -7
pkgs/applications/networking/cluster/cloudfoundry-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cloudfoundry-cli"; 5 - version = "7.3.0"; 5 + version = "8.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cloudfoundry"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-I+4tFAMmmsmi5WH9WKXIja1vVWsPHNGkWbvjWGUCmkU="; 11 + sha256 = "00cwnfylra0msbb423ad21if98s6smzccsyidqsl4r2mrlkhahwm"; 12 12 }; 13 - # vendor directory stale 14 - deleteVendor = true; 15 - vendorSha256 = null; 13 + vendorSha256 = "0fcgyyd11xfhn8i11bqnaw3h51bj1y8s37b4d8wzv31dr8zswqsc"; 16 14 17 15 subPackages = [ "." ]; 18 16 19 17 # upstream have helpfully moved the bash completion script to a separate 20 18 # repo which receives no releases or even tags 21 19 bashCompletionScript = fetchurl { 22 - url = "https://raw.githubusercontent.com/cloudfoundry/cli-ci/6087781a0e195465a35c79c8e968ae708c6f6351/ci/installers/completion/cf7"; 23 - sha256 = "1vhg9jcgaxcvvb4pqnhkf27b3qivs4d3w232j0gbh9393m3qxrvy"; 20 + url = "https://raw.githubusercontent.com/cloudfoundry/cli-ci/5f4f0d5d01e89c6333673f0fa96056749e71b3cd/ci/installers/completion/cf8"; 21 + sha256 = "06w26kpnjd3f2wdjhb4pp0kaq2gb9kf87v7pjd9n2g7s7qhdqyhy"; 24 22 }; 25 23 26 24 nativeBuildInputs = [ installShellFiles ];
+2 -2
pkgs/applications/networking/instant-messengers/bluejeans/default.nix
··· 44 44 45 45 stdenv.mkDerivation rec { 46 46 pname = "bluejeans"; 47 - version = "2.23.0.39"; 47 + version = "2.24.0.89"; 48 48 49 49 src = fetchurl { 50 50 url = "https://swdl.bluejeans.com/desktop-app/linux/${getFirst 3 version}/BlueJeans_${version}.rpm"; 51 - sha256 = "sha256-LGg14KJ/hEnSaSrdTltY9YXv7Nekkfo66uLkxjMx8AI="; 51 + sha256 = "sha256-rneX8ys/oKfVLavAZk5RJouOZkVsp+9BIAReSeYiKJc="; 52 52 }; 53 53 54 54 nativeBuildInputs = [ rpmextract makeWrapper ];
+6 -6
pkgs/applications/video/kodi/unwrapped.nix
··· 38 38 assert gbmSupport || waylandSupport || x11Support; 39 39 40 40 let 41 - kodiReleaseDate = "20210508"; 42 - kodiVersion = "19.1"; 41 + kodiReleaseDate = "20211006"; 42 + kodiVersion = "19.2"; 43 43 rel = "Matrix"; 44 44 45 45 kodi_src = fetchFromGitHub { 46 46 owner = "xbmc"; 47 47 repo = "xbmc"; 48 48 rev = "${kodiVersion}-${rel}"; 49 - sha256 = "0jh67vw3983lnfgqzqfislawwbpq0vxxk1ljsg7mar06mlwfxb7h"; 49 + sha256 = "0qc3rf6fv6k35iq5p0j86kpyghzl9djqxl6526fxknvrlw0xnh9j"; 50 50 }; 51 51 52 52 ffmpeg = stdenv.mkDerivation rec { 53 53 pname = "kodi-ffmpeg"; 54 - version = "4.3.1"; 54 + version = "4.3.2"; 55 55 src = fetchFromGitHub { 56 56 owner = "xbmc"; 57 57 repo = "FFmpeg"; 58 - rev = "${version}-${rel}-Beta1"; 59 - sha256 = "1c5rwlxn6xj501iw7masdv2p6wb9rkmd299lmlkx97sw1kvxvg2w"; 58 + rev = "${version}-${rel}-${kodiVersion}"; 59 + sha256 = "14s215sgc93ds1mrdbkgb7fvy94lpgv2ldricyxzis0gbzqfgs4f"; 60 60 }; 61 61 preConfigure = '' 62 62 cp ${kodi_src}/tools/depends/target/ffmpeg/{CMakeLists.txt,*.cmake} .
+2 -2
pkgs/development/tools/pypi-mirror/default.nix
··· 4 4 }: 5 5 python3.pkgs.buildPythonApplication rec { 6 6 pname = "pypi-mirror"; 7 - version = "4.0.6"; 7 + version = "4.0.7"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "montag451"; 11 11 repo = pname; 12 12 rev = "v${version}"; 13 - sha256 = "0slh8ahywcgbggfcmzyqpb8bmq9dkk6vvjfkbi0ashnm8c6x19vd"; 13 + sha256 = "0sjzjvq2jnsr5mfyvkww3rfk3k5xcl8wa07q614850m0sn907laz"; 14 14 }; 15 15 16 16 pythonImportsCheck = [ "pypi_mirror" ];
+2 -2
pkgs/os-specific/linux/sysvinit/default.nix
··· 1 1 { lib, stdenv, fetchurl, withoutInitTools ? false }: 2 2 3 - let version = "2.99"; in 3 + let version = "3.00"; in 4 4 5 5 stdenv.mkDerivation { 6 6 name = (if withoutInitTools then "sysvtools" else "sysvinit") + "-" + version; 7 7 8 8 src = fetchurl { 9 9 url = "mirror://savannah/sysvinit/sysvinit-${version}.tar.xz"; 10 - sha256 = "sha256-sFw2d7tpiv5kyZeWiwDEmyqb0yDOljUjIw7n6kEZd1c="; 10 + sha256 = "sha256-7WvCCttnNTiYQefT64ZQ+nUMdq8gv07XOxMwpNTBQBc="; 11 11 }; 12 12 13 13 prePatch = ''
+45
pkgs/tools/misc/dialogbox/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitHub 4 + , qmake 5 + , qtbase 6 + }: 7 + 8 + mkDerivation rec { 9 + pname = "dialogbox"; 10 + version = "1.0+unstable=2020-11-16"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "martynets"; 14 + repo = pname; 15 + rev = "6989740746f376becc989ab2698e77d14186a0f9"; 16 + hash = "sha256-paTas3KbV4yZ0ePnrOH1S3bLLHDddFml1h6b6azK4RQ="; 17 + }; 18 + 19 + nativeBuildInputs = [ 20 + qmake 21 + ]; 22 + 23 + buildInputs = [ 24 + qtbase 25 + ]; 26 + 27 + installPhase = '' 28 + runHook preInstall 29 + 30 + install -d $out/{bin,share/doc/dialogbox} 31 + install dist/dialogbox $out/bin 32 + install README.md $out/share/doc/dialogbox/ 33 + cp -r demos $out/share/doc/dialogbox/demos 34 + 35 + runHook postInstall 36 + ''; 37 + 38 + meta = with lib; { 39 + homepage = "https://github.com/martynets/dialogbox/"; 40 + description = "Qt-based scriptable engine providing GUI dialog boxes"; 41 + license = licenses.gpl3Plus; 42 + maintainers = with maintainers; [ AndersonTorres ]; 43 + platforms = platforms.unix; 44 + }; 45 + }
+29
pkgs/tools/security/cdk-go/default.nix
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "cdk-go"; 8 + version = "1.0.4"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "cdk-team"; 12 + repo = "CDK"; 13 + rev = "v${version}"; 14 + sha256 = "1zz9jaz5nlvs52nqlaisivrnz7lz8g48qii0n2s1783a5jpkk9ml"; 15 + }; 16 + 17 + vendorSha256 = "0sn709mbhfymwwfdqc5xpdz2lgimqx3xycfmq24vbfmlh8wqcs7l"; 18 + 19 + # At least one test is outdated 20 + doCheck = false; 21 + 22 + meta = with lib; { 23 + description = "Container penetration toolkit"; 24 + homepage = "https://github.com/cdk-team/CDK"; 25 + license = with licenses; [ gpl2Only ]; 26 + maintainers = with maintainers; [ fab ]; 27 + mainProgram = "cdk"; 28 + }; 29 + }
+1
pkgs/tools/text/gnused/422.nix
··· 29 29 30 30 platforms = lib.platforms.all; 31 31 maintainers = [ ]; 32 + mainProgram = "sed"; 32 33 }; 33 34 }
+1
pkgs/tools/text/gnused/default.nix
··· 34 34 35 35 platforms = lib.platforms.unix; 36 36 maintainers = with lib.maintainers; [ mic92 ]; 37 + mainProgram = "sed"; 37 38 }; 38 39 }
+4
pkgs/top-level/all-packages.nix
··· 2601 2601 2602 2602 dialog = callPackage ../tools/misc/dialog { }; 2603 2603 2604 + dialogbox = libsForQt5.callPackage ../tools/misc/dialogbox { }; 2605 + 2604 2606 dibbler = callPackage ../tools/networking/dibbler { }; 2605 2607 2606 2608 diesel-cli = callPackage ../development/tools/diesel-cli { ··· 15491 15493 cddlib = callPackage ../development/libraries/cddlib {}; 15492 15494 15493 15495 cdk = callPackage ../development/libraries/cdk {}; 15496 + 15497 + cdk-go = callPackage ../tools/security/cdk-go {}; 15494 15498 15495 15499 cdo = callPackage ../development/libraries/cdo { }; 15496 15500