evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / en / enet / package.nix
blobf9583a097a6ab6aa7a1db71281d94c0134dee393
1 {lib, stdenv, fetchurl}:
3 stdenv.mkDerivation rec {
4   pname = "enet";
5   version = "1.3.18";
7   src = fetchurl {
8     url = "http://enet.bespin.org/download/${pname}-${version}.tar.gz";
9     sha256 = "sha256-KooMU2DWi7T80R8uTEfGmXbo0shbEJ3X1gsRgaT4XTY=";
10   };
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 = [ ];
17     platforms = lib.platforms.unix;
18   };