2022-11-22 21:23:52 +01:00
|
|
|
;;; SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
;;; Copyright © 2022 Demis Balbach <db@minikn.xyz>
|
|
|
|
;;; Copyright © 2023 Jonathan Brielmaier <jonathan.brielmaier@web.de>
|
2023-05-19 18:44:00 +02:00
|
|
|
;;; Copyright © 2023 Giacomo Leidi <goodoldpaul@autistici.org>
|
2022-11-22 21:23:52 +01:00
|
|
|
|
|
|
|
(define-module (nongnu packages engineering)
|
|
|
|
#:use-module (gnu packages base)
|
|
|
|
#:use-module (gnu packages xorg)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module (guix gexp)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix utils)
|
|
|
|
#:use-module ((guix licenses) :prefix license:)
|
2023-05-19 18:44:00 +02:00
|
|
|
#:use-module (nonguix build-system chromium-binary)
|
2022-11-22 21:23:52 +01:00
|
|
|
#:use-module ((nonguix licenses) :prefix license:)
|
|
|
|
#:use-module (ice-9 match))
|
|
|
|
|
|
|
|
(define-public lycheeslicer
|
|
|
|
(package
|
|
|
|
(name "lycheeslicer")
|
|
|
|
(version "4.1.0")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri
|
|
|
|
(string-append
|
|
|
|
"https://mango-lychee.nyc3.cdn.digitaloceanspaces.com/LycheeSlicer-" version ".deb"))
|
|
|
|
(sha256
|
|
|
|
(base32 "1rv3f8d1sb5irn4y8hjzk2m7c9irw71ls8p1mqambxg79q9ffj9m"))))
|
|
|
|
(supported-systems '("x86_64-linux"))
|
2023-05-19 18:44:00 +02:00
|
|
|
(build-system chromium-binary-build-system)
|
2022-11-22 21:23:52 +01:00
|
|
|
(arguments
|
|
|
|
(list #:validate-runpath? #f ; TODO: fails on wrapped binary and included other files
|
2023-05-19 18:44:00 +02:00
|
|
|
#:wrapper-plan
|
|
|
|
#~'("lib/LycheeSlicer/lycheeslicer")
|
2022-11-22 21:23:52 +01:00
|
|
|
#:phases
|
|
|
|
#~(modify-phases %standard-phases
|
2023-09-21 02:42:33 +02:00
|
|
|
(add-after 'binary-unpack 'setup-cwd
|
2022-11-22 21:23:52 +01:00
|
|
|
(lambda _
|
|
|
|
;; Use the more standard lib directory for everything.
|
|
|
|
(rename-file "opt/" "lib")
|
|
|
|
(mkdir-p "share")
|
|
|
|
(copy-recursively "usr/share" "share")
|
|
|
|
;; Remove unneeded files.
|
2023-09-21 02:42:33 +02:00
|
|
|
(delete-file-recursively "usr")))
|
|
|
|
(add-after 'setup-cwd 'fix-desktop-file
|
2022-11-22 21:23:52 +01:00
|
|
|
(lambda _
|
|
|
|
;; Fix the .desktop file binary location.
|
|
|
|
(substitute* '("share/applications/lycheeslicer.desktop")
|
|
|
|
(("/opt/LycheeSlicer")
|
|
|
|
(string-append #$output "/lib/LycheeSlicer")))))
|
2023-09-21 02:42:33 +02:00
|
|
|
(add-before 'install-wrapper 'symlink-binary-file
|
2022-11-22 21:23:52 +01:00
|
|
|
(lambda _
|
|
|
|
(mkdir-p (string-append #$output "/bin"))
|
|
|
|
(symlink (string-append #$output "/lib/LycheeSlicer/lycheeslicer")
|
|
|
|
(string-append #$output "/bin/lycheeslicer"))))
|
2023-05-19 18:44:00 +02:00
|
|
|
(add-after 'install-wrapper 'wrap-where-patchelf-does-not-work
|
2022-11-22 21:23:52 +01:00
|
|
|
(lambda _
|
|
|
|
(wrap-program (string-append #$output "/lib/LycheeSlicer/lycheeslicer")
|
|
|
|
`("LD_LIBRARY_PATH" ":" prefix
|
|
|
|
(,(string-join
|
|
|
|
(list
|
2023-05-19 18:44:00 +02:00
|
|
|
(string-append #$output "/lib/LycheeSlicer"))
|
2022-11-22 21:23:52 +01:00
|
|
|
":")))))))))
|
|
|
|
(inputs
|
2023-05-19 18:44:00 +02:00
|
|
|
(list libxscrnsaver))
|
2022-11-22 21:23:52 +01:00
|
|
|
(home-page "https://mango3d.io")
|
|
|
|
(synopsis "Slicer for resin 3d printers of different manufacturers")
|
|
|
|
(description "A user-friendly slicing software for resin 3d printers. It
|
|
|
|
supports printers and resins of different manufacturers alongside
|
|
|
|
community-created profiles as well. It offers a paid- and free version with a
|
|
|
|
reduced feature set.")
|
|
|
|
(license (license:nonfree "https://mango3d.io/terms-and-conditions"))))
|