diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-12-07 15:37:16 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-12-07 15:37:16 +0100 |
commit | a98fe1d46e3d6e6aa03f7cbd9b4afc74796bac00 (patch) | |
tree | b70abd948720df93c7a3363b6b0cadc21ffecdd6 /gnu | |
parent | cbef1824da48027847b14c4dde9d300a83ec9163 (diff) | |
download | guix-a98fe1d46e3d6e6aa03f7cbd9b4afc74796bac00.tar.gz |
gnu: fsom: Build with GCC 6.
* gnu/packages/bioinformatics.scm (fsom)[native-inputs]: Add gcc-6. [arguments]: Remove trailing #T.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioinformatics.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index b775d79ebb..35c28b804e 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -14083,8 +14083,9 @@ combinatorial configurations.\", G. Ehrlich - Journal of the ACM (JACM), (replace 'install (lambda* (#:key outputs #:allow-other-keys) (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) - (install-file "fsom" bin)) - #t))))) + (install-file "fsom" bin))))))) + (native-inputs + `(("gcc" ,gcc-6))) (home-page "https://github.com/ekg/fsom") (synopsis "Manage SOM (Self-Organizing Maps) neural networks") (description "A tiny C library for managing SOM (Self-Organizing Maps) |