depot/third_party/nixpkgs/pkgs/development/libraries/enet/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

19 lines
512 B
Nix

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