about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/li/libhttpserver/package.nix
blob: d8e6ce8c3ab5a2949460f72102a03845851ed298 (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
37
38
39
40
41
42
43
44
45
46
{ stdenv
, lib
, fetchFromGitHub
, autoconf
, automake
, libtool
, gnutls
, libmicrohttpd
}:

stdenv.mkDerivation rec {
  pname = "libhttpserver";
  version = "0.19.0";

  src = fetchFromGitHub {
    owner = "etr";
    repo = pname;
    rev = version;
    sha256 = "sha256-Pc3Fvd8D4Ymp7dG9YgU58mDceOqNfhWE1JtnpVaNx/Y=";
  };

  nativeBuildInputs = [ autoconf automake libtool ];

  buildInputs = [ gnutls libmicrohttpd ];

  enableParallelBuilding = true;

  postPatch = ''
    patchShebangs ./bootstrap
  '';

  preConfigure = ''
    ./bootstrap
  '';

  configureFlags = [ "--enable-same-directory-build" ];

  meta = with lib; {
    description = "C++ library for creating an embedded Rest HTTP server (and more)";
    homepage = "https://github.com/etr/libhttpserver";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ pongo1231 ];
    platforms = platforms.unix;
    broken = stdenv.isDarwin; # configure: error: cannot find required auxiliary files: ltmain.sh
  };
}