summary refs log tree commit diff
path: root/pkgs/servers/misc/client-ip-echo/client-ip-echo.nix
blob: ec1f82507ce176158bf4db9c64d3e36705ab9e60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation, fetchFromGitHub, base, bytestring, network, stdenv }:
mkDerivation {
  pname = "client-ip-echo";
  version = "0.1.0.4";
  src = fetchFromGitHub {
    owner = "jerith666";
    repo = "client-ip-echo";
    rev = "58d1bc627c21008236afb1af4c09ba8153c95dad";
    sha256 = "153fab87qq080a819bqbdan925045icqwxldwj3ps40w2ssn7a53";
  };
  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;
}