formatted

This commit is contained in:
atagen 2023-04-21 01:58:39 +10:00
parent ba1684c8d4
commit 737ca01e49
24 changed files with 468 additions and 411 deletions

View file

@ -1,5 +1,9 @@
{ lib, stdenv, fetchurl, unzip }:
{
lib,
stdenv,
fetchurl,
unzip,
}:
stdenv.mkDerivation rec {
pname = "headscale-ui";
version = "2022.12.23.2-beta";
@ -9,7 +13,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-QF10la68Rl2t0K53CH63Qiq54ynkySQACdELorZF/cY=";
};
nativeBuildInputs = [ unzip ];
nativeBuildInputs = [unzip];
unpackCmd = "unzip headscale-ui.zip";
@ -19,5 +23,4 @@ stdenv.mkDerivation rec {
mkdir $out/
cp -R . $out
'';
}
}