2017-04-20 05:56:04 -07:00
|
|
|
{ stdenv, fetchFromGitHub
|
2017-12-02 23:51:16 -08:00
|
|
|
, vala, cmake, ninja, wrapGAppsHook, pkgconfig, gettext
|
2018-12-02 03:41:15 -08:00
|
|
|
, gobject-introspection, gnome3, glib, gdk_pixbuf, gtk3, glib-networking
|
2017-04-20 05:56:04 -07:00
|
|
|
, xorg, libXdmcp, libxkbcommon
|
2017-09-20 04:01:13 -07:00
|
|
|
, libnotify, libsoup
|
2017-04-20 05:56:04 -07:00
|
|
|
, libgcrypt
|
|
|
|
, epoxy
|
2018-02-24 18:23:58 -08:00
|
|
|
, at-spi2-core
|
2017-04-20 05:56:04 -07:00
|
|
|
, sqlite
|
|
|
|
, dbus
|
|
|
|
, gpgme
|
|
|
|
, pcre
|
2018-11-27 06:49:30 -08:00
|
|
|
, qrencode
|
2017-04-20 05:56:04 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-12-05 03:12:12 -08:00
|
|
|
name = "dino-unstable-2018-11-29";
|
2017-04-20 05:56:04 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dino";
|
|
|
|
repo = "dino";
|
2018-12-05 03:12:12 -08:00
|
|
|
rev = "680d28360c781ff29e810821801cfaba0493c526";
|
|
|
|
sha256 = "1w08xc842p2nggdxf0dwqw8izhwsrqah10w3s0v1i7dp33yhycln";
|
2017-04-20 05:56:04 -07:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
vala
|
|
|
|
cmake
|
2017-12-02 23:51:16 -08:00
|
|
|
ninja
|
2017-04-20 05:56:04 -07:00
|
|
|
pkgconfig
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-11-27 06:49:30 -08:00
|
|
|
qrencode
|
2018-12-02 03:41:15 -08:00
|
|
|
gobject-introspection
|
2018-02-24 18:23:58 -08:00
|
|
|
glib-networking
|
2017-04-20 05:56:04 -07:00
|
|
|
glib
|
|
|
|
gnome3.libgee
|
2017-05-16 07:55:11 -07:00
|
|
|
gnome3.defaultIconTheme
|
2017-04-20 05:56:04 -07:00
|
|
|
sqlite
|
|
|
|
gdk_pixbuf
|
|
|
|
gtk3
|
|
|
|
libnotify
|
|
|
|
gpgme
|
|
|
|
libgcrypt
|
2017-09-20 04:01:13 -07:00
|
|
|
libsoup
|
2017-04-20 05:56:04 -07:00
|
|
|
pcre
|
|
|
|
xorg.libxcb
|
|
|
|
xorg.libpthreadstubs
|
|
|
|
libXdmcp
|
|
|
|
libxkbcommon
|
|
|
|
epoxy
|
2018-02-24 18:23:58 -08:00
|
|
|
at-spi2-core
|
2017-04-20 05:56:04 -07:00
|
|
|
dbus
|
|
|
|
gettext
|
|
|
|
];
|
|
|
|
|
2018-12-04 09:17:14 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-04-20 05:56:04 -07: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 ];
|
|
|
|
};
|
|
|
|
}
|