nixpkgs/pkgs/applications/networking/instant-messengers/dino/default.nix

65 lines
1.2 KiB
Nix
Raw Normal View History

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