depot/third_party/nixpkgs/pkgs/development/libraries/enet/default.nix
Default email a4fd2de975 Project import generated by Copybara.
GitOrigin-RevId: 34ad166a830d3ac1541dcce571c52231f2f0865a
2020-11-02 21:18:15 -05:00

18 lines
501 B
Nix

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "enet-1.3.16";
src = fetchurl {
url = "http://enet.bespin.org/download/${name}.tar.gz";
sha256 = "1lggc82rbzscci057dqqyhkbq4j6mr5k01hbrvn06jkzc2xpxdxv";
};
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;
};
}