From 87aa409e844dbd7a0d61f91b32c18a97547b786d Mon Sep 17 00:00:00 2001 From: qby <5731587-qby@users.noreply.gitlab.com> Date: Tue, 16 Jan 2024 21:04:56 +0000 Subject: [PATCH] Don't hesitate editing and commenting --- nongnu/packages/liquidlauncher.scm | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/nongnu/packages/liquidlauncher.scm b/nongnu/packages/liquidlauncher.scm index 7b4a260..a5ce56d 100644 --- a/nongnu/packages/liquidlauncher.scm +++ b/nongnu/packages/liquidlauncher.scm @@ -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 "")))) @@ -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)))