depot/third_party/nixpkgs/pkgs/development/libraries/enet/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

18 lines
501 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "enet-1.3.14";
src = fetchurl {
url = "http://enet.bespin.org/download/${name}.tar.gz";
sha256 = "0w780zc6cy8yq4cskpphx0f91lzh51vh9lwyc5ll8hhamdxgbxlq";
};
meta = {
homepage = "http://enet.bespin.org/";
description = "Simple and robust network communication layer on top of UDP";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ ];
platforms = stdenv.lib.platforms.unix;
};
}