unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 5b2da2e7019ecc17612fce71bb5329b62683928a 1083 bytes (raw)
name: gnu/packages/ai.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
 
(define-module (gnu packages ai)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix utils)
  #:use-module (guix download)
  #:use-module (guix packages)
  #:use-module (guix build-system cmake)
  #:use-module (guix git-download)
  #:use-module (gnu packages))

(define-public libfann
  (package
    (name "libfann")
    (version "d71d54788b")
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/libfann/fann.git")
                    (commit version)))
              (sha256
               (base32
                "0ibwpfrjs6q2lijs8slxjgzb2llcl6rk3v2ski4r6215g5jjhg3x"))))
    (build-system cmake-build-system)
    (arguments
     `(#:tests? #f))
    (home-page "http://leenissen.dk/fann/wp/")
    (synopsis "Fast Artificial Neural Network")
    (description
     "FANN is a free open source neural network library, which implements
multilayer artificial neural networks in C with support for both fully
connected and sparsely connected networks.")
    (license license:lgpl2.1)))


debug log:

solving 5b2da2e70 ...
found 5b2da2e70 in https://yhetil.org/guix-patches/1517057739.331219.1250048536.75FA3BFA@webmail.messagingengine.com/

applying [1/1] https://yhetil.org/guix-patches/1517057739.331219.1250048536.75FA3BFA@webmail.messagingengine.com/
diff --git a/gnu/packages/ai.scm b/gnu/packages/ai.scm
new file mode 100644
index 000000000..5b2da2e70

Checking patch gnu/packages/ai.scm...
1:38: new blank line at EOF.
+
Applied patch gnu/packages/ai.scm cleanly.
warning: 1 line adds whitespace errors.

index at:
100644 5b2da2e7019ecc17612fce71bb5329b62683928a	gnu/packages/ai.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).