123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- (define-module (games minecraft)
- #:use-module (guix build-system cmake)
- #:use-module (gnu packages compression)
- #:use-module (gnu packages pulseaudio)
- #:use-module (gnu packages qt)
- #:use-module (gnu packages xorg)
- #:use-module (gnu packages gl)
- #:use-module (gnu packages java)
- #:use-module (guix packages)
- #:use-module (guix git-download))
- (define-public multimc
- (package
- (name "multimc")
- (version "0.6.7")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/MultiMC/MultiMC5.git")
- (recursive? #t)
- (commit version)))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1i160rmsdvrcnvlr6m2qjwkfx0lqnzrcifjkaklw96ina6z6cg2n"))))
- (build-system cmake-build-system)
- (arguments
- `(#:tests? #f
- #:configure-flags '("-DMultiMC_LAYOUT=lin-system")
- #:phases
- (modify-phases %standard-phases
- (add-after 'install 'patch-paths
- (lambda* (#:key inputs outputs #:allow-other-keys)
- (let* ((out (assoc-ref outputs "out"))
- (bin (string-append out "/bin"))
- (exe (string-append bin "/multimc"))
- (xrandr (assoc-ref inputs "xrandr"))
- (jdk (assoc-ref inputs "jdk")))
- (wrap-program exe
- `("PATH" ":" prefix (,(string-append xrandr "/bin")
- ,(string-append jdk "/bin")))
- `("GAME_LIBRARY_PATH" ":" prefix
- (,@(map (lambda (dep)
- (string-append (assoc-ref inputs dep)
- "/lib"))
- '("libx11" "libxext" "libxcursor"
- "libxrandr" "libxxf86vm" "pulseaudio" "mesa")))))
- #t))))))
- (inputs
- `(("jdk" ,icedtea "jdk")
- ("zlib" ,zlib)
- ("qtbase" ,qtbase)
- ("xrandr" ,xrandr)
- ("libx11" ,libx11)
- ("libxext" ,libxext)
- ("libxcursor" ,libxcursor)
- ("libxrandr" ,libxrandr)
- ("libxxf86vm" ,libxxf86vm)
- ("pulseaudio" ,pulseaudio)
- ("mesa" ,mesa)))
- (home-page "https://multimc.org/")
- (synopsis "Launcher for Minecraft")
- (description
- "Allows you to have multiple, separate instances of Minecraft and
- helps you manage them and their associated options with a simple
- interface.")
- ;; TODO: https://github.com/MultiMC/MultiMC5/blob/develop/COPYING.md
- (license #f)))
|