diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-08-07 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-08-14 02:00:01 +0200 |
commit | 2388d2d3f7e43d73b0a8a6c1282be16bafb918a7 (patch) | |
tree | b9b4d0f0714490221ee26ec32a180aecc4734b61 /gnu/packages/xiph.scm | |
parent | 2790d118b2f68e9d3599ccbe5712ddbd1dde3fa4 (diff) | |
download | guix-2388d2d3f7e43d73b0a8a6c1282be16bafb918a7.tar.gz |
gnu: rnnoise: Unhide and rename variable.
* gnu/packages/xiph.scm (xiph-rnnoise): Rename to… (rnnoise): …this. Adjust all users. [properties]: Remove HIDDEN? property as it is no longer ambiguous.
Diffstat (limited to 'gnu/packages/xiph.scm')
-rw-r--r-- | gnu/packages/xiph.scm | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/gnu/packages/xiph.scm b/gnu/packages/xiph.scm index aa513d76b0..8bc9c9b087 100644 --- a/gnu/packages/xiph.scm +++ b/gnu/packages/xiph.scm @@ -499,7 +499,7 @@ icecast server. It handles the socket connection, the timing of the data, and prevents bad data from getting to the icecast server.") (license license:gpl2+))) -(define-public xiph-rnnoise +(define-public rnnoise ;; No upstream release (let ((commit "7f449bf8bd3b933891d12c30112268c4090e4d59") (revision "0")) @@ -526,8 +526,4 @@ and prevents bad data from getting to the icecast server.") neural network. The algorithm is described in Jean-Marc Valin's paper @cite{A Hybrid DSP/Deep Learning Approach to Real-Time Full-Band Speech Enhancement}.") - (license license:bsd-3) - (properties - ;; There's no public release and a conflicting package, so hide it for - ;; now. - `((hidden? . #t)))))) + (license license:bsd-3)))) |