client-ip-echo: 0.1.0.1 -> 0.1.0.3

This commit is contained in:
Matt McHenry 2018-11-07 21:54:10 -05:00
parent 179b8146e6
commit 997fc15e99

View File

@ -1,17 +1,16 @@
{ mkDerivation, fetchFromGitHub, base, bytestring, network, stdenv }: { mkDerivation, fetchFromGitHub, base, bytestring, network, stdenv }:
mkDerivation { mkDerivation {
pname = "client-ip-echo"; pname = "client-ip-echo";
version = "0.1.0.1"; version = "0.1.0.3";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jerith666"; owner = "jerith666";
repo = "client-ip-echo"; repo = "client-ip-echo";
rev = "f6e3e115a1e61a387cf79956ead36d7ac25a2901"; rev = "8d1a79d94a962b3266c1db51200913c2295d8922";
sha256 = "0irxcaiwxxn4ggd2dbya1mvpnyfanx0x06whp8ccrha141cafwqp"; sha256 = "1g1s7i68n3906m3yjfygw96j64n8nh88lmf77blnz0xzrq4y3bgf";
}; };
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
executableHaskellDepends = [ base bytestring network ]; executableHaskellDepends = [ base bytestring network ];
description = "accepts TCP connections and echoes the client's IP address back to it"; description = "accepts TCP connections and echoes the client's IP address back to it";
license = stdenv.lib.licenses.lgpl3; license = stdenv.lib.licenses.lgpl3;
broken = true; # 2018-04-10
} }