about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/web/kore/default.nix
blob: b0dc2ba041af01eb331b7dcfaf4334ad838a0e07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ stdenv, fetchFromGitHub, openssl }:

stdenv.mkDerivation rec {
  name = "kore-${version}";
  version = "2.0.0";

  src = fetchFromGitHub {
    owner = "jorisvink";
    repo = "kore";
    rev = "${version}-release";
    sha256 = "1jjhx9gfjzpsrs7b9rgb46k6v03azrxz9fq7vkn9zyz6zvnjj614";
  };

  buildInputs = [ openssl ];

  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
  '';

  makeFlags = [ "PREFIX=$(out)" ];

  # 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";

  enableParallelBuilding = true;

  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 ];
  };
}