mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
36 lines
729 B
Nix
36 lines
729 B
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "netbird-dashboard";
|
|
version = "2.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "netbirdio";
|
|
repo = "dashboard";
|
|
rev = "v${version}";
|
|
hash = "sha256-4aZ7WGLhjpTHOggJ+sRdln0YOG3jf7TKT9/bH/n3LmQ=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-ts3UuThIMf+wwSr3DpZ+k1i9RnHi/ltvhD/7lomVxQk=";
|
|
npmFlags = [ "--legacy-peer-deps" ];
|
|
|
|
installPhase = ''
|
|
cp -R out $out
|
|
'';
|
|
|
|
env = {
|
|
CYPRESS_INSTALL_BINARY = 0;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "NetBird Management Service Web UI Panel";
|
|
homepage = "https://github.com/netbirdio/dashboard";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ thubrecht ];
|
|
};
|
|
}
|