diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-20 15:47:04 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:15 +0100 |
commit | c5e73f1634fe89edd56c28a09f5d7f0a8f6331a8 (patch) | |
tree | 36378befdd9b43580b2d8cff13b6f6f8a33eb29c /gnu/packages/golang-xyz.scm | |
parent | 940cea232db9e29199581dec4092fa141d568e15 (diff) |
gnu: go-github-com-delthas-go-libnp: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-delthas-go-libnp): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I574f9429b01813a0a2a1935e5eb9b6aeee5c9833
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index b412961bdd..5ece502102 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3833,6 +3833,34 @@ submodules: "This package provides memcache client and server functionality.") (license license:expat))) +(define-public go-github-com-delthas-go-libnp + (let ((commit "96674b98150ed492b535d61dde5767dfa2dd14ce") + (revision "1")) + (package + (name "go-github-com-delthas-go-libnp") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/delthas/go-libnp") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l2p2mpspjaffninxvghjsfywr39cravfbzpxyiq62lfpw43zwaq")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/delthas/go-libnp")) + (propagated-inputs + (list go-github-com-godbus-dbus-v5)) + (home-page "https://github.com/delthas/go-libnp") + (synopsis "Tiny library providing information about now-playing media") + (description + "@code{go-libnp} is a tiny cross-platform library for extracting +information about the music/image/video that is Now Playing on the system.") + (license license:expat)))) + (define-public go-github-com-flopp-go-findfont (package (name "go-github-com-flopp-go-findfont") |