summary refs log tree commit diff
path: root/pkgs/development/libraries/restinio/default.nix
blob: 632ec0696eece44ca57546e9d115a59bc097d19f (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
{ lib, fetchzip }:

let
  pname = "restinio";
  version = "0.6.16";
in
fetchzip {
  name = "${pname}-${version}";
  url = "https://github.com/Stiffstream/restinio/releases/download/v.${version}/${pname}-${version}.tar.bz2";
  hash = "sha256-tl9HUsT9mCupuwp6T4dbPdYOQy3vYyctuwFQPfR8m0Y=";

  stripRoot = false;
  postFetch = ''
    mkdir -p $out/include
    mv $out/restinio-*/dev/restinio $out/include
    rm -r $out/restinio-*
  '';

  meta = with lib; {
    description = "Cross-platform, efficient, customizable, and robust asynchronous HTTP/WebSocket server C++14 library";
    homepage = "https://github.com/Stiffstream/restinio";
    license = licenses.bsd3;
    platforms = platforms.all;
  };
}