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

72 lines
1.3 KiB
Nix
Raw Normal View History

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