;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2019 L p R n d n ;;; Copyright © 2021 Guillaume Le Vaillant ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages arcan) #:use-module (guix build-system cmake) #:use-module (guix build-system gnu) #:use-module (guix git-do
aboutsummaryrefslogtreecommitdiff
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2020 Efraim Flashner <efraim@flashner.co.il>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu services science)
  #:export (<rshiny-configuration>
            rshiny-configuration
            rshiny-configuration?
            rshiny-configuration-package
            rshiny-configuration-binary
            rshiny-shepherd-service
            rshiny-service-type))

(use-modules (gnu)
             (guix records)
             (ice-9 match))
(use-service-modules shepherd)
(use-package-modules cran)

(define-record-type* <rshiny-configuration>
  rshiny-configuration
  make-rshiny-configuration
  rshiny-configuration?
  (package          rshiny-configuration-package    ; file-like
                    (default r-shiny))
  (binary           rshiny-configuration-binary     ; string
                    (default "rshiny")))

(define rshiny-shepherd-service
  (match-lambda
    (($ <rshiny-configuration> package binary)
     (list
       (shepherd-service
         (documentation (string-append "R-Shiny service for " binary))
         (provision (list (symbol-append 'rshiny- (string->symbol
                                                    (string-take binary 9)))))
         (requirement '(networking))
         (start
           #~(exec-command
               (list
                 #$(string-append "/run/current-system/profile/bin/" binary))
               ;#:log-file #$(string-append "/var/log/" binary ".log") ; kills shepherd
               #:environment-variables
               (list "R_LIBS_USER=/run/current-system/profile/site-library/")))
         (stop #~(make-kill-destructor)))))))

(define rshiny-service-type
  (service-type
    (name 'rshiny)
    (extensions
      (list
        (service-extension shepherd-root-service-type
                           rshiny-shepherd-service)
        (service-extension profile-service-type
                           ;; We want the package installed so that it
                           ;; pulls in the propagated inputs as well.
                           (lambda (config)
                             (list
                               (rshiny-configuration-package config))))))
    (description
     "Run an R-Shiny webapp as a Guix Service.")))
("ffmpeg" ,ffmpeg-4) ("freetype" ,freetype) ("glib" ,glib) ("glu" ,glu) ("harfbuzz" ,harfbuzz) ("libdrm" ,libdrm) ("libusb" ,libusb) ("libxkbcommon" ,libxkbcommon) ("lua" ,luajit) ("lzip" ,lzip) ("openal" ,openal) ("pcre" ,pcre) ("sqlite" ,sqlite) ("tesseract-ocr" ,tesseract-ocr) ("leptonica" ,leptonica) ("vlc" ,vlc) ;; To build arcan_lwa, we need a patched version of openal. ;; https://github.com/letoram/arcan/wiki/packaging ("arcan-openal" ,(origin (method git-fetch) (file-name "arcan-openal-0.5.4") (uri (git-reference (url "https://github.com/letoram/openal") (commit "1c7302c580964fee9ee9e1d89ff56d24f934bdef"))) (sha256 (base32 "0dcxcnqjkyyqdr2yk84mprvkncy5g172kfs6vc4zrkklsbkr8yi2")))))) (native-inputs (list pkg-config ruby)) ; For documentation and testing (home-page "https://arcan-fe.com") (synopsis "Display server, multimedia framework and game engine (egl-dri)") (description "Arcan is a development framework for creating virtually anything from user interfaces for specialized embedded applications all the way to full-blown desktop environments. At its heart lies a multimedia engine programmable using Lua.") ;; https://github.com/letoram/arcan/blob/master/COPYING (license (list license:gpl2+ license:lgpl2.0 license:lgpl2.0+ license:public-domain license:bsd-3))))) (define-public arcan-sdl (package (inherit arcan) (name "arcan-sdl") (inputs (modify-inputs (package-inputs arcan) (delete "libdrm") (prepend sdl))) (arguments `(,@(ensure-keyword-arguments (package-arguments arcan) '(#:configure-flags '("-DCMAKE_C_FLAGS=-fcommon" "-DVIDEO_PLATFORM=sdl" "-DBUILTIN_LUA=off" "-DSTATIC_OPENAL=off" "-DDISABLE_JIT=off" "-DENABLE_LWA=on" "-DSTATIC_SQLITE3=off" "-DSTATIC_FREETYPE=off" "-DSHMIF_TUI_ACCEL=on"))))) (synopsis "Combined display server, multimedia framework and game engine (SDL)"))) (define-public xarcan (let ((commit "8e6ee029388326cfe5cddeffe482eb3702e9b7f3") (revision "1" )) (package (name "xarcan") (version (git-version "0.5.4" revision commit)) (source (origin (method git-fetch) (file-name (git-file-name name version)) (uri (git-reference (url "https://github.com/letoram/xarcan") (commit commit))) (sha256 (base32 "0zng7cs6733mnf0p6g5wv02981f2sf567n56csax6cmzb8fpamym")))) (build-system gnu-build-system) (arguments `(#:configure-flags `("--enable-kdrive" "--enable-xarcan" "--disable-xorg" "--disable-xwayland" "--disable-xnest" "--disable-xvfb" "--enable-glamor" "--enable-glx" "--disable-int10-module" "--enable-ipv6" "--enable-record" "--without-systemd-daemon" "--enable-xcsecurity" "--disable-static" ,(string-append "--with-xkb-path=" (assoc-ref %build-inputs "xkeyboard-config") "/share/X11/xkb") ,(string-append "--with-xkb-bin-directory=" (assoc-ref %build-inputs "xkbcomp") "/bin") ,(string-append "--with-xkb-output=" "/tmp")))) ; FIXME: Copied from xorg (native-inputs (list pkg-config autoconf automake libtool util-macros)) (inputs `(("arcan" ,arcan) ("font-util" ,font-util) ("libdrm" ,libdrm) ("libepoxy" ,libepoxy) ("libkbfile" ,libxkbfile) ("libressl" ,libressl) ("libx11" ,libx11) ("libxfont2" ,libxfont2) ("mesa" ,mesa) ("pixman" ,pixman) ("xkeyboard-config" ,xkeyboard-config) ("xkbcomp" ,xkbcomp) ("xorgproto" ,xorgproto) ("xtrans" ,xtrans))) (home-page "https://arcan-fe.com") (synopsis "Patched Xserver that bridges connections to Arcan") (description "Patched Xserver with a KDrive backend that uses the arcan-shmif to map Xlib/Xcb/X clients to a running arcan instance. It allows running an X session as a window under Arcan.") (license license:expat)))) (define-public arcan-wayland (package (inherit arcan) (name "arcan-wayland") (native-inputs (list pkg-config)) (inputs (list arcan libseccomp libxkbcommon mesa wayland wayland-protocols)) (arguments `(#:tests? #f #:phases (modify-phases %standard-phases (add-before 'configure 'chdir (lambda _ (chdir "src/tools/waybridge") #t)) (add-after 'unpack 'fix-cmake-find-shmif (lambda* (#:key inputs #:allow-other-keys) (substitute* "src/platform/cmake/modules/Findarcan_shmif.cmake" (("/usr/local") (assoc-ref inputs "arcan"))) #t))))) (synopsis "Wayland protocol service for Arcan") (description "Arcan-wayland (waybridge) bridges Wayland connections with an Arcan connection point. It allows Wayland compatible clients to connect and render using Arcan.") (license license:bsd-3)))