Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Guix
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ogs
inf
Guix
Commits
10b1f688
Commit
10b1f688
authored
9 years ago
by
Andreas Enge
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add cm.
* gnu/packages/algebra.scm (cm): New variable.
parent
9f51293c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
gnu/packages/algebra.scm
+29
-0
29 additions, 0 deletions
gnu/packages/algebra.scm
with
29 additions
and
0 deletions
gnu/packages/algebra.scm
+
29
−
0
View file @
10b1f688
...
...
@@ -20,6 +20,7 @@
(
define-module
(
gnu
packages
algebra
)
#
:use-module
(
gnu
packages
)
#
:use-module
(
gnu
packages
compression
)
#
:use-module
(
gnu
packages
multiprecision
)
#
:use-module
(
gnu
packages
mpi
)
#
:use-module
(
gnu
packages
perl
)
...
...
@@ -61,6 +62,34 @@ (define-public mpfrcx
(
license
license:lgpl2
.
1
+
)
(
home-page
"http://mpfrcx.multiprecision.org/"
)))
(
define-public
cm
(
package
(
name
"cm"
)
(
version
"0.2.1"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
string-append
"http://www.multiprecision.org/cm/download/cm-"
version
".tar.gz"
))
(
sha256
(
base32
"1r5dx5qy0ka2sq26n9jll9iy4sjqg0jp5r3jnbjhpgxvmj8jbhq8"
))))
(
build-system
gnu-build-system
)
(
propagated-inputs
`
((
"mpfrcx"
,
mpfrcx
)
(
"zlib"
,
zlib
)))
; Header files included from cm_common.h.
(
inputs
`
((
"pari-gp"
,
pari-gp
)))
(
synopsis
"CM constructions for elliptic curves"
)
(
description
"The CM software implements the construction of ring class fields of
imaginary quadratic number fields and of elliptic curves with complex
multiplication via floating point approximations. It consists of libraries
that can be called from within a C program and of executable command
line applications."
)
(
license
license:gpl2+
)
(
home-page
"http://cm.multiprecision.org/"
)))
(
define-public
fplll
(
package
(
name
"fplll"
)
...
...
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