nixpkgs/pkgs/applications/networking/instant-messengers/dino/default.nix
2017-05-31 23:30:43 +01:00

64 lines
1.2 KiB
Nix

{ 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 {
name = "dino-unstable-2017-05-31";
src = fetchFromGitHub {
owner = "dino";
repo = "dino";
rev = "2480c1ec26a8e0ccef3ea76e3c29566221405ffb";
sha256 = "0wdjj38gbr2j6yklna3pd8nsfpdfp1j936dy8s49pzayw4pxs2g2";
fetchSubmodules = true;
};
nativeBuildInputs = [
vala
cmake
pkgconfig
wrapGAppsHook
];
buildInputs = [
gobjectIntrospection
glib_networking
glib
gnome3.libgee
gnome3.defaultIconTheme
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 ];
};
}