enet: update from 1.3.9 to 1.3.12

This commit is contained in:
Mateusz Kowalczyk 2014-09-30 10:30:32 +01:00
parent bed76a5c89
commit e6c207e5f2

View file

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