stabber: init at 2016-11-09

This commit is contained in:
Hendrik Schaeidt 2018-03-13 15:49:34 +01:00
parent 50fdcd414e
commit 6634049f22
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib, expat
, libmicrohttpd
}:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "stabber-unstable-${version}";
version = "2016-11-09";
src = fetchFromGitHub {
owner = "boothj5";
repo = "stabber";
rev = "ed75087e4483233eb2cc5472dbd85ddfb7a1d4d4";
sha256 = "1l6cibggi9rx6d26j1g92r1m8zm1g899f6z7n4pfqp84mrfqgz0p";
};
preAutoreconf = ''
mkdir m4
'';
buildInputs = [ autoreconfHook pkgconfig glib expat libmicrohttpd ];
meta = {
description = "Stubbed XMPP Server";
homepage = https://github.com/boothj5/stabber;
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = with maintainers; [ hschaeidt ];
};
}

View file

@ -4894,6 +4894,8 @@ with pkgs;
ssss = callPackage ../tools/security/ssss { };
stabber = callPackage ../misc/stabber { };
stress = callPackage ../tools/system/stress { };
stress-ng = callPackage ../tools/system/stress-ng { };