clboss: 0.13.3 -> 0.14.0 (#348506)

This commit is contained in:
Pavol Rusnak
2024-10-14 14:58:38 +02:00
committed by GitHub
@@ -1,6 +1,6 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchzip
, autoconf-archive
, autoreconfHook
, pkg-config
@@ -11,13 +11,12 @@
stdenv.mkDerivation rec {
pname = "clboss";
version = "0.13.3";
version = "0.14.0";
src = fetchFromGitHub {
owner = "ZmnSCPxj";
repo = "clboss";
rev = "v${version}";
hash = "sha256-T61rkTEGLCZrEBp1WFhHnQ7DQyhctMf5lgbOs6u9E0o=";
# The release tarball includes the pre-generated file `commit_hash.h` that is required for building
src = fetchzip {
url = "https://github.com/ZmnSCPxj/clboss/releases/download/v${version}/clboss-v${version}.tar.gz";
hash = "sha256-Qp8br4ZxiqaxFZ6Tb+wFpqp2APmnU9QdNkM8MyGAtrw=";
};
nativeBuildInputs = [ autoconf-archive autoreconfHook pkg-config libev curlWithGnuTls sqlite ];