2017-01-09 17:15:37 +00:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2017 José Miguel Sánchez García <jmi2k@openmailbox.org>
|
2022-08-03 15:19:16 +00:00
|
|
|
;;; Copyright © 2017, 2022 Efraim Flashner <efraim@flashner.co.il>
|
2021-05-01 23:24:08 +00:00
|
|
|
;;; Copyright © 2018, 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
2020-02-19 13:54:54 +00:00
|
|
|
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
2022-01-23 15:22:47 +00:00
|
|
|
;;; Copyright © 2022 (unmatched parenthesis <paren@disroot.org>
|
2022-08-03 15:19:16 +00:00
|
|
|
;;; Copyright © 2022 Trevor Richards <trev@trevdev.ca>
|
2017-01-09 17:15:37 +00:00
|
|
|
;;;
|
|
|
|
;;; 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 nim)
|
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (guix download)
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
|
|
|
#:use-module (guix packages))
|
|
|
|
|
|
|
|
(define-public nim
|
|
|
|
(package
|
|
|
|
(name "nim")
|
2022-07-02 04:39:11 +00:00
|
|
|
(version "1.6.6")
|
2017-01-09 17:15:37 +00:00
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
2017-08-07 10:36:11 +00:00
|
|
|
(uri (string-append "https://nim-lang.org/download/"
|
2017-01-09 17:15:37 +00:00
|
|
|
name "-" version ".tar.xz"))
|
|
|
|
(sha256
|
2022-07-02 04:39:11 +00:00
|
|
|
(base32 "0lm4450ig8k4l3rzxv6kcqji5l1lzicsw76ckwxm0q9qdz713cb7"))))
|
2017-01-09 17:15:37 +00:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
2022-08-03 15:19:16 +00:00
|
|
|
`(#:tests? #f ; TODO: Investigate tests failures.
|
2017-01-09 17:15:37 +00:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
2018-02-08 01:32:54 +00:00
|
|
|
(delete 'configure) ; no configure script
|
2017-01-09 17:15:37 +00:00
|
|
|
(add-after 'unpack 'patch-installer
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(substitute* "install.sh"
|
2022-08-03 15:19:16 +00:00
|
|
|
(("/usr/local") out)
|
|
|
|
(("/opt/nimble") (string-append out "/share/nimble"))
|
|
|
|
(("configdir=/etc/nim")
|
|
|
|
(string-append "configdir=" out "/etc/nim"))))))
|
2017-08-07 10:36:11 +00:00
|
|
|
(add-after 'patch-source-shebangs 'patch-more-shebangs
|
|
|
|
(lambda _
|
2020-01-16 22:14:41 +00:00
|
|
|
(let ((sh (which "sh")))
|
|
|
|
(substitute* '("tests/stdlib/tosprocterminate.nim"
|
2022-08-03 15:19:16 +00:00
|
|
|
"tests/stdlib/tstrscans.nim"
|
|
|
|
"lib/pure/osproc.nim"
|
|
|
|
"lib/pure/strscans.nim")
|
2020-01-16 22:14:41 +00:00
|
|
|
(("/bin/sh") sh))
|
2022-08-03 15:19:16 +00:00
|
|
|
(substitute* (find-files "c_code" "stdlib_osproc\\.nim\\.c")
|
|
|
|
(("\"/bin/sh\", 7") (format #f "~s, ~s" sh (string-length sh)))))))
|
2017-08-07 10:36:11 +00:00
|
|
|
(replace 'build
|
|
|
|
(lambda _
|
2022-08-03 15:19:16 +00:00
|
|
|
(setenv "XDG_CACHE_HOME" "./cache-home")
|
|
|
|
(mkdir-p "./cache-home")
|
2018-02-08 15:30:19 +00:00
|
|
|
(invoke "sh" "build.sh")
|
2022-08-03 15:19:16 +00:00
|
|
|
(invoke "./bin/nim" "c" "-d:release" "koch")
|
|
|
|
(invoke "./koch" "boot" "-d:release")
|
|
|
|
(invoke "./koch" "tools")))
|
2017-01-09 17:15:37 +00:00
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2022-08-03 15:19:16 +00:00
|
|
|
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
|
|
|
|
(mkdir-p bin)
|
|
|
|
(invoke "./install.sh" bin)
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(install-file file bin))
|
|
|
|
(delete "testament" (find-files "bin")))))))))
|
2017-08-07 10:36:11 +00:00
|
|
|
(home-page "https://nim-lang.org")
|
2017-01-09 17:15:37 +00:00
|
|
|
(synopsis "Statically-typed, imperative programming language")
|
|
|
|
(description "Nim (formerly known as Nimrod) is a statically-typed,
|
|
|
|
imperative programming language that tries to give the programmer ultimate power
|
|
|
|
without compromises on runtime efficiency. This means it focuses on compile-time
|
|
|
|
mechanisms in all their various forms.")
|
|
|
|
(license license:expat)))
|