about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/networking/instant-messengers/ring-daemon/restbed.nix
blob: d4298a3d32f3e79d10b0be27f9f6e3b5011f37ea (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
{ stdenv
, fetchFromGitHub
, cmake
, asio
, openssl
, patches
}:

stdenv.mkDerivation {
  pname = "restbed";
  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.agpl3;
    maintainers = with maintainers; [ taeer ];
    platforms = platforms.linux;
  };
}