diff options
| author | Andreas Enge <andreas@enge.fr> | 2026-03-18 18:19:33 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-18 18:19:33 +0100 |
| commit | b5c84e83e435632c8a6bfdbb19acf46869f2bf29 (patch) | |
| tree | 1a34d248be60281281f16ac2a8852130e16b90e7 | |
| parent | a58c701785015b0db16739e11380c67c39697f2f (diff) | |
gnu: Remove bower.
* gnu/packages/mail.scm (bower): Delete variable.
Change-Id: Ibc38adc9f4cd159c3ba4908fe1c93de126bdb625
| -rw-r--r-- | gnu/packages/mail.scm | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index f0e76591ab6..9688d3afd6e 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1744,77 +1744,6 @@ and search library.") (synopsis "Pythonic bindings for the notmuch mail database using CFFI") (license license:gpl3+))) -(define-public bower - (package - (name "bower") - (version "1.1") - (home-page "https://github.com/wangp/bower") - (source - (origin - (method git-fetch) - (uri (git-reference - (url home-page) - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1zh2zlwdmpq6195kg87q5dh864jvabxnrvfvzhks53pf9wjkv80a")))) - (build-system gnu-build-system) - (arguments - (list - #:make-flags #~(list "bower" "man" - (string-append "CC=" #+(cc-for-target)) - (string-append "prefix=" #$output)) - #:parallel-tests? #f ;parallelism breaks test suite - #:phases - #~(modify-phases %standard-phases - (delete 'configure) - (add-after 'unpack 'patch-executables - (lambda* (#:key inputs #:allow-other-keys) - (substitute* "src/detect_mime_type.m" - (("\"file\"") - (format #f "~s" (search-input-file inputs "bin/file")))) - (substitute* "src/compose.m" - (("\"base64\"") - (format #f "~s" (search-input-file inputs "bin/base64")))) - (substitute* "src/prog_config.m" - (("shell_quoted\\(\"false\")") - (format #f "shell_quoted(~s)" - (search-input-file inputs "bin/false"))) - (("shell_quoted\\(\"notmuch\")") - (format #f "shell_quoted(~s)" - (search-input-file inputs "bin/notmuch"))) - (("/usr/bin/sendmail") - (search-input-file inputs "/sbin/sendmail"))))) - (replace 'check - (lambda* (#:key parallel-tests? tests? #:allow-other-keys) - (when tests? - (invoke "make" "-C" "tests" - "-j" (if parallel-tests? - (number->string (parallel-job-count)) - "1"))))) - (replace 'install - (lambda* _ - (install-file "bower" (string-append #$output "/bin")) - (install-file "bower.1" (string-append #$output - "/share/man/man1"))))))) - (native-inputs - (list diffutils - gawk - mercury - pandoc - util-linux)) - (inputs - (list coreutils - gpgme - ncurses - notmuch - sendmail)) - (synopsis "Terminal client for the Notmuch email system") - (description "@code{bower} is a curses front-end for the Notmuch email -system, written in the Mercury language.") - (license license:gpl3+) - (properties `((cpe-name . "bower-cpe-refers-to-a-different-bower"))))) - (define-public muchsync (package (name "muchsync") |
