diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-07-25 23:21:42 +0300 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-07-25 23:07:37 +0200 |
commit | af79852c99ef25f6d661c470f1d020e69ef34f1f (patch) | |
tree | c9078461e294da0e83ac320f5eb031af57d67b6b | |
parent | 16fb1e79cab8d52f9ed1f1cecbd017829c91ed51 (diff) | |
download | guix-af79852c99ef25f6d661c470f1d020e69ef34f1f.tar guix-af79852c99ef25f6d661c470f1d020e69ef34f1f.tar.gz |
gnu: neofetch: Fix search path.
* gnu/packages/admin.scm (neofetch): Fix "No such file or directory" for distro logo.
Signed-off-by: Marius Bakke <mbakke@fastmail.com>
-rw-r--r-- | gnu/packages/admin.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 451faf9eac..4d9afe8134 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -2169,7 +2169,7 @@ tool for remote execution and deployment.") (("\"/etc/neofetch") (string-append "\"" out "/etc/neofetch")) (("\"/usr/share/neofetch") - (string-append "\"" out "/usr/share/neofetch")))) + (string-append "\"" out "/share/neofetch")))) #t)) (delete 'configure)))) (home-page "https://github.com/dylanaraps/neofetch") |