Advertisement
Guest User

Untitled

a guest
Mar 14th, 2020
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 3.95 KB | None | 0 0
  1. 1 file changed, 44 insertions(+), 40 deletions(-)
  2. gnu/packages/messaging.scm | 84 ++++++++++++++++++++++++----------------------
  3.  
  4. modified   gnu/packages/messaging.scm
  5. @@ -223,47 +223,51 @@ identi.ca and status.net).")
  6.      (license (list license:gpl2+ license:bsd-2))))
  7.  
  8.  (define-public bitlbee-discord
  9. -  (package
  10. -    (name "bitlbee-discord")
  11. -    (version "0.4.2")
  12. -    (source
  13. -     (origin
  14. -       (method git-fetch)
  15. -       (uri (git-reference
  16. -             (url "https://github.com/sm00th/bitlbee-discord.git")
  17. -             (commit version)))
  18. -       (file-name (git-file-name name version))
  19. -       (sha256
  20. -        (base32 "02pigk2vbz0jdz11f96sygdvp1j762yjn62h124fkcsc070g7a2f"))))
  21. -    (build-system gnu-build-system)
  22. -    (arguments
  23. -     `(#:phases
  24. -       (modify-phases %standard-phases
  25. -         (add-after 'unpack 'patch-autogen
  26. -           (lambda _
  27. -             (let ((sh (which "sh")))
  28. -               (substitute* "autogen.sh" (("/bin/sh") sh))
  29. -               (setenv "CONFIG_SHELL" sh))
  30. -             #t))
  31. -         (replace 'configure
  32. -           (lambda* (#:key inputs outputs #:allow-other-keys)
  33. -             (invoke "./configure"
  34. -                     (string-append "--with-plugindir="
  35. -                                    (assoc-ref outputs "out")
  36. -                                    "/lib/bitlbee/")))))))
  37. -    (inputs `(("glib" ,glib)))
  38. -    (native-inputs `(("pkg-config" ,pkg-config)
  39. -                     ("autoconf" ,autoconf)
  40. -                     ("automake" ,automake)
  41. -                     ("texinfo" ,texinfo)
  42. -                     ("libtool" ,libtool)
  43. -                     ("bitlbee" ,bitlbee) ; needs bitlbee headers
  44. -                     ("bash" ,bash)))
  45. -    (synopsis "Discord plugin for Bitlbee")
  46. -    (description "Bitlbee-discord is a plugin for Bitlbee witch provides
  47. +  (let ((commit "3061edd283b4e886384e5e8cad10f92dc45f3ee7"))
  48. +    (package
  49. +      (name "bitlbee-discord")
  50. +      (version "20200216")
  51. +      (source
  52. +       (origin
  53. +         (method git-fetch)
  54. +         (uri (git-reference
  55. +               (url "https://github.com/sm00th/bitlbee-discord.git")
  56. +               (commit commit)))
  57. +         (file-name (git-file-name name version))
  58. +         (sha256
  59. +          (base32 "1d6nkr7wfrhra09ql258hvhr6q8kmnigcr14hjbwk10kqcb277y6"))))
  60. +      (build-system gnu-build-system)
  61. +      (arguments
  62. +       `(#:phases
  63. +         (modify-phases %standard-phases
  64. +           (add-after 'unpack 'patch-autogen
  65. +             (lambda _
  66. +               (let ((sh (which "sh")))
  67. +                 (substitute* "autogen.sh" (("/bin/sh") sh))
  68. +                 (setenv "CONFIG_SHELL" sh))
  69. +               #t))
  70. +           (replace 'configure
  71. +             (lambda* (#:key inputs outputs #:allow-other-keys)
  72. +               (invoke "./configure"
  73. +                       (string-append "--with-bdatadir="
  74. +                                      (assoc-ref outputs "out")
  75. +                                      "/share/bitlbee/")
  76. +                       (string-append "--with-plugindir="
  77. +                                      (assoc-ref outputs "out")
  78. +                                      "/lib/bitlbee/")))))))
  79. +      (inputs `(("glib" ,glib)))
  80. +      (native-inputs `(("pkg-config" ,pkg-config)
  81. +                       ("autoconf" ,autoconf)
  82. +                       ("automake" ,automake)
  83. +                       ("texinfo" ,texinfo)
  84. +                       ("libtool" ,libtool)
  85. +                       ("bitlbee" ,bitlbee) ; needs bitlbee headers
  86. +                       ("bash" ,bash)))
  87. +      (synopsis "Discord plugin for Bitlbee")
  88. +      (description "Bitlbee-discord is a plugin for Bitlbee witch provides
  89.  access to servers running the Discord protocol.")
  90. -    (home-page "https://github.com/sm00th/bitlbee-discord/")
  91. -    (license license:gpl2+)))
  92. +      (home-page "https://github.com/sm00th/bitlbee-discord/")
  93. +      (license license:gpl2+))))
  94.  
  95.  (define-public hexchat
  96.    (package
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement