nixpkgs/pkgs/development/libraries/enet/default.nix
R. RyanTM 5bccd8ed90 enet: 1.3.13 -> 1.3.14
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/enet/versions
2019-03-21 11:08:19 -07:00

19 lines
508 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; [ fuuzetsu ];
platforms = stdenv.lib.platforms.unix;
};
}