nixos-config/pkgs/creality-print/default.nix

57 lines
1.6 KiB
Nix

{ pkgs ? import <nixpkgs> {} }:
let
# URL and SHA256 for Creality Print AppImage
appimageUrl = "https://file2-cdn.creality.com/file/05a4538e0c7222ce547eb8d58ef0251e/Creality_Print-v4.3.7.6627-x86_64-Release.AppImage";
appimageSha256 = "sha256-WUsL7UbxSY94H4F1Ww8vLsfRyeg2/DZ+V4B6eH3M6+M=";
# Wrap the AppImage using appimageTools
creality-print = pkgs.appimageTools.wrapType2 {
name = "creality-print";
src = pkgs.fetchurl {
url = appimageUrl;
sha256 = appimageSha256;
};
profile = ''
export LC_ALL=C.UTF-8
'';
multiPkgs = pkgs: with pkgs; [ qt5.qtbase libGL libz ];
};
# Create a desktop entry for Creality Print
desktopItem = pkgs.makeDesktopItem {
name = "creality-print";
exec = "${creality-print}/bin/creality-print";
icon = "creality-print";
desktopName = "Creality Print";
genericName = "3D Printer Software";
categories = [ "Graphics" ];
};
in
# Define the package
pkgs.stdenv.mkDerivation {
name = "creality-print";
buildInputs = [ creality-print ];
nativeBuildInputs = [ pkgs.makeWrapper ];
# No sources to unpack
unpackPhase = "true";
# Installation phase
installPhase = ''
mkdir -p $out/bin $out/share/applications
cp ${creality-print}/bin/* $out/bin
ln -s ${desktopItem}/share/applications/* $out/share/applications/
'';
# Package metadata
meta = with pkgs.lib; {
description = "Creality Print is a 3D printer software for Creality printers";
homepage = "https://www.creality.com/";
license = licenses.gpl3;
platforms = platforms.linux;
};
}