-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from ngi-nix/taler-mdb
taler-mdb: init at 0.9.3
- Loading branch information
Showing
1 changed file
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
}; | ||
} |