diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-15 02:12:23 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-15 20:47:44 +0100 |
commit | 00781cb57dda331a462ad8f7e52f8d26ce440298 (patch) | |
tree | 392a53e125c7301cb785fe60e3ed483a00c6de2d /gnu/packages/debug.scm | |
parent | ce18d88347de4239f5c8c7f8e547aff8db83203f (diff) | |
download | guix-00781cb57dda331a462ad8f7e52f8d26ce440298.tar guix-00781cb57dda331a462ad8f7e52f8d26ce440298.tar.gz |
gnu: rr: Fix typo.
* gnu/packages/debug.scm (rr)[inputs]: Fix ‘cpanproto’ typo.
Diffstat (limited to 'gnu/packages/debug.scm')
-rw-r--r-- | gnu/packages/debug.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/debug.scm b/gnu/packages/debug.scm index 9dc32c70f4..3fe5fd07b3 100644 --- a/gnu/packages/debug.scm +++ b/gnu/packages/debug.scm @@ -613,7 +613,7 @@ error reporting, better tracing, profiling, and a debugger.") ("which" ,which))) (inputs `(("gdb" ,gdb) - ("cpanproto" ,capnproto) + ("capnproto" ,capnproto) ("python" ,python) ("python-pexpect" ,python-pexpect))) (home-page "https://rr-project.org/") |