Don't hesitate editing and commenting

This commit is contained in:
qby 2024-01-16 21:04:56 +00:00
parent 397689aab3
commit 87aa409e84

View File

@ -23,6 +23,7 @@
(guix download)
((non guix licenses) #:prefix license:)
(non guix build-system trivial binary rust)
;;public
(define-public liquidlauncher
(package
(name "liquidlauncher")
@ -36,6 +37,7 @@
(%current-system) architecture "." packaging ".tar.gz"))
(commit version)))
(file-name (git-file-name "liquid-launcher"))
;; checksum
(sha256
(base32
"<INSERT CORRECT HASH>"))))
@ -48,11 +50,14 @@
;; building
(build-system trivial cargo binary gnu)
;; LiquidLauncher is an AppImage which is ready to run, no need for a build.
(native-inputs `(("runtime" "java-runtime")))
;; We need to specify the location of the binary after unpacking. You will need to adjust this path if it's incorrect.
;; input
(native-inputs
`(("node" ,node)
("yarn" ,yarn)))
("yarn" ,yarn)
("npm" ,npm)
("rust" ,rust)
("runtime" "java-runtime"))))))
;; arguments
(arguments
`(#:install-plan `(("liquidlauncher/LiquidLauncher" "bin/"))
@ -101,5 +106,4 @@
(home-page "https://github.com/CCBlueX/LiquidLauncher https://liquidbounce.net")
(synopsis "A LiquidBounce LiquidLauncher launcher for Minecraft, written in Rust using Tauri.client with mod support built from source code keeps it automatically up to date")
(description "LiquidLauncher is the official Minecraft client and launcher for the LiquidBounce mod. It streamlines the installation process and automatically keeps the client up to date.")
(license license:gpl3 gpl3+ expat)
))
(license license:gpl3 gpl3+ expat)))