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

19 lines
501 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation rec {
2020-05-05 01:07:25 +02:00
name = "enet-1.3.15";
2014-09-30 11:30:32 +02:00
src = fetchurl {
url = "http://enet.bespin.org/download/${name}.tar.gz";
2020-05-05 01:07:25 +02:00
sha256 = "1yxxf9bkx6dx3j8j70fj17c05likyfibb1419ls74hp58qrzdgas";
};
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; [ ];
2018-05-21 01:54:41 +02:00
platforms = stdenv.lib.platforms.unix;
};
}