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:
parent
35c5863c29
commit
4d4f3d1b79
1 changed files with 10 additions and 6 deletions
|
@ -1,6 +1,8 @@
|
||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
, fetchurl
|
, fetchFromGitHub
|
||||||
|
, autoconf-archive
|
||||||
|
, autoreconfHook
|
||||||
, pkg-config
|
, pkg-config
|
||||||
, curlWithGnuTls
|
, curlWithGnuTls
|
||||||
, libev
|
, libev
|
||||||
|
@ -9,14 +11,16 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "clboss";
|
pname = "clboss";
|
||||||
version = "0.12";
|
version = "0.13";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/ZmnSCPxj/clboss/releases/download/${version}/clboss-${version}.tar.gz";
|
owner = "ZmnSCPxj";
|
||||||
hash = "sha256-UZcSfbpp3vPsD3CDukp+r5Z60h0UEWTduqF4DhJ+H2U=";
|
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;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue