nixpkgs/pkgs/development/web/kore/default.nix

44 lines
1 KiB
Nix
Raw Normal View History

{ 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 {
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";
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;
meta = with lib; {
2017-10-01 16:52:14 +00:00
description = "An easy to use web application framework for C";
homepage = "https://kore.io";
2017-10-01 16:52:14 +00:00
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ johnmh ];
};
}