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

32 lines
861 B
Nix
Raw Normal View History

2017-10-01 18:52:14 +02:00
{ stdenv, fetchFromGitHub, openssl }:
2017-10-01 20:43:22 +02:00
stdenv.mkDerivation rec {
pname = "kore";
2019-06-04 23:31:51 +02:00
version = "3.3.1";
2017-10-01 18:52:14 +02:00
src = fetchFromGitHub {
owner = "jorisvink";
repo = pname;
2017-10-01 20:43:22 +02:00
rev = "${version}-release";
2019-06-04 23:31:51 +02:00
sha256 = "0jlvry9p1f7284cscfsg04ngbaq038yx3nz815jcr5s3d2jzps3h";
2017-10-01 18:52:14 +02:00
};
buildInputs = [ openssl ];
2017-10-01 20:43:22 +02:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
2017-10-01 18:52:14 +02:00
2018-03-19 23:55:59 +01: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 18:02:05 +01:00
2017-10-01 20:43:22 +02:00
enableParallelBuilding = true;
2017-10-01 18:52:14 +02: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 ];
};
}