Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edix-channel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FARGES Olivier
edix-channel
Commits
4f9c8cb2
Verified
Commit
4f9c8cb2
authored
3 months ago
by
FARGES Olivier
Browse files
Options
Downloads
Patches
Plain Diff
add star-2d
parent
6c05cab9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
edix/packages/star-2d.scm
+55
-0
55 additions, 0 deletions
edix/packages/star-2d.scm
with
55 additions
and
0 deletions
edix/packages/star-2d.scm
0 → 100644
+
55
−
0
View file @
4f9c8cb2
(
define-module
(
edix
packages
star-2d
)
#
: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
embree-edix
)
#
:use-module
(
edix
packages
rsys
))
(
define-public
star-2d
(
package
(
name
"star-2d"
)
(
version
"0.7"
)
(
source
(
origin
(
method
git-fetch
)
(
uri
(
git-reference
(
url
"https://gitlab.com/meso-star/star-2d.git"
)
(
commit
"0.7"
)))
(
sha256
(
base32
"11mvswcbdfnxf6zkpj9jgiqfjalknipbyppbpx27nrqrixqx7mah"
))))
(
build-system
gnu-build-system
)
(
native-inputs
(
list
pkg-config
autoconf
automake
libtool
embree-edix
))
(
inputs
(
list
gcc
gfortran
bash
gnu-make
))
(
propagated-inputs
(
list
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-2d"
)
(
synopsis
"Bibliothèque Star-2D"
)
(
description
"Star-2D"
)
(
license
(
list
gpl3+
))))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment