2010-08-24 12:36:42 -07:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-05-04 16:07:25 -07:00
|
|
|
name = "enet-1.3.15";
|
2014-09-30 02:30:32 -07:00
|
|
|
|
2010-08-24 12:36:42 -07:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://enet.bespin.org/download/${name}.tar.gz";
|
2020-05-04 16:07:25 -07:00
|
|
|
sha256 = "1yxxf9bkx6dx3j8j70fj17c05likyfibb1419ls74hp58qrzdgas";
|
2010-08-24 12:36:42 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "http://enet.bespin.org/";
|
2010-08-24 12:36:42 -07:00
|
|
|
description = "Simple and robust network communication layer on top of UDP";
|
2014-09-30 02:30:32 -07:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2019-12-04 23:29:48 -08:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ ];
|
2018-05-20 16:54:41 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2010-08-24 12:36:42 -07:00
|
|
|
};
|
|
|
|
}
|