mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: go-github-com-google-btree: Move to golang-build.
* gnu/packages/golang.scm (go-github-com-google-btree): Move from here ... * gnu/packages/golang-build.scm: ... to here. Change-Id: I91c659b9031291a4e6c43b024dedaa1bfcb7cea3
This commit is contained in:
parent
66c2875952
commit
d265bffc4f
2 changed files with 24 additions and 23 deletions
|
@ -140,6 +140,30 @@ functions that have a name matched by regex:.")
|
||||||
serialization format.")
|
serialization format.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-google-btree
|
||||||
|
(package
|
||||||
|
(name "go-github-com-google-btree")
|
||||||
|
(version "1.1.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/google/btree")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1k3jfj24sp4qk494wxj055vf5fjwskiydscy4a42s5jiwgcjr9gz"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/google/btree"))
|
||||||
|
(home-page "https://github.com/google/btree")
|
||||||
|
(synopsis "Simple, ordered, in-memory data structure for Go programs")
|
||||||
|
(description
|
||||||
|
"This package provides an in-memory B-Tree implementation for Go, useful
|
||||||
|
as an ordered, mutable data structure.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-google-go-cmdtest
|
(define-public go-github-com-google-go-cmdtest
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-google-go-cmdtest")
|
(name "go-github-com-google-go-cmdtest")
|
||||||
|
|
|
@ -7679,29 +7679,6 @@ implementation.")
|
||||||
using shell-style rules for quoting and commenting.")
|
using shell-style rules for quoting and commenting.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-google-btree
|
|
||||||
(package
|
|
||||||
(name "go-github-com-google-btree")
|
|
||||||
(version "1.1.3")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://github.com/google/btree")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "1k3jfj24sp4qk494wxj055vf5fjwskiydscy4a42s5jiwgcjr9gz"))))
|
|
||||||
(build-system go-build-system)
|
|
||||||
(arguments
|
|
||||||
'(#:import-path "github.com/google/btree"))
|
|
||||||
(home-page "https://github.com/google/btree")
|
|
||||||
(synopsis "Simple, ordered, in-memory data structure for Go programs")
|
|
||||||
(description
|
|
||||||
"This package provides an in-memory B-Tree implementation for Go, useful as an
|
|
||||||
ordered, mutable data structure.")
|
|
||||||
(license license:asl2.0)))
|
|
||||||
|
|
||||||
(define-public go-github-com-peterbourgon-diskv
|
(define-public go-github-com-peterbourgon-diskv
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-peterbourgon-diskv")
|
(name "go-github-com-peterbourgon-diskv")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue