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
50
51
52
53
54
55
56
57
58
59
60
61
|
{ lib
, stdenv
, bzip2
, cjson
, cmake
, curl
, docutils
, fetchFromGitHub
, libarchive
, libev
, libgccjit
, libssh
, lz4
, openssl
, systemd
, zlib
, zstd
}:
stdenv.mkDerivation rec {
pname = "pgmoneta";
version = "0.11.1";
src = fetchFromGitHub {
owner = "pgmoneta";
repo = "pgmoneta";
rev = version;
hash = "sha256-+2pS3KG5wwP7bnaV+x8WxvDvQuXqmiMbuLScMNLqBtI=";
};
nativeBuildInputs = [
cmake
docutils # for rst2man
];
buildInputs = [
bzip2
cjson
curl
libarchive
libev
libgccjit
libssh
lz4
openssl
systemd
zlib
zstd
];
env.NIX_CFLAGS_COMPILE = "-Wno-error";
meta = with lib; {
description = "Backup / restore solution for PostgreSQL";
homepage = "https://pgmoneta.github.io/";
changelog = "https://github.com/pgmoneta/pgmoneta/releases/tag/${version}";
license = licenses.bsd3;
maintainers = [ ];
platforms = platforms.linux;
};
}
|