50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "mainsail";
|
|
version = "2.14.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mainsail-crew";
|
|
repo = "mainsail";
|
|
rev = "v${version}";
|
|
hash = "sha256-hZgENY1Vb0wr6fqQfodjXQ+a/JAca0AQFKHlTc4EG68=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-9pkcQS281OC9q9WadctQ/GAgbaeejrj7HLwKK/SDkAU=";
|
|
|
|
# Prevent Cypress binary download.
|
|
CYPRESS_INSTALL_BINARY = 0;
|
|
|
|
preConfigure = ''
|
|
# Make the build.zip target do nothing, since we will just copy these files later.
|
|
sed -e 's/"build.zip":.*,$/"build.zip": "",/g' -i package.json
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share
|
|
cp -r ./dist $out/share/mainsail
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Web interface for managing and controlling 3D printers with Klipper";
|
|
homepage = "https://docs.mainsail.xyz";
|
|
changelog = "https://github.com/mainsail-crew/mainsail/releases/tag/v${version}";
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [
|
|
shhht
|
|
lovesegfault
|
|
wulfsta
|
|
];
|
|
};
|
|
}
|