Merge release-23.05 into staging-next-23.05

This commit is contained in:
github-actions[bot]
2023-08-24 00:11:38 +00:00
committed by GitHub
3 changed files with 13 additions and 4 deletions

View File

@@ -3,6 +3,7 @@
, autoconf
, automake
, fetchFromGitHub
, fetchpatch
, libpcap
, ncurses
, openssl
@@ -20,6 +21,14 @@ stdenv.mkDerivation rec {
sha256 = "sha256-gFba2wOU4GwpOZTo5A2QpBgnC6OgDJEeyaPGHbA+7tA=";
};
patches = [
(fetchpatch {
name = "CVE-2023-36192.patch";
url = "https://github.com/irontec/sngrep/commit/ad1daf15c8387bfbb48097c25197bf330d2d98fc.patch";
hash = "sha256-g8fxvxi3d7jmZEKTbxqw29hJbm/ShsKKxstsOUGxTug=";
})
];
nativeBuildInputs = [
autoconf
automake

View File

@@ -28,7 +28,7 @@ let
else llvmPackages.stdenv).mkDerivation;
in mkDerivation rec {
pname = "clickhouse";
version = "23.3.8.21";
version = "23.3.10.5";
src = fetchFromGitHub rec {
owner = "ClickHouse";
@@ -36,7 +36,7 @@ in mkDerivation rec {
rev = "v${version}-lts";
fetchSubmodules = true;
name = "clickhouse-${rev}.tar.gz";
hash = "sha256-bynr196H6g/GmvNTtrfB6QDdAScvYvbe7EIceoOwCKc=";
hash = "sha256-xvmZOJqXrGToQRoEl+4AL9ewUhNdKGZFnCdBnSlB+tk=";
postFetch = ''
# delete files that make the source too big
rm -rf $out/contrib/llvm-project/llvm/test

View File

@@ -4,11 +4,11 @@ with python3.pkgs;
buildPythonApplication rec {
pname = "pipreqs";
version = "0.4.11";
version = "0.4.13";
src = fetchPypi {
inherit pname version;
sha256 = "c793b4e147ac437871b3a962c5ce467e129c859ece5ba79aca83c20f4d9c3aef";
hash = "sha256-oX8WeIC2khvjdTPOTIHdxuIrRlwQeq1VfbQ7Gt1WqZs=";
};
propagatedBuildInputs = [ yarg docopt ];