all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Leo Prikler <leo.prikler@student.tugraz.at>
To: Raghav Gururajan <rg@raghavgururajan.name>, 45721@debbugs.gnu.org
Subject: [bug#45721] Telegram Desktop (v20)
Date: Wed, 20 Jan 2021 16:10:02 +0100	[thread overview]
Message-ID: <b105fafecb44da3162d56490f565a97fa155022b.camel@student.tugraz.at> (raw)
In-Reply-To: <c7f8c902-f875-6452-0347-fa41c8bf402c@raghavgururajan.name>

Am Mittwoch, den 20.01.2021, 09:42 -0500 schrieb Raghav Gururajan:
> +             (let* ((to (getcwd))
> +                    (cmake-helpers (assoc-ref inputs "cmake-helpers-
> for-telegram-desktop"))
> +                    (codegen (assoc-ref inputs "codegen"))
> +                    (lib-base (assoc-ref inputs "lib-base-for-
> telegram-desktop"))
> +                    (lib-crl (assoc-ref inputs "lib-crl-for-
> telegram-desktop"))
> +                    (lib-lottie (assoc-ref inputs "lib-lottie-for-
> telegram-desktop"))
> +                    (lib-qr (assoc-ref inputs "lib-qr-for-telegram-
> desktop"))
> +                    (lib-rlottie (assoc-ref inputs "lib-rlottie-for-
> telegram-desktop"))
> +                    (lib-rpl (assoc-ref inputs "lib-rpl-for-
> telegram-desktop"))
> +                    (lib-spellcheck (assoc-ref inputs "lib-
> spellcheck-for-telegram-desktop"))
> +                    (lib-storage (assoc-ref inputs "lib-storage-for-
> telegram-desktop"))
> +                    (lib-tl (assoc-ref inputs "lib-tl-for-telegram-
> desktop"))
> +                    (lib-ui (assoc-ref inputs "lib-ui-for-telegram-
> desktop"))
> +                    (lib-webrtc (assoc-ref inputs "lib-webrtc-for-
> telegram-desktop"))
> +                    (libtgvoip (assoc-ref inputs "libtgvoip-for-
> telegram-desktop"))
> +                    (rlottie (assoc-ref inputs "rlottie-for-
> telegram-desktop"))
> +                    (tgcalls (assoc-ref inputs "tgcalls-for-
> telegram-desktop")))
> +               (copy-recursively
> +                cmake-helpers
> +                (string-append to "/cmake"))
> +               (copy-recursively
> +                codegen
> +                (string-append to "/Telegram/codegen"))
> +               (copy-recursively
> +                lib-base
> +                (string-append to "/Telegram/lib_base"))
> +               (copy-recursively
> +                lib-crl
> +                (string-append to "/Telegram/lib_crl"))
> +               (copy-recursively
> +                lib-lottie
> +                (string-append to "/Telegram/lib_lottie"))
> +               (copy-recursively
> +                lib-qr
> +                (string-append to "/Telegram/lib_qr"))
> +               (copy-recursively
> +                lib-rlottie
> +                (string-append to "/Telegram/lib_rlottie"))
> +               (copy-recursively
> +                lib-rpl
> +                (string-append to "/Telegram/lib_rpl"))
> +               (copy-recursively
> +                lib-spellcheck
> +                (string-append to "/Telegram/lib_spellcheck"))
> +               (copy-recursively
> +                lib-storage
> +                (string-append to "/Telegram/lib_storage"))
> +               (copy-recursively
> +                lib-tl
> +                (string-append to "/Telegram/lib_tl"))
> +               (copy-recursively
> +                lib-ui
> +                (string-append to "/Telegram/lib_ui"))
> +               (copy-recursively
> +                lib-webrtc
> +                (string-append to "/Telegram/lib_webrtc"))
> +               (copy-recursively
> +                libtgvoip
> +                (string-append to "/Telegram/ThirdParty/libtgvoip"))
> +               (copy-recursively
> +                rlottie
> +                (string-append to "/Telegram/ThirdParty/rlottie"))
> +               (copy-recursively
> +                tgcalls
> +                (string-append to "/Telegram/ThirdParty/tgcalls")))
You're catching up to where I am locally.
I'm writing the same as
  (for-each 
   (match-lambda 
     ((dst src) (copy-recursively src dst)))
   `(("cmake" ,(assoc-ref inputs "cmake-helpers"))
     ("Telegram/codegen" ,(assoc-ref inputs "codegen-source")
     [...]))
though in my current version I also make dst writable because I swapped
the phase ordering for some reason.

To that end, I've renamed the inputs accordingly ("<package>-source"),
while keeping the file names intact.  This might also serve as a
reminder to those unbundling them.

Regards,
Leo





  reply	other threads:[~2021-01-20 15:11 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-08  0:20 [bug#45721] Telegram Desktop Raghav Gururajan
2021-01-08  0:44 ` [bug#45721] Telegram Desktop (v2) Raghav Gururajan
2021-01-12  3:12 ` [bug#45721] Telegram Desktop (v3) Raghav Gururajan
2021-01-12  3:27 ` [bug#45721] Telegram Desktop (v4) Raghav Gururajan
2021-01-13 22:13 ` [bug#45721] Telegram Desktop (v5) Raghav Gururajan
2021-01-14  5:39 ` [bug#45721] Telegram Desktop (v6) Raghav Gururajan
2021-01-14  6:41 ` [bug#45721] Telegram Desktop (v7) Raghav Gururajan
2021-01-14 10:38 ` [bug#45721] Telegram Desktop (v8) Raghav Gururajan
2021-01-16 16:08 ` [bug#45721] Telegram Desktop (v9) Raghav Gururajan
2021-01-16 17:15   ` Nicolò Balzarotti
2021-01-16 21:22     ` Raghav Gururajan
2021-01-16 18:04 ` Leo Prikler
2021-01-17  0:19   ` Raghav Gururajan
2021-01-17  0:36     ` Leo Prikler
2021-01-17  1:10       ` Raghav Gururajan
2021-01-17  0:05 ` [bug#45721] Telegram Desktop (v10) Raghav Gururajan
2021-01-17  0:29 ` [bug#45721] Telegram Desktop (v11) Raghav Gururajan
2021-01-17  1:04 ` [bug#45721] Telegram Desktop (v12) Raghav Gururajan
2021-01-17  1:52 ` [bug#45721] Telegram Desktop (v13) Raghav Gururajan
2021-01-17 12:13   ` Leo Prikler
2021-01-17 14:49     ` Raghav Gururajan
2021-01-17 19:08       ` [bug#45721] [PATCH v15] Add Telegram Desktop Leo Prikler
2021-01-17 21:59         ` Raghav Gururajan
2021-01-19 10:11         ` [bug#45721] [PATCH v16] " Leo Prikler
2021-01-17 14:43 ` [bug#45721] Telegram Desktop (v14) Raghav Gururajan
2021-01-20 10:41 ` [bug#45721] Telegram Desktop (v17) Raghav Gururajan
2021-01-20 11:07   ` Leo Prikler
2021-01-20 12:32     ` Raghav Gururajan
2021-01-20 12:29 ` [bug#45721] Telegram Desktop (v18) Raghav Gururajan
2021-01-20 13:49 ` [bug#45721] Telegram Desktop (v19) Raghav Gururajan
2021-01-20 14:42 ` [bug#45721] Telegram Desktop (v20) Raghav Gururajan
2021-01-20 15:10   ` Leo Prikler [this message]
2021-01-21  3:44 ` [bug#45721] Telegram Desktop (v21) Raghav Gururajan
2021-01-21 19:11   ` [bug#45721] [PATCH v22] Add Telegram Desktop Leo Prikler
2021-01-21 19:37     ` Raghav Gururajan
2021-01-21 19:44       ` Leo Prikler
2021-01-21 19:46         ` Raghav Gururajan
2021-01-22  4:27 ` [bug#45721] Telegram Desktop (v23) Raghav Gururajan
2021-01-22  7:42   ` Leo Prikler
2021-01-28  0:41     ` Raghav Gururajan
2021-01-28  0:41 ` [bug#45721] Telegram Desktop (v24) Raghav Gururajan
2021-01-28  7:47   ` Leo Prikler
2021-01-30 17:04 ` [bug#45721] Telegram Desktop (v25) Raghav Gururajan
     [not found]   ` <e881733992b22e238f2b90149dbceac6c3467180.camel@student.tugraz.at>
     [not found]     ` <e5040a67-824f-17c8-e16f-1a68531b3d5f@raghavgururajan.name>
2021-01-30 18:24       ` Leo Prikler
2021-01-30 19:30         ` Raghav Gururajan
2021-01-30 18:02 ` [bug#45721] Telegram Desktop (v26) Raghav Gururajan
2021-01-30 19:02 ` [bug#45721] Telegram Desktop (v27) Raghav Gururajan
2021-01-31  8:37   ` bug#45721: " Leo Prikler
2021-01-31 19:11     ` [bug#45721] " Raghav Gururajan
2021-01-31 13:57   ` Jonathan Brielmaier
2021-01-31 14:10     ` Leo Prikler
2021-01-31 16:50       ` Jonathan Brielmaier
2021-01-31 16:56         ` Leo Prikler
2021-01-31 17:01           ` Jonathan Brielmaier
2021-01-31 19:14             ` Raghav Gururajan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b105fafecb44da3162d56490f565a97fa155022b.camel@student.tugraz.at \
    --to=leo.prikler@student.tugraz.at \
    --cc=45721@debbugs.gnu.org \
    --cc=rg@raghavgururajan.name \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.