mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 09:53:17 +00:00
42 lines
975 B
Nix
42 lines
975 B
Nix
|
{ stdenv
|
||
|
, fetchFromGitHub
|
||
|
, cmake
|
||
|
, asio
|
||
|
, openssl
|
||
|
, patches
|
||
|
}:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "restbed-${version}";
|
||
|
version = "2016-09-15";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "Corvusoft";
|
||
|
repo = "restbed";
|
||
|
rev = "34187502642144ab9f749ab40f5cdbd8cb17a54a";
|
||
|
sha256 = "1jb38331fcicyiisqdprhq6zwfc6g518fm3l4qw9aiv5k9nqim22";
|
||
|
};
|
||
|
|
||
|
inherit patches;
|
||
|
|
||
|
buildInputs = [
|
||
|
cmake
|
||
|
asio
|
||
|
openssl
|
||
|
];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
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.
|
||
|
'';
|
||
|
homepage = https://corvusoft.co.uk/;
|
||
|
license = licenses.agpl;
|
||
|
maintainers = with maintainers; [ taeer ];
|
||
|
platforms = platforms.linux;
|
||
|
};
|
||
|
}
|