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

66 lines
1.2 KiB
Nix
Raw Normal View History

2017-04-20 12:56:04 +00:00
{ stdenv, fetchFromGitHub
, vala, cmake, ninja, wrapGAppsHook, pkgconfig, gettext
, gobjectIntrospection, gnome3, glib, gdk_pixbuf, gtk3, glib-networking
2017-04-20 12:56:04 +00:00
, 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
2017-04-20 12:56:04 +00:00
, sqlite
, dbus
, gpgme
, pcre
}:
stdenv.mkDerivation rec {
2018-04-24 22:39:08 +00:00
name = "dino-unstable-2018-06-03";
2017-04-20 12:56:04 +00:00
src = fetchFromGitHub {
owner = "dino";
repo = "dino";
2018-04-24 22:39:08 +00:00
rev = "52e116ee44be1667660c08858a28fe8fda125f79";
sha256 = "1yybmjd50r41366clrsw21qybbpjfkvim2n5b3dkcagjnifak0zl";
2017-04-20 12:56:04 +00:00
fetchSubmodules = true;
};
nativeBuildInputs = [
vala
cmake
ninja
2017-04-20 12:56:04 +00:00
pkgconfig
wrapGAppsHook
];
buildInputs = [
gobjectIntrospection
glib-networking
2017-04-20 12:56:04 +00:00
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
2017-04-20 12:56:04 +00: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 ];
};
}