mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
39 lines
776 B
Nix
39 lines
776 B
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "polaris-web";
|
|
version = "68";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "agersant";
|
|
repo = "polaris-web";
|
|
rev = "build-${version}";
|
|
hash = "sha256-YvVNTqv/DQzRyMuDgDdtCyoQbt4EqVztGa0NO92pO/Q=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-c11CWJB76gX+Bxmqac3VxWjJxQVzYCaaf+pmQQpnOds=";
|
|
|
|
env.CYPRESS_INSTALL_BINARY = "0";
|
|
|
|
npmBuildScript = "production";
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share
|
|
cp -a dist $out/share/polaris-web
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Web client for Polaris";
|
|
homepage = "https://github.com/agersant/polaris-web";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ pbsds ];
|
|
};
|
|
}
|