Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
58 lines
1.0 KiB
Nix
58 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchgit,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
curl,
|
|
gnunet,
|
|
jansson,
|
|
libgcrypt,
|
|
libmicrohttpd,
|
|
libnfc,
|
|
libsodium,
|
|
qrencode,
|
|
taler-exchange,
|
|
taler-merchant,
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "taler-mdb";
|
|
version = "1.0.0";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.taler.net/taler-mdb.git";
|
|
tag = "v${finalAttrs.version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-AAFnF8bN2Pnhy8OZbgA6CRHBIC6iP785HpVjPEVu+IQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
gnunet
|
|
jansson
|
|
libgcrypt
|
|
libmicrohttpd
|
|
libnfc
|
|
libsodium
|
|
qrencode
|
|
taler-exchange
|
|
taler-merchant
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = "https://git.taler.net/taler-mdb.git";
|
|
description = "Sales integration with the Multi-Drop-Bus of Snack machines, NFC readers and QR code display";
|
|
license = lib.licenses.agpl3Plus;
|
|
teams = with lib.teams; [ ngi ];
|
|
maintainers = [ ];
|
|
mainProgram = "taler-mdb";
|
|
};
|
|
})
|