mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 09:34:36 +00:00
pgmoneta: init at 0.7.0
This commit is contained in:
parent
1cd27ac7b4
commit
60cd55da08
61
pkgs/by-name/pg/pgmoneta/package.nix
Normal file
61
pkgs/by-name/pg/pgmoneta/package.nix
Normal file
@ -0,0 +1,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.7.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "pgmoneta";
|
||||||
|
repo = "pgmoneta";
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-Acg60QFMmRTubYWkPxbHTciVOYoIWc3GZGQVauewZik=";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 = [ maintainers.marsam ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user