mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
nongnu: Add dyalog-apl.
* nongnu/packages/dyalog.scm: New file. (dyalog-apl): New variable. Signed-off-by: Jonathan Brielmaier <jonathan.brielmaier@web.de>
This commit is contained in:
parent
b219d61448
commit
af4fc4fb6a
1 changed files with 237 additions and 0 deletions
237
nongnu/packages/dyalog.scm
Normal file
237
nongnu/packages/dyalog.scm
Normal file
|
@ -0,0 +1,237 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2022 B. Wilson <x@wilsonb.com>
|
||||
;;;
|
||||
;;; 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 (nongnu packages dyalog)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages bootstrap)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages cups)
|
||||
#:use-module (gnu packages databases)
|
||||
#:use-module (gnu packages elf)
|
||||
#:use-module (gnu packages fontutils)
|
||||
#:use-module (gnu packages gcc)
|
||||
#:use-module (gnu packages glib)
|
||||
#:use-module (gnu packages gtk)
|
||||
#:use-module (gnu packages icu4c)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages nss)
|
||||
#:use-module (gnu packages xorg)
|
||||
#:use-module (gnu packages xml)
|
||||
#:use-module (guix build utils)
|
||||
#:use-module (guix build-system gnu)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix records)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (ice-9 regex)
|
||||
#:use-module (ice-9 match)
|
||||
#:use-module (nongnu packages dotnet)
|
||||
#:use-module (nongnu packages ncurses)
|
||||
#:use-module ((nonguix licenses) #:prefix license:))
|
||||
|
||||
(define-public dyalog-apl
|
||||
(package
|
||||
(name "dyalog-apl")
|
||||
(version "18.2.45405")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://www.dyalog.com/uploads/php/download.dyalog.com/"
|
||||
"download.php?file=" (version-major+minor version)
|
||||
"/linux_64_" version "_unicode.x86_64.deb"))
|
||||
(sha256
|
||||
(base32 "0qx6z4n9p0dfrk0wwh66s8z8m91cq4inwan8w03gqqis60cxc3x4"))))
|
||||
(build-system gnu-build-system)
|
||||
(outputs '("out" "fonts"))
|
||||
(inputs (list alsa-lib
|
||||
at-spi2-atk
|
||||
at-spi2-core
|
||||
atk
|
||||
cups
|
||||
dbus
|
||||
dotnet-core-3.1
|
||||
fontconfig
|
||||
expat
|
||||
(list gcc "lib")
|
||||
glib
|
||||
glibc
|
||||
gtk+-2
|
||||
icu4c
|
||||
libx11
|
||||
libxcb
|
||||
libxcomposite
|
||||
libxcursor
|
||||
libxdamage
|
||||
libxext
|
||||
libxfixes
|
||||
libxi
|
||||
libxrender
|
||||
libxscrnsaver
|
||||
libxtst
|
||||
libxrandr
|
||||
ncurses/tinfo-5
|
||||
nspr
|
||||
nss
|
||||
pango
|
||||
unixodbc))
|
||||
(native-inputs (list binutils bzip2 patchelf tar))
|
||||
(arguments
|
||||
`(#:modules (((guix build gremlin) #:select (file-runpath))
|
||||
((guix elf) #:select (elf-segments parse-elf PT_INTERP))
|
||||
((ice-9 binary-ports) #:select (get-bytevector-n))
|
||||
((srfi srfi-1) #:select (last))
|
||||
,@%gnu-build-system-modules)
|
||||
#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'unpack
|
||||
(lambda* (#:key inputs #:allow-other-keys)
|
||||
(let ((source (assoc-ref inputs "source")))
|
||||
(invoke "ar" "x" source)
|
||||
(invoke "tar" "-xzvf" "data.tar.gz"))))
|
||||
(replace 'configure
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(lib (string-append out "/lib/dyalog"))
|
||||
(in (string-append "opt/mdyalog/"
|
||||
,(version-major+minor version)
|
||||
"/64/unicode/")))
|
||||
(substitute* (string-append in "mapl")
|
||||
(("\"\\$\\{DYALOG\\}/dyalog\"" dyalog)
|
||||
(string-append "exec -a dyalog " dyalog)))
|
||||
(substitute* (string-append in "scriptbin/dyalogscript")
|
||||
(("^INSTALLDIR=.*") (format #f "INSTALLDIR=\"~a\"~%" lib))))))
|
||||
(delete 'build)
|
||||
(replace 'install
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(fonts (assoc-ref outputs "fonts"))
|
||||
(lib (string-append out "/lib/dyalog"))
|
||||
(bin (string-append out "/bin"))
|
||||
(truetype (string-append fonts "/share/fonts/truetype"))
|
||||
(dotnet (assoc-ref inputs "dotnet"))
|
||||
(dotnet-root (string-append dotnet "/share/dotnet"))
|
||||
(icu4c (assoc-ref inputs "icu4c"))
|
||||
(icu4c-lib (string-append icu4c "/lib"))
|
||||
(in (string-append "opt/mdyalog/"
|
||||
,(version-major+minor version)
|
||||
"/64/unicode/")))
|
||||
(mkdir-p lib)
|
||||
(copy-recursively in lib)
|
||||
(delete-file-recursively (string-append lib "/fonts"))
|
||||
|
||||
(mkdir-p truetype)
|
||||
(install-file (string-append in "/fonts/Apl385.ttf") truetype)
|
||||
(install-file (string-append in "/fonts/APL333.ttf") truetype)
|
||||
|
||||
(mkdir-p bin)
|
||||
(symlink (string-append lib "/mapl")
|
||||
(string-append bin "/dyalog"))
|
||||
(symlink (string-append lib "/scriptbin/dyalogscript")
|
||||
(string-append bin "/dyalogscript"))
|
||||
(wrap-program (string-append lib "/dyalog")
|
||||
`("DOTNET_ROOT" = (,dotnet-root))
|
||||
`("LD_LIBRARY_PATH" ":" suffix (,icu4c-lib)))
|
||||
#t)))
|
||||
(add-after 'install 'patch-elf-files
|
||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(lib (string-append out "/lib/dyalog"))
|
||||
(glibc (assoc-ref inputs "glibc"))
|
||||
(ld.so (string-append glibc ,(glibc-dynamic-linker)))
|
||||
(rpath (pk (string-join
|
||||
(cons* lib
|
||||
(string-append lib "/lib")
|
||||
(string-append (assoc-ref inputs "nss")
|
||||
"/lib/nss")
|
||||
(map (lambda (pkg)
|
||||
(string-append (assoc-ref inputs pkg)
|
||||
"/lib"))
|
||||
'("alsa-lib"
|
||||
"at-spi2-atk"
|
||||
"at-spi2-core"
|
||||
"atk"
|
||||
"cups"
|
||||
"dbus"
|
||||
"expat"
|
||||
"fontconfig-minimal"
|
||||
"gcc"
|
||||
"glib"
|
||||
"glibc"
|
||||
"gtk+"
|
||||
"libx11"
|
||||
"libxcb"
|
||||
"libxcomposite"
|
||||
"libxcursor"
|
||||
"libxdamage"
|
||||
"libxext"
|
||||
"libxfixes"
|
||||
"libxi"
|
||||
"libxrender"
|
||||
"libxscrnsaver"
|
||||
"libxtst"
|
||||
"libxrandr"
|
||||
"ncurses-with-tinfo"
|
||||
"nspr"
|
||||
"pango"
|
||||
"unixodbc")))
|
||||
":")))
|
||||
(elf-file?* (lambda (file stat) (elf-file? file))))
|
||||
|
||||
(define* (file-segments file #:key type)
|
||||
(let* ((bv (call-with-input-file file
|
||||
(lambda (port)
|
||||
(get-bytevector-n port 4096))
|
||||
#:binary #t #:guess-encoding #f))
|
||||
(segments (elf-segments (parse-elf bv)))
|
||||
(select? (lambda (elf)
|
||||
(eq? (elf-segment-type elf) type))))
|
||||
(if type
|
||||
(filter select? segments)
|
||||
segments)))
|
||||
|
||||
(define* (set-runpath file #:optional (runpath rpath))
|
||||
(if (file-runpath file)
|
||||
(begin
|
||||
(format #f "Setting RUNPATH: ~a~&" file)
|
||||
(invoke "patchelf" "--set-rpath" runpath file)
|
||||
(invoke "patchelf" "--shrink-rpath" file))))
|
||||
|
||||
(define* (set-interpreter file #:optional (interp ld.so))
|
||||
(if (not (null? (file-segments file #:type PT_INTERP)))
|
||||
(begin
|
||||
(format #f "Setting interpreter: ~a~%" file)
|
||||
(invoke "patchelf" "--set-interpreter" interp file))))
|
||||
|
||||
(define (patch-elf file)
|
||||
(begin
|
||||
(set-runpath file)
|
||||
(set-interpreter file)))
|
||||
|
||||
(for-each patch-elf (find-files out elf-file?*))
|
||||
#t))))))
|
||||
(home-page "https://www.dyalog.com/")
|
||||
(synopsis "Dyalog APL interpreter and programming language environment")
|
||||
(description "Dyalog APL is de facto the most widely deployed dialect of
|
||||
APL in the wild. The interpreter boasts world-class performance benchmarks,
|
||||
excellent tooling integration, and support for modern APL features.")
|
||||
(license (license:nonfree
|
||||
"https://www.dyalog.com/prices-and-licences.htm"))))
|
Loading…
Reference in a new issue