Don't hesitate editing and commenting
This commit is contained in:
parent
397689aab3
commit
87aa409e84
|
@ -23,6 +23,7 @@
|
||||||
(guix download)
|
(guix download)
|
||||||
((non guix licenses) #:prefix license:)
|
((non guix licenses) #:prefix license:)
|
||||||
(non guix build-system trivial binary rust)
|
(non guix build-system trivial binary rust)
|
||||||
|
;;public
|
||||||
(define-public liquidlauncher
|
(define-public liquidlauncher
|
||||||
(package
|
(package
|
||||||
(name "liquidlauncher")
|
(name "liquidlauncher")
|
||||||
|
@ -36,6 +37,7 @@
|
||||||
(%current-system) architecture "." packaging ".tar.gz"))
|
(%current-system) architecture "." packaging ".tar.gz"))
|
||||||
(commit version)))
|
(commit version)))
|
||||||
(file-name (git-file-name "liquid-launcher"))
|
(file-name (git-file-name "liquid-launcher"))
|
||||||
|
;; checksum
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"<INSERT CORRECT HASH>"))))
|
"<INSERT CORRECT HASH>"))))
|
||||||
|
@ -48,11 +50,14 @@
|
||||||
;; building
|
;; building
|
||||||
(build-system trivial cargo binary gnu)
|
(build-system trivial cargo binary gnu)
|
||||||
;; LiquidLauncher is an AppImage which is ready to run, no need for a build.
|
;; 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.
|
;; 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
|
(native-inputs
|
||||||
`(("node" ,node)
|
`(("node" ,node)
|
||||||
("yarn" ,yarn)))
|
("yarn" ,yarn)
|
||||||
|
("npm" ,npm)
|
||||||
|
("rust" ,rust)
|
||||||
|
("runtime" "java-runtime"))))))
|
||||||
;; arguments
|
;; arguments
|
||||||
(arguments
|
(arguments
|
||||||
`(#:install-plan `(("liquidlauncher/LiquidLauncher" "bin/"))
|
`(#:install-plan `(("liquidlauncher/LiquidLauncher" "bin/"))
|
||||||
|
@ -101,5 +106,4 @@
|
||||||
(home-page "https://github.com/CCBlueX/LiquidLauncher https://liquidbounce.net")
|
(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")
|
(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.")
|
(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)))
|
||||||
))
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user