2022-11-28 09:53:27 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2018-03-17 17:19:50 +00:00
|
|
|
}:
|
|
|
|
|
2015-10-07 13:10:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "snabb";
|
2023-04-25 03:52:59 +00:00
|
|
|
version = "2023.04";
|
2015-10-07 13:10:59 +00:00
|
|
|
|
2016-04-07 11:48:39 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "snabbco";
|
|
|
|
repo = "snabb";
|
|
|
|
rev = "v${version}";
|
2023-04-25 03:52:59 +00:00
|
|
|
sha256 = "sha256-6STKoDARQ6Ue/ckd3kdIH+ZKnQ4iozx4a070g2N+XMo=";
|
2015-10-07 13:10:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp src/snabb $out/bin
|
|
|
|
'';
|
|
|
|
|
2023-01-24 16:35:54 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/SnabbCo/snabbswitch";
|
2015-10-07 13:10:59 +00:00
|
|
|
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;
|
2021-03-03 10:50:26 +00:00
|
|
|
maintainers = [ maintainers.lukego ];
|
2015-10-07 13:10:59 +00:00
|
|
|
};
|
|
|
|
}
|