mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
37 lines
881 B
Nix
37 lines
881 B
Nix
{ lib
|
|
, stdenvNoCC
|
|
, fetchzip
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
pname = "mainsail";
|
|
version = "2.7.1";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/mainsail-crew/mainsail/releases/download/v${version}/mainsail.zip";
|
|
hash = "sha256-j2ri7PyQGzRlhpgE9qKneX00HwlDmIi2JUremz446wk=";
|
|
stripRoot = false;
|
|
};
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/mainsail
|
|
cp -r ./* $out/share/mainsail
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
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 = licenses.gpl3Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ shhht lovesegfault ];
|
|
};
|
|
}
|