fix(third_party/tailscale): Add default relaynode acl.json to output
This commit is contained in:
parent
04ffc5e66f
commit
9b37bad180
1 changed files with 6 additions and 1 deletions
7
third_party/tailscale/default.nix
vendored
7
third_party/tailscale/default.nix
vendored
|
@ -5,7 +5,7 @@
|
|||
|
||||
let
|
||||
inherit (pkgs.third_party) buildGoModule fetchFromGitHub;
|
||||
in buildGoModule {
|
||||
in buildGoModule rec {
|
||||
pname = "tailscale";
|
||||
version = "fef25489";
|
||||
|
||||
|
@ -25,6 +25,11 @@ in buildGoModule {
|
|||
"cmd/tailscaled"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/etc/
|
||||
cp ${src}/cmd/relaynode/acl.json $out/etc/
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://tailscale.com/";
|
||||
description = "Private WireGuard networks made easy";
|
||||
|
|
Loading…
Reference in a new issue