2021-01-21 18:00:13 +01:00
|
|
|
{lib, stdenv, fetchurl}:
|
2010-08-24 21:36:42 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-11-18 03:04:55 +01:00
|
|
|
name = "enet-1.3.17";
|
2014-09-30 11:30:32 +02:00
|
|
|
|
2010-08-24 21:36:42 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://enet.bespin.org/download/${name}.tar.gz";
|
2020-11-18 03:04:55 +01:00
|
|
|
sha256 = "1p6f9mby86af6cs7pv6h48032ip9g32c05cb7d9mimam8lchz3x3";
|
2010-08-24 21:36:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://enet.bespin.org/";
|
2010-08-24 21:36:42 +02:00
|
|
|
description = "Simple and robust network communication layer on top of UDP";
|
2021-01-21 18:00:13 +01:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ ];
|
|
|
|
platforms = lib.platforms.unix;
|
2010-08-24 21:36:42 +02:00
|
|
|
};
|
|
|
|
}
|