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
900f59c7
Verified
Commit
900f59c7
authored
3 months ago
by
FARGES Olivier
Browse files
Options
Downloads
Patches
Plain Diff
add star-cad
parent
de19b241
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-cad.scm
+49
-0
49 additions, 0 deletions
edix/packages/star-cad.scm
with
49 additions
and
0 deletions
edix/packages/star-cad.scm
0 → 100644
+
49
−
0
View file @
900f59c7
(
define-module
(
edix
packages
star-cad
)
#
: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
(
gnu
packages
maths
)
#
:use-module
(
edix
packages
rsys
)
#
:use-module
(
edix
packages
star-enclosures-3d
)
#
:use-module
(
edix
packages
star-geometry-3d
))
(
define-public
star-cad
(
package
(
name
"star-cad"
)
(
version
"0.5"
)
(
source
(
origin
(
method
git-fetch
)
(
uri
(
git-reference
(
url
"https://gitlab.com/meso-star/star-cad.git"
)
(
commit
"0.5"
)))
(
sha256
(
base32
"04wzlp7dz4dk1ayk0l02lzfk158rf669v7kf7sq7djx9nipka8dj"
))))
(
build-system
gnu-build-system
)
(
native-inputs
(
list
pkg-config
autoconf
automake
libtool
gcc
gnu-make
))
(
propagated-inputs
(
list
gmsh
rsys
star-enclosures-3d
star-geometry-3d
))
(
arguments
`
(
#
:make-flags
(
list
(
string-append
"CC=gcc"
))
#
:phases
(
modify-phases
%standard-phases
(
delete
'configure
)
(
delete
'check
)
(
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-cad"
)
;; Remplacez avec le bon lien
(
synopsis
"Bibliothèque Star-cad"
)
(
description
"Star-cad"
)
(
license
(
list
gpl3+
))))
star-cad
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