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
cf123e32
Unverified
Commit
cf123e32
authored
4 years ago
by
Marius Bakke
Browse files
Options
Downloads
Patches
Plain Diff
gnu: Add ghc-psqueue.
* gnu/packages/haskell-xyz.scm (ghc-psqueue): New public variable.
parent
dcfd1d2c
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
gnu/packages/haskell-xyz.scm
+23
-0
23 additions, 0 deletions
gnu/packages/haskell-xyz.scm
with
23 additions
and
0 deletions
gnu/packages/haskell-xyz.scm
+
23
−
0
View file @
cf123e32
...
...
@@ -9812,6 +9812,29 @@ (define-public ghc-protolude
replace the standard one provided by GHC.")
(license license:expat)))
(define-public ghc-psqueue
(package
(name "ghc-psqueue")
(version "1.1.0.1")
(source (origin
(method url-fetch)
(uri (string-append "mirror://hackage/package/PSQueue-"
version "/PSQueue-" version ".tar.gz"))
(sha256
(base32
"1cik7sw10sacsijmfhghzy54gm1qcyxw14shlp86lx8z89kcnkza"))))
(build-system haskell-build-system)
(home-page "https://hackage.haskell.org/package/PSQueue")
(synopsis "Priority search queue")
(description
"A @dfn{priority search queue} efficiently supports the operations of
both a search tree and a priority queue. A @code{Binding} is a product of
a key and a priority. Bindings can be inserted, deleted, modified and queried
in logarithmic time, and the binding with the least priority can be retrieved
in constant time. A queue can be built from a list of bindings, sorted by
keys, in linear time.")
(license license:bsd-3)))
(define-public ghc-psqueues
(package
(name "ghc-psqueues")
...
...
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