Merge pull request #159859 from tournemire/dino-update
This commit is contained in:
commit
d8b23eefbc
4 changed files with 23 additions and 3 deletions
|
@ -941,6 +941,12 @@
|
|||
<literal>programs.starship.settings</literal>.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
The <link xlink:href="https://dino.im">Dino</link> XMPP client
|
||||
was updated to 0.3, adding support for audio and video calls.
|
||||
</para>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<para>
|
||||
<literal>services.mattermost.plugins</literal> has been added
|
||||
|
|
|
@ -315,6 +315,8 @@ In addition to numerous new and upgraded packages, this release has the followin
|
|||
- A new module was added for the [Starship](https://starship.rs/) shell prompt,
|
||||
providing the options `programs.starship.enable` and `programs.starship.settings`.
|
||||
|
||||
- The [Dino](https://dino.im) XMPP client was updated to 0.3, adding support for audio and video calls.
|
||||
|
||||
- `services.mattermost.plugins` has been added to allow the declarative installation of Mattermost plugins.
|
||||
Plugins are automatically repackaged using autoPatchelf.
|
||||
|
||||
|
|
|
@ -13,17 +13,19 @@
|
|||
, pcre
|
||||
, qrencode
|
||||
, icu
|
||||
, gspell
|
||||
, srtp, libnice, gnutls, gstreamer, gst-plugins-base, gst-plugins-good
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dino";
|
||||
version = "0.2.2";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dino";
|
||||
repo = "dino";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-uYP3D2uyvfRP91fq/1jKOaKgp/+How0SUwmxSrLLH4c=";
|
||||
sha256 = "sha256-L5a5QlF9qlr4X/hGTabbbvOE5J1x/UVneWl/BRAa29Q=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -56,6 +58,13 @@ stdenv.mkDerivation rec {
|
|||
icu
|
||||
libsignal-protocol-c
|
||||
librsvg
|
||||
gspell
|
||||
srtp
|
||||
libnice
|
||||
gnutls
|
||||
gstreamer
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
] ++ lib.optionals (!stdenv.isDarwin) [
|
||||
xorg.libxcb
|
||||
xorg.libpthreadstubs
|
||||
|
|
|
@ -2880,7 +2880,10 @@ with pkgs;
|
|||
|
||||
ditaa = callPackage ../tools/graphics/ditaa { };
|
||||
|
||||
dino = callPackage ../applications/networking/instant-messengers/dino { };
|
||||
dino = callPackage ../applications/networking/instant-messengers/dino {
|
||||
inherit (gst_all_1) gstreamer gst-plugins-base;
|
||||
gst-plugins-good = gst_all_1.gst-plugins-good.override { gtkSupport = true; };
|
||||
};
|
||||
|
||||
djv = callPackage ../applications/graphics/djv { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue