diff options
author | Fredrik Salomonsson <plattfot@gmail.com> | 2020-06-14 16:31:38 -0700 |
---|---|---|
committer | Fredrik Salomonsson <plattfot@gmail.com> | 2020-06-14 16:45:42 -0700 |
commit | dee47d7f75eff882dd66a067e1e68b111b7349ab (patch) | |
tree | 3315c86ce9b47ec4b5f0f32ba3d4b2dbba07e1c3 | |
parent | d97227404226cb34f382920520a865daa0f69838 (diff) | |
download | pinentry-rofi-dee47d7f75eff882dd66a067e1e68b111b7349ab.tar.gz |
Fix use modules for script
-rw-r--r-- | hall.scm | 5 | ||||
-rw-r--r-- | scripts/pinentry-rofi.in | 2 |
2 files changed, 2 insertions, 5 deletions
@@ -11,9 +11,7 @@ "https://github.com/plattfot/pinentry-rofi/") (license gpl3+) (dependencies `()) - (files (libraries - ((scheme-file "pinentry-rofi") - (directory "pinentry-rofi" ()))) + (files (libraries ((scheme-file "pinentry-rofi"))) (tests ((directory "tests" ((scheme-file "pinentry-rofi"))))) @@ -25,7 +23,6 @@ (text-file "HACKING") (text-file "COPYING") (directory "doc" ((texi-file "pinentry-rofi"))) - (text-file "ChangeLog") (text-file "ChangeLog"))) (infrastructure ((scheme-file "guix") (scheme-file "hall"))))) diff --git a/scripts/pinentry-rofi.in b/scripts/pinentry-rofi.in index 377fbf7..47a85e5 100644 --- a/scripts/pinentry-rofi.in +++ b/scripts/pinentry-rofi.in @@ -25,7 +25,7 @@ (use-modules (ice-9 getopt-long) (ice-9 format) - (pinentry-rofi pinentry-rofi)) + (pinentry-rofi)) (define (main args) (let* ((option-spec '((display (single-char #\d) (value #t)) |