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

36 lines
917 B
Nix
Raw Normal View History

2017-10-01 16:52:14 +00:00
{ stdenv, fetchFromGitHub, openssl }:
2017-10-01 18:43:22 +00:00
stdenv.mkDerivation rec {
name = "kore-${version}";
version = "2.0.0";
2017-10-01 16:52:14 +00:00
src = fetchFromGitHub {
owner = "jorisvink";
repo = "kore";
2017-10-01 18:43:22 +00:00
rev = "${version}-release";
2017-10-01 16:52:14 +00:00
sha256 = "1jjhx9gfjzpsrs7b9rgb46k6v03azrxz9fq7vkn9zyz6zvnjj614";
};
buildInputs = [ openssl ];
2017-10-01 18:43:22 +00:00
postPatch = ''
# Do not require kore to be on PATH when it launches itself as a subprocess.
sed -ie "s+\"kore\"+\"$out/bin/kore\"+" src/cli.c
'';
2017-10-01 16:52:14 +00:00
makeFlags = [ "PREFIX=$(out)" ];
2018-03-10 17:02:05 +00:00
# added to fix build w/gcc7
2018-03-10 18:36:14 +00:00
NIX_CFLAGS_COMPILE = stdenv.lib.optionals stdenv.isLinux [ "-Wno-error=pointer-compare" ];
2018-03-10 17:02:05 +00:00
2017-10-01 18:43:22 +00:00
enableParallelBuilding = true;
2017-10-01 16:52:14 +00:00
meta = with stdenv.lib; {
description = "An easy to use web application framework for C";
homepage = https://kore.io;
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ johnmh ];
};
}