lol

Merge pull request #29451 from jerith666/client-ip-echo-1709

client-ip-echo: init at 0.1.0.1

authored by

Jörg Thalheim and committed by
GitHub
217add90 e2822f63

+20
+16
pkgs/servers/misc/client-ip-echo/client-ip-echo.nix
··· 1 + { mkDerivation, fetchFromGitHub, base, bytestring, network, stdenv }: 2 + mkDerivation { 3 + pname = "client-ip-echo"; 4 + version = "0.1.0.1"; 5 + src = fetchFromGitHub { 6 + owner = "jerith666"; 7 + repo = "client-ip-echo"; 8 + rev = "f6e3e115a1e61a387cf79956ead36d7ac25a2901"; 9 + sha256 = "0irxcaiwxxn4ggd2dbya1mvpnyfanx0x06whp8ccrha141cafwqp"; 10 + }; 11 + isLibrary = false; 12 + isExecutable = true; 13 + executableHaskellDepends = [ base bytestring network ]; 14 + description = "accepts TCP connections and echoes the client's IP address back to it"; 15 + license = stdenv.lib.licenses.lgpl3; 16 + }
+2
pkgs/servers/misc/client-ip-echo/default.nix
··· 1 + { pkgs }: 2 + pkgs.haskellPackages.callPackage ./client-ip-echo.nix { }
+2
pkgs/top-level/all-packages.nix
··· 1502 1502 1503 1503 clex = callPackage ../tools/misc/clex { }; 1504 1504 1505 + client-ip-echo = callPackage ../servers/misc/client-ip-echo { }; 1506 + 1505 1507 cloc = callPackage ../tools/misc/cloc { 1506 1508 inherit (perlPackages) perl AlgorithmDiff RegexpCommon; 1507 1509 };