mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
12913e0f46
snabb: 2022.10 -> 2022.12
38 lines
1004 B
Nix
38 lines
1004 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "snabb";
|
|
version = "2022.12";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "snabbco";
|
|
repo = "snabb";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-DPJ1GrqZQyiW2s5JBZszcB/Is0Is2f/O/6Riz/M3wAs=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp src/snabb $out/bin
|
|
'';
|
|
|
|
meta = with 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;
|
|
maintainers = [ maintainers.lukego ];
|
|
};
|
|
}
|