unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 7bf9f970edc5932d26cd80d1fc3b7b71a726211c 9961 bytes (raw)
name: gnu/packages/inferno.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2018 Diego Nicola Barbato <dnbarbato@posteo.de>
;;;
;;; 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 packages inferno)
  #:use-module (ice-9 match)
  #:use-module (guix packages)
  #:use-module (guix git-download)
  #:use-module (guix hg-download)
  #:use-module (guix build-system gnu)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages xorg))

(define-public inferno
  (let ((commit "62ae0f7")
        (revision "0"))
    (package
      (name "inferno")
      (version (git-version "4" revision commit))
      (source
       (origin
         (method hg-fetch)
         (uri (hg-reference
               (url "https://bitbucket.org/inferno-os/inferno-os")
               (changeset commit)))
         (file-name (string-append name "-" version "-checkout"))
         (sha256
          (base32 "18irka9qad8m1r2m9f56glv9d0gwk4ai7n7i0mzbi47vcmm60hdd"))
         ;; Remove bundled non-free fonts.
         (modules '((guix build utils)))
         (snippet
          '(begin
             (for-each delete-file-recursively
                       '("fonts/lucidasans"
                         "fonts/pelm"
                         "fonts/lucida"
                         "fonts/lucm"))
             #t))))
      (build-system gnu-build-system)
      (inputs `(("libx11" ,libx11)
                ("xorgproto" ,xorgproto)
                ("libxext" ,libxext)))
      (arguments
       `(;; Force a 32-bit build targeting a similar architecture, i.e.:
         ;; armhf for armhf/aarch64, i686 for i686/x86_64.
         #:system ,@(match (%current-system)
                      ((or "armhf-linux" "aarch64-linux")
                       `("armhf-linux"))
                      (_
                       `("i686-linux")))
         #:phases
         (let* ((bash (assoc-ref %build-inputs "bash"))
                (objtype ,@(match (%current-system)
                             ((or "armhf-linux" "aarch64-linux")
                              `("arm"))
                             (_
                              `("386"))))
                (out (assoc-ref %outputs "out"))
                (root (string-append out "/share/inferno"))
                (root/bindir (string-append root "/Linux/"
                                            objtype "/bin"))
                (bindir (string-append out "/bin"))
                (infwm-script (string-append bindir "/infwm")))
           `(,(assoc 'set-paths %standard-phases)
             (unpack . ,(lambda* (#:key source #:allow-other-keys)
                          ;; Extract directly to 'root' since the source
                          ;; tree doubles as Inferno's root directory
                          ;; and its path is baked into the emu binary.
                          (mkdir-p root)
                          ;; Do not preserve the data modification time
                          ;; of files ('-m' flag) otherwise the 'build'
                          ;; phase fails.
                          (invoke "tar" "xvf" source "-C" root "--strip=1" "-m")
                          (chdir root)
                          #t))
             (patch-src-files . ,(lambda _
                                   ;; Substitute ocurrences of /bin/sh.
                                   (for-each (lambda (file)
                                               (substitute* file
                                                 (("/bin/sh")
                                                  (string-append bash "/bin/sh"))))
                                             '("makemk.sh"
                                               "mkfiles/mkhost-Linux"
                                               "emu/Linux/mk-wrt"
                                               "utils/mk/Posix.c"))
                                   ;; Do not pass '-m32' unconditionally
                                   ;; when building mk.
                                   (substitute* "makemk.sh"
                                     (("-m32") ""))
                                   ;; Use the correct name for gcc.
                                   (substitute* "mkfiles/mkfile-Linux-386"
                                     (("cc -") ; Don't match yacc.
                                      "gcc -"))
                                   (substitute* "mkfiles/mkfile-Linux-arm"
                                     (("arm-gcc") "gcc"))
                                   ;; Make build reproducible by
                                   ;; ensuring timestamps embedded into
                                   ;; binaries are set to 0.
                                   (substitute* "emu/Linux/mkfile"
                                     (("^KERNDATE=.*$")
                                      "KERNDATE=0\n"))
                                   #t))
             (configure . ,(lambda _
                             (substitute* "mkconfig"
                               (("ROOT=/usr/inferno")
                                (string-append "ROOT=" root))
                               (("SYSHOST=Plan9")
                                "SYSHOST=Linux")
                               (("OBJTYPE=\\$objtype")
                                (string-append "OBJTYPE=" objtype)))
                             #t))
             ;; Build mk.
             ;; TODO: Use mk from 9base instead.
             (makemk . ,(lambda _
                          (invoke "./makemk.sh")))
             (build . ,(lambda _
                         ;; Add mk's location to PATH.
                         (setenv "PATH"
                                 (string-append
                                  root/bindir ":"
                                  (getenv "PATH")))
                         ;; Build emu and .dis files using mk.
                         (invoke "mk" "-s" "nuke" "mkdirs" "install")))
             (install . ,(lambda _
                           ;; Install infwm script.
                           (mkdir-p bindir)
                           (with-output-to-file infwm-script
                             (lambda ()
                               (display
                                (string-append
                                 "#!" bash "/bin/sh\n"
                                 "exec " root/bindir "/emu $* "
                                 "/dis/sh.dis -c \""
                                 ;; Bind the host's /tmp to Inferno's
                                 ;; /tmp to make it writable.
                                 "bind -bc '#U*/tmp' /tmp; "
                                 ;; Bind the host's /home to Inferno's
                                 ;; /usr.
                                 "bind '#U*/home' /usr; "
                                 ;; Launch the window manager and login
                                 ;; as $USER.
                                 "wm/wm wm/logon -u $USER"
                                 "\"\n"))))
                           (chmod infwm-script #o755)
                           ;; Install a symlink to the Inferno emulator.
                           (symlink (string-append root/bindir "/emu")
                                    (string-append bindir "/emu"))
                           ;; Install a symlink to the Limbo compiler.
                           (symlink (string-append root/bindir "/limbo")
                                    (string-append bindir "/limbo"))
                           #t))))))
      (home-page "http://www.inferno-os.org")
      (synopsis
       "Compact operating system for building cross-platform distributed systems")
      (description
       ;; Except for the last sentence this is taken verbatim from the
       ;; intro(1) man page (man/1/0intro in the source tree).
       "Inferno is a virtualised operating system that can run natively across
a wide range of processor architectures or hosted on a wide range of
operating systems.  The principal components of the system are:
@itemize
@item The Inferno kernel which can run both native and hosted on a
range of platforms and which presents the same interface to programs
in both cases.
@item The Dis virtual machine.
@item Styx - the tiny broad-spectrum file service protocol.
@item Limbo - a new simple, modular, concurrent programming language.
@item Tk and Prefab - graphical user interface (GUI) primitives
without a lot of goo.
@item The portable cross-development suites that allow any native
Inferno platform to be cross-compiled on any hosted system.
@end itemize
This package provides hosted Inferno.\n")
      (supported-systems '("i686-linux" "x86_64-linux" "armhf-linux" "aarch64-linux"))
      (license (list
                ;; According to NOTICE the combined work is effectively
                ;; GPLv2+.
                license:gpl2+
                license:lgpl2.0+
                license:expat
                ;; XXX: Contrary to NOTICE, which claims that the
                ;; licenses of individual components "are all compatible
                ;; with the GPLv2", the Lucent Public License 1.02 is
                ;; not compatible with the GPL.
                (license:non-copyleft
                 "https://www.gnu.org/licenses/license-list.html#lucent102")
                license:freetype)))))

debug log:

solving 7bf9f970e ...
found 7bf9f970e in https://yhetil.org/guix-patches/87bm7sjmfc.fsf@GlaDOS.home/

applying [1/1] https://yhetil.org/guix-patches/87bm7sjmfc.fsf@GlaDOS.home/
diff --git a/gnu/packages/inferno.scm b/gnu/packages/inferno.scm
new file mode 100644
index 000000000..7bf9f970e

Checking patch gnu/packages/inferno.scm...
Applied patch gnu/packages/inferno.scm cleanly.

index at:
100644 7bf9f970edc5932d26cd80d1fc3b7b71a726211c	gnu/packages/inferno.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).