at 22.05-pre 19 lines 513 B view raw
1{lib, stdenv, fetchurl}: 2 3stdenv.mkDerivation rec { 4 pname = "enet"; 5 version = "1.3.17"; 6 7 src = fetchurl { 8 url = "http://enet.bespin.org/download/${pname}-${version}.tar.gz"; 9 sha256 = "1p6f9mby86af6cs7pv6h48032ip9g32c05cb7d9mimam8lchz3x3"; 10 }; 11 12 meta = { 13 homepage = "http://enet.bespin.org/"; 14 description = "Simple and robust network communication layer on top of UDP"; 15 license = lib.licenses.mit; 16 maintainers = with lib.maintainers; [ ]; 17 platforms = lib.platforms.unix; 18 }; 19}