Skip to content

Commit

Permalink
Merge pull request #140 from ngi-nix/taler-mdb
Browse files Browse the repository at this point in the history
taler-mdb: init at 0.9.3
  • Loading branch information
alejandrosame authored Dec 28, 2023
2 parents 2b2917b + 19411b9 commit d999b58
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions pkgs/by-name/taler-mdb/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
autoreconfHook,
curl,
fetchgit,
gnunet,
jansson,
lib,
libgcrypt,
libmicrohttpd,
libnfc,
libsodium,
pkg-config,
stdenv,
taler-exchange,
taler-merchant,
qrencode,
}: let
version = "0.9.3";
in
stdenv.mkDerivation {
inherit version;
pname = "taler-mdb";

src = fetchgit {
url = "https://git.taler.net/taler-mdb.git";
rev = "v${version}";
hash = "sha256-tzJsWAT0k4TldPiI4/yDvbfIBmuBdTrz6o5EHNyfWhs=";
};

nativeBuildInputs = [
autoreconfHook
pkg-config
];

buildInputs = [
curl
gnunet
jansson
libgcrypt
libmicrohttpd
libnfc
libsodium
qrencode
taler-exchange
taler-merchant
];

doInstallCheck = 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;
};
}

0 comments on commit d999b58

Please sign in to comment.