Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

55 lines
1.2 KiB
Nix

{
lib,
stdenv,
libGLU,
qtbase,
fetchurl,
dpkg,
autoPatchelfHook,
wrapQtAppsHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "flashprint";
version = "5.8.7";
src = fetchurl {
url = "http://www.ishare3d.com/3dapp/public/FlashPrint-5/FlashPrint/flashprint5_${finalAttrs.version}_amd64.deb";
hash = "sha256-DVY5XxAz3HPAWMNaGauUop7OWHeFuuRHuVllyJvHqFk=";
};
nativeBuildInputs = [
dpkg
autoPatchelfHook
wrapQtAppsHook
];
buildInputs = [
qtbase
libGLU
];
qtWrapperArgs = [ "--prefix QT_QPA_PLATFORM : xcb" ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mv etc usr/* $out
ln -s $out/share/FlashPrint5/FlashPrint $out/bin/flashprint
sed -i "/^Exec=/ c Exec=$out/bin/flashprint" $out/share/applications/FlashPrint5.desktop
runHook postInstall
'';
meta = with lib; {
description = "Slicer for the FlashForge 3D printers";
homepage = "https://www.flashforge.com/";
license = licenses.unfree;
mainProgram = "flashprint";
maintainers = [ maintainers.ianliu ];
platforms = [ "x86_64-linux" ];
sourceProvenance = [ sourceTypes.binaryNativeCode ];
};
})