diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-22 14:48:25 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-26 16:50:18 +0100 |
commit | e9f0093f7115a16728f3ee53f8b6f69c8d626a1f (patch) | |
tree | 3b5855e62d612982e3e9dfec01e3cc13ba6c59a1 /gnu/packages/golang.scm | |
parent | be41897f7149f86d6baa6f2098e8c67803bfa7db (diff) |
gnu: go-github-com-akosmarton-papipes: Move to radio.
* gnu/packages/golang.scm (go-github-com-akosmarton-papipes): Move from
here ...
* gnu/packages/radio.scm: ... to here.
Change-Id: I762f1260d9c4d7ab5083529e405664dc5ef225f7
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 0188f3adc2..bd8c05a77e 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -1277,44 +1277,6 @@ be performed.") their ASCII approximations.") (license license:asl2.0)))) -(define-public go-github-com-akosmarton-papipes - (let ((commit "3c63b4919c769c9c2b2d07e69a98abb0eb47fe64") - (revision "0")) - (package - (name "go-github-com-akosmarton-papipes") - (version (git-version "0.0.0" revision commit)) - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/akosmarton/papipes") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "16p77p3d1v26qd3knxn087jqlad2qm23q8m796cdr66hrdc0gahq")))) - (build-system go-build-system) - (inputs - (list pulseaudio)) - (arguments - `(#:import-path "github.com/akosmarton/papipes" - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'fix-paths - (lambda* (#:key inputs #:allow-other-keys) - (substitute* '("src/github.com/akosmarton/papipes/common.go" - "src/github.com/akosmarton/papipes/sink.go" - "src/github.com/akosmarton/papipes/source.go") - (("exec.Command\\(\"pactl\"") - (string-append "exec.Command(\"" - (assoc-ref inputs "pulseaudio") - "/bin/pactl\"")))))))) - (home-page "https://github.com/akosmarton/papipes") - (synopsis "Pulseaudio client library for Go") - (description - "This is a Pulseaudio client library in Golang for creating virtual -sinks and sources.") - (license license:expat)))) - ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |