2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, openssl, curl, postgresql, yajl }:
|
2017-10-01 16:52:14 +00:00
|
|
|
|
2017-10-01 18:43:22 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-05-22 12:58:06 +00:00
|
|
|
pname = "kore";
|
2022-08-24 14:28:10 +00:00
|
|
|
version = "4.2.3";
|
2017-10-01 16:52:14 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jorisvink";
|
2019-05-22 12:58:06 +00:00
|
|
|
repo = pname;
|
2020-09-09 19:43:26 +00:00
|
|
|
rev = version;
|
2022-08-24 14:28:10 +00:00
|
|
|
sha256 = "sha256-p0M2P02xwww5EnT28VnEtj5b+/jkPW3YkJMuK79vp4k=";
|
2017-10-01 16:52:14 +00:00
|
|
|
};
|
|
|
|
|
2020-09-09 19:43:26 +00:00
|
|
|
buildInputs = [ openssl curl postgresql yajl ];
|
2017-10-01 18:43:22 +00:00
|
|
|
|
2020-09-09 19:43:26 +00:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=${placeholder "out"}"
|
|
|
|
"ACME=1"
|
|
|
|
"CURL=1"
|
|
|
|
"TASKS=1"
|
|
|
|
"PGSQL=1"
|
|
|
|
"JSONRPC=1"
|
|
|
|
"DEBUG=1"
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
make platform.h
|
|
|
|
'';
|
2017-10-01 16:52:14 +00:00
|
|
|
|
2018-03-19 22:55:59 +00:00
|
|
|
# added to fix build w/gcc7 and clang5
|
2023-02-19 19:23:32 +00:00
|
|
|
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isGNU "-Wno-error=pointer-compare"
|
2021-01-23 17:15:07 +00:00
|
|
|
+ lib.optionalString stdenv.cc.isClang " -Wno-error=unknown-warning-option";
|
2018-03-10 17:02:05 +00:00
|
|
|
|
2017-10-01 18:43:22 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-10-01 16:52:14 +00:00
|
|
|
description = "An easy to use web application framework for C";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://kore.io";
|
2017-10-01 16:52:14 +00:00
|
|
|
license = licenses.isc;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ johnmh ];
|
|
|
|
};
|
|
|
|
}
|