Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
ebrains-spack-builds
Manage
Activity
Members
Labels
Plan
Issues
30
Issue boards
Milestones
Wiki
Code
Merge requests
30
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EBRAINS RI
Tech Hub
Platform
EBRAINS Software Distribution
ebrains-spack-builds
Merge requests
!269
update branch
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
update branch
master
into
add-r-workflow
Overview
0
Commits
11
Pipelines
1
Changes
3
Merged
Eleni Mathioulaki
requested to merge
master
into
add-r-workflow
2 years ago
Overview
0
Commits
11
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Compare
add-r-workflow
add-r-workflow (base)
and
latest version
latest version
1899de87
11 commits,
2 years ago
3 files
+
48
−
0
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
packages/r-rgsl/package.py
0 → 100644
+
12
−
0
Options
from
spack.package
import
*
class
RRgsl
(
RPackage
):
"""
This is an interface package to solve ODE systems using gsl_odeiv2 within R. The system to solve has to be defined using C code: a shared library, dynamically loaded by this package when solving.
"""
homepage
=
"
https://github.com/icpm-kth/rgsl
"
url
=
"
https://github.com/icpm-kth/rgsl/archive/refs/tags/v0.1.tar.gz
"
version
(
"
0.1
"
,
sha256
=
"
dd6a14dda8731f4cf32149c8a9842e4e2ba424c8404f4d6839108153b20e4c3e
"
)
# GNU Scientific Library: https://www.gnu.org/software/gsl
# spack: https://spack.readthedocs.io/en/latest/package_list.html#gsl
depends_on
(
"
gsl
"
)