WIP create VM for pppoe and tftpd

This commit is contained in:
Daniel Barlow 2023-02-14 22:08:52 +00:00
parent 9d651f5851
commit e84833e52f
5 changed files with 189 additions and 1 deletions

19
pkgs/go-l2tp/default.nix Normal file
View file

@ -0,0 +1,19 @@
{
buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "go-l2tp";
version = "0";
src = fetchFromGitHub {
repo = "go-l2tp";
owner = "katalix";
rev = "570d763";
hash= "sha256-R8ImKPkPBC+FvzKOBEZ3VxQ12dEjtfRa7AH94xMsAGA=";
};
doCheck = false;
vendorHash = "sha256-hOkhJhToN/VJwjQmnQJSPGz26/YDR2Ch+1yeW51OF+U=";
}