From 75e6956cb247007426b99a69f4dae209db1a833e Mon Sep 17 00:00:00 2001 From: qby <5731587-qby@users.noreply.gitlab.com> Date: Mon, 11 Dec 2023 17:04:15 +0000 Subject: [PATCH] Don't hesitate editing --- nongnu/packages/liquidlauncher.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 nongnu/packages/liquidlauncher.scm diff --git a/nongnu/packages/liquidlauncher.scm b/nongnu/packages/liquidlauncher.scm new file mode 100644 index 0000000..667b548 --- /dev/null +++ b/nongnu/packages/liquidlauncher.scm @@ -0,0 +1,26 @@ +(define-module (nongnu packages liquidbounce) + #:use-module (guix packages) + #:use-module (guix download) + #:use-module (nonguix licenses) + #:use-module (nonguix build-system binary)) + +(define-public liquidlauncher + (package + (name "liquidlauncher") + (version "0.1.8") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/CCBlueX/LiquidLauncher/releases/download/" + version "/liquidlauncher_" version "_" architecture "." packaging ".tar.gz")) + (sha256 (base32 + "")))) + (build-system binary-build-system) + ;; LiquidLauncher is an AppImage which is ready to run, so 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. + (arguments `(#:install-plan `(("liquidlauncher/LiquidLauncher" "bin/")) + #:tests? #f)) + (home-page "https://liquidbounce.net") + (synopsis "Official launcher for LiquidBounce") + (description "LiquidLauncher is the official launcher for LiquidBounce. It eases the installation of the client and keeps it automatically up to date.") + (license license:gpl3)))