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-02-25 02:23:58 +00:00
|
|
|
, gobjectIntrospection, gnome3, glib, gdk_pixbuf, gtk3, glib-networking
|
2017-04-20 13:56:04 +01:00
|
|
|
, xorg, libXdmcp, libxkbcommon
|
2017-09-20 12:01:13 +01:00
|
|
|
, libnotify, libsoup
|
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
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-21 11:27:59 +00:00
|
|
|
name = "dino-unstable-2018-02-11";
|
2017-04-20 13:56:04 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dino";
|
|
|
|
repo = "dino";
|
2018-02-21 11:27:59 +00:00
|
|
|
rev = "5436d716c0f508eb8ab70f322da862f996ce421e";
|
|
|
|
sha256 = "0yxkhl9xm5f0j2i9vxgyabpa5fwja0329fmg0878mqsm89nzz3am";
|
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
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gobjectIntrospection
|
2018-02-25 02:23:58 +00:00
|
|
|
glib-networking
|
2017-04-20 13:56:04 +01:00
|
|
|
glib
|
|
|
|
gnome3.libgee
|
2017-05-16 15:55:11 +01:00
|
|
|
gnome3.defaultIconTheme
|
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
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|