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

32 lines
863 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 {
pname = "kore";
2019-06-04 21:31:51 +00:00
version = "3.3.1";
2017-10-01 16:52:14 +00:00
src = fetchFromGitHub {
owner = "jorisvink";
repo = pname;
2017-10-01 18:43:22 +00:00
rev = "${version}-release";
2019-06-04 21:31:51 +00:00
sha256 = "0jlvry9p1f7284cscfsg04ngbaq038yx3nz815jcr5s3d2jzps3h";
2017-10-01 16:52:14 +00:00
};
buildInputs = [ openssl ];
2017-10-01 18:43:22 +00:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
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;
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";
2017-10-01 16:52:14 +00:00
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ johnmh ];
};
}