nixpkgs/pkgs/tools/networking/snabbswitch/default.nix

34 lines
1009 B
Nix
Raw Normal View History

{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";
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";
};
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;
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 ];
};
}