1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: Add go-github-com-yudai-golcs.

* gnu/packages/golang-xyz.scm (go-github-com-yudai-golcs): New variable.

Change-Id: I3ce09b85717bfccf1d4faf8ddc28542508be08ba
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
This commit is contained in:
Roman Scherer 2024-12-29 13:14:33 +01:00 committed by Sharlatan Hellseher
parent 929be156d8
commit 4aa828cabe
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -12832,6 +12832,30 @@ detection.")
@url{https://github.com/yosuke-furukawa/json5, JSON5}.")
(license license:bsd-3))))
(define-public go-github-com-yudai-golcs
(package
(name "go-github-com-yudai-golcs")
(version "0.0.0-20170316035057-ecda9a501e82")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/yudai/golcs")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0mx6wc5fz05yhvg03vvps93bc5mw4vnng98fhmixd47385qb29pq"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/yudai/golcs"))
(home-page "https://github.com/yudai/golcs")
(synopsis "Calculate @acronym{LCS, longest common sequence} in Golang")
(description
"This package provides functions to calculate @acronym{LCS, longest
common sequence} values from two arbitrary arrays.")
(license license:expat)))
(define-public go-github-com-yuin-gopher-lua
(package
(name "go-github-com-yuin-gopher-lua")