fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
19 lines
512 B
Nix
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;
|
|
};
|
|
}
|