all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob 5d5ffe1a8d76145c5527b228b6a45689331800d8 2133 bytes (raw)
name: gnu/packages/nim.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
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 José Miguel Sánchez García <jmi2k@openmailbox.org>
;;;
;;; 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 licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public nim
  (package
    (name "nim")
    (version "0.15.2")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "http://nim-lang.org/download/"
                          name "-" version ".tar.xz"))
      (sha256
       (base32
        "12pyzjx7x4hclzrf3zf6r1qjlp60bzsaqrz0rax2rak2c8qz4pch"))))
    (build-system gnu-build-system)
    (arguments
     `(#:tests? #f
       #:phases
         (modify-phases %standard-phases
           (delete 'configure)
           (add-after 'install 'install-binaries
             (lambda* (#:key outputs #:allow-other-keys)
               (system
                 (string-append "./install.sh " (assoc-ref outputs "out") "/bin")))))))
    (home-page "http://www.nim-lang.org")
    (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)))

debug log:

solving 5d5ffe1a8 ...
found 5d5ffe1a8 in https://yhetil.org/guix/1db124bbe9a402a81340934da1c98eb5@openmailbox.org/

applying [1/1] https://yhetil.org/guix/1db124bbe9a402a81340934da1c98eb5@openmailbox.org/
diff --git a/gnu/packages/nim.scm b/gnu/packages/nim.scm
new file mode 100644
index 000000000..5d5ffe1a8

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

index at:
100644 5d5ffe1a8d76145c5527b228b6a45689331800d8	gnu/packages/nim.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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.