From 92ef036456840adfb6dd09c6810d4c5b29070b5c Mon Sep 17 00:00:00 2001 From: Yann Dupont Date: Wed, 5 May 2021 14:10:23 +0200 Subject: [PATCH] test hdf5 --- gnu/packages/glicid.scm | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/gnu/packages/glicid.scm b/gnu/packages/glicid.scm index dab2a12..c0fddb6 100644 --- a/gnu/packages/glicid.scm +++ b/gnu/packages/glicid.scm @@ -54,7 +54,7 @@ #:use-module (gnu packages fontutils) #:use-module (guix build-system gnu) #:use-module (gnu packages image) -; #:use-module ((gnu packages gcc) #:select(custom-gcc)) + #:use-module (gnu packages maths) #:use-module (guix utils) ) @@ -117,9 +117,6 @@ %generic-search-paths))) - -;;;; CUSTOM CCIPL - (define-public gfortran-toolchain-10 (package (inherit (make-gcc-toolchain gfortran-10)) (synopsis "Complete GCC tool chain for fortean lang development") @@ -128,9 +125,6 @@ fortran lang development to be installed in user profiles. This includes fortran, as well as libc (headers and binaries, plus debugging symbols in the @code{debug} output), and binutils."))) - -;;;; CUSTOM CCIPL - (define-public gfortran-toolchain-11 (package (inherit (make-gcc-toolchain gfortran-11)) (synopsis "Complete GCC tool chain for fortean lang development") @@ -693,6 +687,18 @@ in the @code{debug} output), and binutils."))) ) +(define-public glicid-specific-hdf5 + (package + (inherit hdf5) + (name "glicid-specific-hdf5") + (inputs `( + ("gcc",gcc-11) + ("gfortran",gfortran-11) + ,@(package-inputs hdf5))) + ) +) + + (define-public glicid-keepalived (package (inherit keepalived)