2017-04-20 13:56:04 +01:00
|
|
|
{ stdenv, fetchFromGitHub
|
2017-12-03 07:51:16 +00:00
|
|
|
, vala, cmake, ninja, wrapGAppsHook, pkgconfig, gettext
|
2018-12-02 11:41:15 +00:00
|
|
|
, gobject-introspection, gnome3, glib, gdk_pixbuf, gtk3, glib-networking
|
2017-04-20 13:56:04 +01:00
|
|
|
, xorg, libXdmcp, libxkbcommon
|
2019-02-13 21:47:50 +00:00
|
|
|
, libnotify, libsoup, libgee
|
2017-04-20 13:56:04 +01:00
|
|
|
, libgcrypt
|
|
|
|
, epoxy
|
2018-02-25 02:23:58 +00:00
|
|
|
, at-spi2-core
|
2017-04-20 13:56:04 +01:00
|
|
|
, sqlite
|
|
|
|
, dbus
|
|
|
|
, gpgme
|
|
|
|
, pcre
|
2018-11-27 14:49:30 +00:00
|
|
|
, qrencode
|
2019-02-06 00:54:07 +00:00
|
|
|
, icu
|
2017-04-20 13:56:04 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-03-14 10:43:21 +00:00
|
|
|
name = "dino-unstable-2019-03-07";
|
2017-04-20 13:56:04 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dino";
|
|
|
|
repo = "dino";
|
2019-03-14 10:43:21 +00:00
|
|
|
rev = "cc7b0aa7bd5b6599159f654fdd8a2fd111e16a3e";
|
|
|
|
sha256 = "1cq62vif92fz38si2bl49qwy4ys9gxdrvzkv25av6c6nwmyih4gv";
|
2017-04-20 13:56:04 +01:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
vala
|
|
|
|
cmake
|
2017-12-03 07:51:16 +00:00
|
|
|
ninja
|
2017-04-20 13:56:04 +01:00
|
|
|
pkgconfig
|
|
|
|
wrapGAppsHook
|
2019-02-06 00:54:07 +00:00
|
|
|
gettext
|
2017-04-20 13:56:04 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-11-27 14:49:30 +00:00
|
|
|
qrencode
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2018-02-25 02:23:58 +00:00
|
|
|
glib-networking
|
2017-04-20 13:56:04 +01:00
|
|
|
glib
|
2019-02-13 21:47:50 +00:00
|
|
|
libgee
|
|
|
|
gnome3.adwaita-icon-theme
|
2017-04-20 13:56:04 +01:00
|
|
|
sqlite
|
|
|
|
gdk_pixbuf
|
|
|
|
gtk3
|
|
|
|
libnotify
|
|
|
|
gpgme
|
|
|
|
libgcrypt
|
2017-09-20 12:01:13 +01:00
|
|
|
libsoup
|
2017-04-20 13:56:04 +01:00
|
|
|
pcre
|
|
|
|
xorg.libxcb
|
|
|
|
xorg.libpthreadstubs
|
|
|
|
libXdmcp
|
|
|
|
libxkbcommon
|
|
|
|
epoxy
|
2018-02-25 02:23:58 +00:00
|
|
|
at-spi2-core
|
2017-04-20 13:56:04 +01:00
|
|
|
dbus
|
2019-02-06 00:54:07 +00:00
|
|
|
icu
|
2017-04-20 13:56:04 +01:00
|
|
|
];
|
|
|
|
|
2018-12-04 17:17:14 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-04-20 13:56:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Modern Jabber/XMPP Client using GTK+/Vala";
|
|
|
|
homepage = https://github.com/dino/dino;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.mic92 ];
|
|
|
|
};
|
|
|
|
}
|