Unverified Commit 47460526 authored by Erik Arvstedt's avatar Erik Arvstedt
Browse files

clboss: 0.13.3 -> 0.14.0

parent f7dbf14e
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
{ 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 ];