mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2025-10-03 07:23:32 +00:00
treewide. complete refactor
Lots of cleaning up, I cannot be arsed to commit everything one-by-one
This commit is contained in:
parent
a704a123ec
commit
5b7812600d
24 changed files with 631 additions and 464 deletions
26
pkgs/headscale-ui/package.nix
Normal file
26
pkgs/headscale-ui/package.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{
|
||||
stdenv,
|
||||
fetchzip,
|
||||
lib,
|
||||
}: let
|
||||
pname = "headscale-ui";
|
||||
version = "0-unstable-2024-02-24";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit pname version;
|
||||
src = fetchzip {
|
||||
url = "https://github.com/gurucomputing/headscale-ui/releases/download/2024.02.24-beta-1/headscale-ui.zip";
|
||||
sha256 = "sha256-6SUgtSTFvJWNdsWz6AiOfUM9p33+8EhDwyqHX7O2+NQ=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/
|
||||
cp -r web/ $out/share/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A web frontend for the headscale Tailscale-compatible coordination server";
|
||||
homepage = "https://github.com/gurucomputing/headscale-ui";
|
||||
license = [lib.licenses.bsd3];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue