2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv
|
2017-07-11 21:26:42 +01:00
|
|
|
, fetchFromGitHub
|
|
|
|
, cmake
|
|
|
|
, asio
|
|
|
|
, openssl
|
|
|
|
, patches
|
|
|
|
}:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "restbed";
|
2017-07-11 21:26:42 +01:00
|
|
|
version = "2016-09-15";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Corvusoft";
|
|
|
|
repo = "restbed";
|
|
|
|
rev = "34187502642144ab9f749ab40f5cdbd8cb17a54a";
|
|
|
|
sha256 = "1jb38331fcicyiisqdprhq6zwfc6g518fm3l4qw9aiv5k9nqim22";
|
|
|
|
};
|
|
|
|
|
|
|
|
inherit patches;
|
|
|
|
|
2020-12-31 07:48:55 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
buildInputs = [ asio openssl ];
|
2017-07-11 21:26:42 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-07-11 21:26:42 +01:00
|
|
|
description = "HTTP framework for building networked applications";
|
|
|
|
longDescription = ''
|
|
|
|
HTTP framework for building networked applications that require seamless
|
|
|
|
and secure communication, with the flexability to model a range of
|
|
|
|
business processes. Targeting mobile, tablet, desktop, and embedded
|
|
|
|
production environments.
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://corvusoft.co.uk/";
|
2017-07-14 21:54:28 +01:00
|
|
|
license = licenses.agpl3;
|
2017-07-11 21:26:42 +01:00
|
|
|
maintainers = with maintainers; [ taeer ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|