nixpkgs/pkgs/tools/networking/snabb/default.nix
2022-11-28 10:53:27 +01:00

40 lines
998 B
Nix

{ lib
, stdenv
, fetchFromGitHub
}:
with lib;
stdenv.mkDerivation rec {
pname = "snabb";
version = "2022.10";
src = fetchFromGitHub {
owner = "snabbco";
repo = "snabb";
rev = "v${version}";
sha256 = "GIIW+2/1fuHTmYev/QvuO5Yb2ozbyw/45qQkym36US8=";
};
installPhase = ''
mkdir -p $out/bin
cp src/snabb $out/bin
'';
meta = {
homepage = "https://github.com/SnabbCo/snabbswitch";
description = "Simple and fast packet networking toolkit";
longDescription = ''
Snabb Switch is a LuaJIT-based toolkit for writing high-speed
packet networking code (such as routing, switching, firewalling,
and so on). It includes both a scripting inteface for creating
new applications and also some built-in applications that are
ready to run.
It is especially intended for ISPs and other network operators.
'';
platforms = [ "x86_64-linux" ];
license = licenses.asl20;
maintainers = [ maintainers.lukego ];
};
}