client-ip-echo: init at 0.1.0.1

This commit is contained in:
Matt McHenry
2017-09-16 21:16:53 -04:00
parent 6a7066eb53
commit 987867474c
3 changed files with 20 additions and 0 deletions
@@ -0,0 +1,16 @@
{ mkDerivation, fetchFromGitHub, base, bytestring, network, stdenv }:
mkDerivation {
pname = "client-ip-echo";
version = "0.1.0.1";
src = fetchFromGitHub {
owner = "jerith666";
repo = "client-ip-echo";
rev = "f6e3e115a1e61a387cf79956ead36d7ac25a2901";
sha256 = "0irxcaiwxxn4ggd2dbya1mvpnyfanx0x06whp8ccrha141cafwqp";
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base bytestring network ];
description = "accepts TCP connections and echoes the client's IP address back to it";
license = stdenv.lib.licenses.lgpl3;
}