clboss: 0.12 -> 0.13

Changes: https://github.com/ZmnSCPxj/clboss/releases/tag/v0.13

Without the update the build fails on `master` against `gcc-13` as
https://hydra.nixos.org/build/249004612:

    In file included from dev-proxy-connect.cpp:3:
    Net/SocketFd.hpp:42:37: error: 'uint8_t' is not a member of 'std'; did you mean 'wint_t'?
       42 |         void write(std::vector<std::uint8_t> const&);
          |                                     ^~~~~~~
          |                                     wint_t
This commit is contained in:
Sergei Trofimovich 2024-02-18 17:12:02 +00:00
parent 35c5863c29
commit 4d4f3d1b79

View File

@ -1,6 +1,8 @@
{ lib
, stdenv
, fetchurl
, fetchFromGitHub
, autoconf-archive
, autoreconfHook
, pkg-config
, curlWithGnuTls
, libev
@ -9,14 +11,16 @@
stdenv.mkDerivation rec {
pname = "clboss";
version = "0.12";
version = "0.13";
src = fetchurl {
url = "https://github.com/ZmnSCPxj/clboss/releases/download/${version}/clboss-${version}.tar.gz";
hash = "sha256-UZcSfbpp3vPsD3CDukp+r5Z60h0UEWTduqF4DhJ+H2U=";
src = fetchFromGitHub {
owner = "ZmnSCPxj";
repo = "clboss";
rev = "v${version}";
hash = "sha256-NP9blymdqDXo/OtGLQg/MXK24PpPvCrzqXRdtfCvpfI=";
};
nativeBuildInputs = [ pkg-config libev curlWithGnuTls sqlite ];
nativeBuildInputs = [ autoconf-archive autoreconfHook pkg-config libev curlWithGnuTls sqlite ];
enableParallelBuilding = true;