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

19 lines
509 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2016-01-03 21:28:51 +01:00
name = "enet-1.3.13";
2014-09-30 11:30:32 +02:00
src = fetchurl {
url = "http://enet.bespin.org/download/${name}.tar.gz";
2016-01-03 21:28:51 +01:00
sha256 = "0p53mnmjbm56wizwraznynx13fcibcxiqny110dp6a5a3w174q73";
};
meta = {
homepage = http://enet.bespin.org/;
description = "Simple and robust network communication layer on top of UDP";
2014-09-30 11:30:32 +02:00
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
2016-05-01 11:37:47 +02:00
platforms = stdenv.lib.platforms.linux;
};
}