pathvector: init at 5.11.1
This commit is contained in:
parent
439aeb2fe9
commit
056fd0af5e
2 changed files with 30 additions and 0 deletions
28
pkgs/tools/networking/pathvector/default.nix
Normal file
28
pkgs/tools/networking/pathvector/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "pathvector";
|
||||
version = "5.11.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "natesales";
|
||||
repo = "pathvector";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-OgIDk+05bG2KrBQOyyMPaH0OJXU3gLM9OBab9lI+yXw=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-R3o1L34FXbtRzJ1I2Xj4iWsiFJJWexGWYv2TmvhINe0=";
|
||||
|
||||
CGO_ENABLED = 0;
|
||||
|
||||
ldflags = [ "-s" "-w" "-X main.version=${version}" "-X main.commit=${src.rev}" "-X main.date=unknown" ];
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Declarative edge routing platform that automates route optimization and control plane configuration";
|
||||
homepage = "https://pathvector.io";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ matthewpi ];
|
||||
};
|
||||
}
|
|
@ -8577,6 +8577,8 @@ with pkgs;
|
|||
|
||||
patray = callPackage ../tools/audio/patray { };
|
||||
|
||||
pathvector = callPackage ../tools/networking/pathvector { };
|
||||
|
||||
pasystray = callPackage ../tools/audio/pasystray { };
|
||||
|
||||
pcmsolver = callPackage ../development/libraries/pcmsolver { };
|
||||
|
|
Loading…
Reference in a new issue