fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / en / enet / package.nix
blob92542b2b5993bfc0b5431e0aabc51ef0818fd426
2   lib,
3   stdenv,
4   fetchurl,
5 }:
7 stdenv.mkDerivation rec {
8   pname = "enet";
9   version = "1.3.18";
11   src = fetchurl {
12     url = "http://enet.bespin.org/download/${pname}-${version}.tar.gz";
13     sha256 = "sha256-KooMU2DWi7T80R8uTEfGmXbo0shbEJ3X1gsRgaT4XTY=";
14   };
16   meta = {
17     homepage = "http://enet.bespin.org/";
18     description = "Simple and robust network communication layer on top of UDP";
19     license = lib.licenses.mit;
20     maintainers = [ ];
21     platforms = lib.platforms.unix;
22   };