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";
|
2020-09-09 19:43:26 +00:00
|
|
|
version = "4.0.1";
|
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;
|
|
|
|
sha256 = "0186lih30zps2d4600ikafbgsml269jzpcszdggzzkdw8p628qw9";
|
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
|
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isGNU "-Wno-error=pointer-compare"
|
|
|
|
+ stdenv.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 ];
|
|
|
|
};
|
|
|
|
}
|