Skip to content
Snippets Groups Projects
Verified Commit 2a549fef authored by FARGES Olivier's avatar FARGES Olivier
Browse files

hash 32 update

parent d870b269
No related branches found
No related tags found
No related merge requests found
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
(url "https://gitlab.com/meso-star/star-sp.git") (url "https://gitlab.com/meso-star/star-sp.git")
(commit "0.14"))) (commit "0.14")))
(sha256 (sha256
(base32 "11lcs6lhbjdizrf3chjg6mlnsp89h558vdml3l8vz3a6scgblzg2")))) (base32 "1xgxcmn3jpmjy04jwrcphk0ij51xrq4x2rh0zs682biib78rhyfl"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs
(list pkg-config autoconf automake libtool)) (list pkg-config autoconf automake libtool))
......
(define-module (edix packages star-wf)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (guix licenses)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages build-tools)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages gcc)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
#:use-module (gnu packages maths)
#:use-module (gnu packages bash)
#:use-module (gnu packages check)
#:use-module (edix packages rsys))
(define-public star-wf
(package
(name "star-wf")
(version "0.0")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/meso-star/star-wf.git")
(commit "0.0")))
(sha256
(base32 "02y5f7h0r5f3jwz653z12dyxaf3zvzjb0skdqx5kkkv1j2zcaqgp"))))
(build-system gnu-build-system)
(native-inputs
(list pkg-config autoconf automake libtool))
(inputs
(list gcc
gfortran
bash
gnu-make rsys
))
(arguments
`(#:make-flags (list (string-append "CC=gcc" ))
#:phases
(modify-phases %standard-phases
(delete 'configure)
(delete 'check)
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
(invoke "make" (string-join make-flags " "))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(invoke "make" "install" (string-append "PREFIX=" out))))))))
(home-page "https://meso-star.com/star-wf")
(synopsis "Bibliothèque Star-WF")
(description "Star-WF")
(license (list gpl3+))))
star-wf
(define-module (edix packages stardis-solver)
#:use-module (guix packages)
#:use-module (guix git-download)
#:use-module (guix build-system gnu)
#:use-module (guix licenses)
#:use-module (guix utils)
#:use-module (gnu packages)
#:use-module (gnu packages build-tools)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages gcc)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
#:use-module (gnu packages maths)
#:use-module (gnu packages bash)
#:use-module (gnu packages check)
#:use-module (edix packages star-2d)
#:use-module (edix packages star-3d)
#:use-module (edix packages star-enclosures-2d)
#:use-module (edix packages star-enclosures-3d)
#:use-module (edix packages star-sp)
#:use-module (edix packages star-wf)
#:use-module (edix packages rsys))
(define-public stardis-solver
(package
(name "stardis-solver")
(version "0.16.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://gitlab.com/meso-star/stardis-solver.git")
(commit "0.16.1")))
(sha256
(base32 "0qda3k6j1svq0anbrhx7r3g0y9dcziw140lnh7w1rmhnsay8dwkg"))))
(build-system gnu-build-system)
(native-inputs
(list pkg-config autoconf automake libtool))
(inputs
(list gcc
gfortran
bash
gnu-make rsys
))
(arguments
`(#:make-flags (list (string-append "CC=gcc" ))
#:phases
(modify-phases %standard-phases
(delete 'configure)
(delete 'check)
(replace 'build
(lambda* (#:key make-flags #:allow-other-keys)
(invoke "make" (string-join make-flags " "))))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(invoke "make" "install" (string-append "PREFIX=" out))))))))
(home-page "https://meso-star.com/stardis-solver") ;; Remplacez avec le bon lien
(synopsis "Stardis-solver")
(description "Star-solver")
(license (list gpl3+))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment