nixpkgs/pkgs/development/libraries/enet/default.nix

18 lines
465 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2014-09-30 09:30:32 +00:00
name = "enet-1.3.12";
src = fetchurl {
url = "http://enet.bespin.org/download/${name}.tar.gz";
2014-09-30 09:30:32 +00:00
sha256 = "02qxgsn20m306hg3pklfa35mjlc2fqcsd1x4pi3xnbfy1nyir1d5";
};
meta = {
homepage = http://enet.bespin.org/;
description = "Simple and robust network communication layer on top of UDP";
2014-09-30 09:30:32 +00:00
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}