mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
commit
7d58f29771
63
pkgs/by-name/sy/sync/package.nix
Normal file
63
pkgs/by-name/sy/sync/package.nix
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchgit,
|
||||
autoreconfHook,
|
||||
libgcrypt,
|
||||
pkg-config,
|
||||
curlWithGnuTls,
|
||||
gnunet,
|
||||
jansson,
|
||||
libmicrohttpd,
|
||||
libsodium,
|
||||
libtool,
|
||||
postgresql,
|
||||
taler-exchange,
|
||||
taler-merchant,
|
||||
runtimeShell,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "sync";
|
||||
version = "0.10.1";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.taler.net/sync.git";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-7EBm4Zp1sjZw7pXxQySY+1It3C/KLG2SHhqUPhDATbg=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
libgcrypt
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
curlWithGnuTls
|
||||
gnunet
|
||||
jansson
|
||||
libgcrypt
|
||||
libmicrohttpd
|
||||
libsodium
|
||||
libtool
|
||||
postgresql
|
||||
taler-exchange
|
||||
taler-merchant
|
||||
];
|
||||
|
||||
preFixup = ''
|
||||
substituteInPlace "$out/bin/sync-dbconfig" \
|
||||
--replace-fail "/bin/bash" "${runtimeShell}"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Backup and synchronization service";
|
||||
homepage = "https://git.taler.net/sync.git";
|
||||
license = lib.licenses.agpl3Plus;
|
||||
maintainers = with lib.maintainers; [ wegank ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user