2015-10-07 13:10:59 +00:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-11-30 09:08:06 +00:00
|
|
|
name = "snabb-${version}";
|
2015-12-04 15:25:44 +00:00
|
|
|
version = "2015.12";
|
2015-10-07 13:10:59 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-11-30 09:08:06 +00:00
|
|
|
url = "https://github.com/SnabbCo/snabbswitch/archive/v${version}.tar.gz";
|
2015-12-04 15:25:44 +00:00
|
|
|
sha256 = "1949a6d3hqdr2hdfmrr1na9gvjdwdahadbhmvz2pg7azmpq6ssmr";
|
2015-10-07 13:10:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp src/snabb $out/bin
|
|
|
|
'';
|
|
|
|
|
2015-10-10 09:10:26 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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;
|
2015-10-10 09:10:26 +00:00
|
|
|
maintainers = [ maintainers.lukego ];
|
2015-10-07 13:10:59 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|