Merge pull request #140439 from linsui/restinio

restinio: init 0.6.13
This commit is contained in:
Sandro 2021-10-05 22:08:43 +02:00 committed by GitHub
commit f9ac86df6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, fetchzip }:
let
pname = "restinio";
version = "0.6.13";
in
fetchzip {
name = "${pname}-${version}";
url = "https://github.com/Stiffstream/restinio/releases/download/v.${version}/${pname}-${version}-full.tar.bz2";
sha256 = "0cwbd5ni5pm25c7njs3wllrblb2i853ibjvpbb1iicy833zais8d";
postFetch = ''
mkdir -p $out/include/restinio
tar -xjf $downloadedFile --strip-components=3 -C $out/include/restinio --wildcards "*/dev/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;
};
}

View file

@ -18954,6 +18954,8 @@ with pkgs;
resolv_wrapper = callPackage ../development/libraries/resolv_wrapper { };
restinio = callPackage ../development/libraries/restinio {};
rhino = callPackage ../development/libraries/java/rhino {
javac = jdk8;
jvm = jre8;