mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2025-10-04 07:52:09 +00:00
treewide: start transitioning to nixpkgs package structure
This commit is contained in:
parent
5244163a47
commit
d52fa53348
16 changed files with 190 additions and 63 deletions
36
pkgs/applications/networking/headscale-ui/default.nix
Normal file
36
pkgs/applications/networking/headscale-ui/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{
|
||||
stdenv,
|
||||
fetchurl,
|
||||
unzip,
|
||||
lib,
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "headscale-ui";
|
||||
version = "2023.01.30-beta-1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/gurucomputing/${pname}/releases/download/${version}/headscale-ui.zip";
|
||||
sha256 = "sha256-6SUgtSTFvJWNdsWz6AiOfUM9p33+8EhDwyqHX7O2+NQ=";
|
||||
};
|
||||
|
||||
buildInputs = [unzip];
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
unpackPhase = ''
|
||||
runHook preUnpack
|
||||
unzip $src
|
||||
runHook postUnpack
|
||||
'';
|
||||
|
||||
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