2017-04-20 14:56:04 +02:00
|
|
|
{ stdenv, fetchFromGitHub
|
2017-12-03 08:51:16 +01:00
|
|
|
, 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
|
2018-02-25 03:23:58 +01:00
|
|
|
, 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
|
2017-12-03 08:51:16 +01:00
|
|
|
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
|
2018-12-02 12:41:15 +01:00
|
|
|
gobject-introspection
|
2018-02-25 03:23:58 +01:00
|
|
|
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
|
2018-02-25 03:23:58 +01:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|