Skip to content

Commit

Permalink
twister: init at 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
matusf committed Dec 22, 2023
1 parent 2b2917b commit 8b39a46
Showing 1 changed file with 48 additions and 0 deletions.
48 changes: 48 additions & 0 deletions pkgs/by-name/twister/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
autoreconfHook,
curl,
fetchgit,
gnunet,
jansson,
lib,
libgcrypt,
libmicrohttpd,
libnfc,
libsodium,
pkg-config,
stdenv,
}: let
version = "0.9.3";
in
stdenv.mkDerivation {
inherit version;
name = "twister";

src = fetchgit {
url = "https://git.taler.net/twister.git";
rev = "v${version}";
hash = "sha256-3Zp/x46xuL01J3/SR3ab5REcJMC3eQPnSkpOzeK3MKk=";
};

nativeBuildInputs = [
autoreconfHook
pkg-config
];

buildInputs = [
curl
gnunet
jansson
libgcrypt
libmicrohttpd
libsodium
];

doInstallCheck = true;

meta = {
homepage = "https://git.taler.net/twister.git";
description = "Fault injector for HTTP traffic.";
license = lib.licenses.agpl3Plus;
};
}

0 comments on commit 8b39a46

Please sign in to comment.