guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#48599] [PATCH] gnu: Add omemo-wget.


From: zimoun
Subject: [bug#48599] [PATCH] gnu: Add omemo-wget.
Date: Fri, 02 Jul 2021 12:23:55 +0200
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux)

Hi Raghav,

I have not tried this patch.  It is 4 weeks so maybe you can push it if
it builds and works for you. WDYT?


On Sun, 23 May 2021 at 03:38, Raghav Gururajan <rg@raghavgururajan.name> wrote:
> * gnu/packages/messaging.scm (omemo-wget): New variable.
> ---
>  gnu/packages/messaging.scm | 41 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 41 insertions(+)

[...]

> +(define-public omemo-wget
> +  (package
> +    (name "omemo-wget")
> +    (version "0.3.0")
> +    (source
> +     (origin
> +       (method git-fetch)
> +       (uri
> +        (git-reference
> +         (url "https://github.com/roobre/omemo-wget";)
> +         (commit (string-append "v" version))))
> +       (file-name (git-file-name name version))
> +       (sha256
> +        (base32 "0s3vfaicw5xbjl9yiyr4ckrzhzqbvfh1w2ih1igavlfpgw4v7kva"))))
> +    (build-system go-build-system)
> +    (arguments
> +     `(#:import-path "github.com/roobre/omemo-wget"
> +       #:phases
> +       (modify-phases %standard-phases
> +         (add-after 'unpack 'patch-source
> +           (lambda* (#:key inputs #:allow-other-keys)
> +             (let* ((xdg-utils (assoc-ref inputs "xdg-utils"))
> +                    (xdg-open (string-append xdg-utils "/bin/xdg-open")))
> +               (substitute* (find-files "." "\\.go$")
> +                 ;; To correct the import path of 'aesgcm' package.
> +                 (("roob\\.re/omemo-wget/aesgcm")
> +                  "github.com/roobre/omemo-wget/aesgcm")
> +                 ;; To use absolute path of 'xdg-open' program.
> +                 (("xdg-open") xdg-open))))))))
> +    (inputs
> +     `(("go-github-com-pkg-errors" ,go-github-com-pkg-errors)
> +       ("xdg-utils" ,xdg-utils)))       ; for xdg-open program
> +    (home-page "https://github.com/roobre/omemo-wget";)
> +    (synopsis "CLI to download and decrypt aesgcm:// URLs")

Maybe as synopsis: "Command-line interface for downloading and
decrypting @code{aesgcm://} URLs".  WDYT?

Cheers,
simon





reply via email to

[Prev in Thread] Current Thread [Next in Thread]