blob: 6079585e5d29a2a698147e417bd4397b22cc9bae (
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
42
43
44
45
46
47
48
49
|
{ stdenv
, fetchFromGitHub
, cmake
, libopus
, openssl
, zlib
, libsodium
, pkg-config
, autoPatchelfHook
, lib
}:
stdenv.mkDerivation (finalAttrs: {
pname = "dpp";
version = "10.0.30";
src = fetchFromGitHub {
owner = "brainboxdotcc";
repo = "DPP";
rev = "v${finalAttrs.version}";
hash = "sha256-FW1DKbVwPPlvLtv8XzpqaAZjS1y5hasq3Rhh2u08Sz0=";
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
openssl
zlib
libsodium
libopus
];
meta = {
description = "Discord C++ Library";
longDescription = ''
D++ (DPP) is a lightweight and simple library for Discord written in modern C++.
It is designed to cover as much of the API specification as possible and to have
an incredibly small memory footprint, even when caching large amounts of data.
This package contains version ${finalAttrs.version} of the DPP library.
'';
homepage = "https://github.com/brainboxdotcc/DPP";
changelog = "https://github.com/brainboxdotcc/DPP/releases/tag/${finalAttrs.src.rev}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ xbz ];
platforms = lib.platforms.linux;
};
})
|