2017-04-20 14:56:04 +02:00
|
|
|
{ stdenv, fetchFromGitHub
|
|
|
|
, vala, cmake, wrapGAppsHook, pkgconfig, gettext
|
|
|
|
, gobjectIntrospection, gnome3, glib, gdk_pixbuf, gtk3, glib_networking
|
|
|
|
, xorg, libXdmcp, libxkbcommon
|
|
|
|
, libnotify
|
|
|
|
, libgcrypt
|
|
|
|
, epoxy
|
|
|
|
, at_spi2_core
|
|
|
|
, sqlite
|
|
|
|
, dbus
|
|
|
|
, gpgme
|
|
|
|
, pcre
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-06-16 12:08:07 +02:00
|
|
|
name = "dino-unstable-2017-06-13";
|
2017-04-20 14:56:04 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dino";
|
|
|
|
repo = "dino";
|
2017-06-16 12:08:07 +02:00
|
|
|
rev = "7bbbb738fdb233f4ad91ffdd7d9247b28849d715";
|
|
|
|
sha256 = "09w26c6b5rkrrz7wvm629cncpdmd5n0d0805h8hw69bbzirpjjh2";
|
2017-04-20 14:56:04 +02:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
vala
|
|
|
|
cmake
|
|
|
|
pkgconfig
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gobjectIntrospection
|
|
|
|
glib_networking
|
|
|
|
glib
|
|
|
|
gnome3.libgee
|
2017-05-16 16:55:11 +02:00
|
|
|
gnome3.defaultIconTheme
|
2017-04-20 14:56:04 +02:00
|
|
|
sqlite
|
|
|
|
gdk_pixbuf
|
|
|
|
gtk3
|
|
|
|
libnotify
|
|
|
|
gpgme
|
|
|
|
libgcrypt
|
|
|
|
pcre
|
|
|
|
xorg.libxcb
|
|
|
|
xorg.libpthreadstubs
|
|
|
|
libXdmcp
|
|
|
|
libxkbcommon
|
|
|
|
epoxy
|
|
|
|
at_spi2_core
|
|
|
|
dbus
|
|
|
|
gettext
|
|
|
|
];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|