Merge pull request #159859 from tournemire/dino-update
This commit is contained in:
commit
d8b23eefbc
@ -941,6 +941,12 @@
|
|||||||
<literal>programs.starship.settings</literal>.
|
<literal>programs.starship.settings</literal>.
|
||||||
</para>
|
</para>
|
||||||
</listitem>
|
</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>
|
<listitem>
|
||||||
<para>
|
<para>
|
||||||
<literal>services.mattermost.plugins</literal> has been added
|
<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,
|
- A new module was added for the [Starship](https://starship.rs/) shell prompt,
|
||||||
providing the options `programs.starship.enable` and `programs.starship.settings`.
|
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.
|
- `services.mattermost.plugins` has been added to allow the declarative installation of Mattermost plugins.
|
||||||
Plugins are automatically repackaged using autoPatchelf.
|
Plugins are automatically repackaged using autoPatchelf.
|
||||||
|
|
||||||
|
@ -13,17 +13,19 @@
|
|||||||
, pcre
|
, pcre
|
||||||
, qrencode
|
, qrencode
|
||||||
, icu
|
, icu
|
||||||
|
, gspell
|
||||||
|
, srtp, libnice, gnutls, gstreamer, gst-plugins-base, gst-plugins-good
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "dino";
|
pname = "dino";
|
||||||
version = "0.2.2";
|
version = "0.3.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "dino";
|
owner = "dino";
|
||||||
repo = "dino";
|
repo = "dino";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-uYP3D2uyvfRP91fq/1jKOaKgp/+How0SUwmxSrLLH4c=";
|
sha256 = "sha256-L5a5QlF9qlr4X/hGTabbbvOE5J1x/UVneWl/BRAa29Q=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -56,6 +58,13 @@ stdenv.mkDerivation rec {
|
|||||||
icu
|
icu
|
||||||
libsignal-protocol-c
|
libsignal-protocol-c
|
||||||
librsvg
|
librsvg
|
||||||
|
gspell
|
||||||
|
srtp
|
||||||
|
libnice
|
||||||
|
gnutls
|
||||||
|
gstreamer
|
||||||
|
gst-plugins-base
|
||||||
|
gst-plugins-good
|
||||||
] ++ lib.optionals (!stdenv.isDarwin) [
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
||||||
xorg.libxcb
|
xorg.libxcb
|
||||||
xorg.libpthreadstubs
|
xorg.libpthreadstubs
|
||||||
|
@ -2880,7 +2880,10 @@ with pkgs;
|
|||||||
|
|
||||||
ditaa = callPackage ../tools/graphics/ditaa { };
|
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 { };
|
djv = callPackage ../applications/graphics/djv { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user