nixpkgs/pkgs/development/libraries/enet/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

20 lines
490 B
Nix

{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
pname = "enet";
version = "1.3.18";
src = fetchurl {
url = "http://enet.bespin.org/download/${pname}-${version}.tar.gz";
sha256 = "sha256-KooMU2DWi7T80R8uTEfGmXbo0shbEJ3X1gsRgaT4XTY=";
};
meta = {
homepage = "http://enet.bespin.org/";
description = "Simple and robust network communication layer on top of UDP";
license = lib.licenses.mit;
maintainers = [ ];
platforms = lib.platforms.unix;
};
}