3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/networking/instant-messengers/dino/default.nix

72 lines
1.3 KiB
Nix
Raw Normal View History

2017-04-20 13:56:04 +01:00
{ stdenv, fetchFromGitHub
, vala, cmake, ninja, wrapGAppsHook, pkgconfig, gettext
, gobject-introspection, gnome3, glib, gdk_pixbuf, gtk3, glib-networking
2017-04-20 13:56:04 +01:00
, xorg, libXdmcp, libxkbcommon
2019-02-13 21:47:50 +00:00
, libnotify, libsoup, libgee
2017-04-20 13:56:04 +01:00
, libgcrypt
, epoxy
, at-spi2-core
2017-04-20 13:56:04 +01:00
, sqlite
, dbus
, gpgme
, pcre
2018-11-27 14:49:30 +00:00
, qrencode
2019-02-06 00:54:07 +00:00
, icu
2017-04-20 13:56:04 +01:00
}:
stdenv.mkDerivation rec {
2019-03-14 10:43:21 +00:00
name = "dino-unstable-2019-03-07";
2017-04-20 13:56:04 +01:00
src = fetchFromGitHub {
owner = "dino";
repo = "dino";
2019-03-14 10:43:21 +00:00
rev = "cc7b0aa7bd5b6599159f654fdd8a2fd111e16a3e";
sha256 = "1cq62vif92fz38si2bl49qwy4ys9gxdrvzkv25av6c6nwmyih4gv";
2017-04-20 13:56:04 +01:00
fetchSubmodules = true;
};
nativeBuildInputs = [
vala
cmake
ninja
2017-04-20 13:56:04 +01:00
pkgconfig
wrapGAppsHook
2019-02-06 00:54:07 +00:00
gettext
2017-04-20 13:56:04 +01:00
];
buildInputs = [
2018-11-27 14:49:30 +00:00
qrencode
gobject-introspection
glib-networking
2017-04-20 13:56:04 +01:00
glib
2019-02-13 21:47:50 +00:00
libgee
gnome3.adwaita-icon-theme
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
at-spi2-core
2017-04-20 13:56:04 +01:00
dbus
2019-02-06 00:54:07 +00:00
icu
2017-04-20 13:56:04 +01:00
];
2018-12-04 17:17:14 +00:00
enableParallelBuilding = true;
2017-04-20 13:56:04 +01: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 ];
};
}