64 lines
1.2 KiB
Nix
64 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, vala, cmake, wrapGAppsHook, pkgconfig, gettext
|
|
, gobjectIntrospection, gnome3, glib, gdk_pixbuf, gtk3, glib_networking
|
|
, xorg, libXdmcp, libxkbcommon
|
|
, libnotify
|
|
, libgcrypt
|
|
, epoxy
|
|
, at_spi2_core
|
|
, sqlite
|
|
, dbus
|
|
, gpgme
|
|
, pcre
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dino-unstable-2017-04-20";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dino";
|
|
repo = "dino";
|
|
rev = "5c8275ed4efdc7a3a0bc2a9c3a3f46d0383ddcf4";
|
|
sha256 = "12k3s8k8wmjyg5m0f4f2vp83bp0m9swmrsms81yd1722z3ragxsf";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
vala
|
|
cmake
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gobjectIntrospection
|
|
glib_networking
|
|
glib
|
|
gnome3.libgee
|
|
sqlite
|
|
gdk_pixbuf
|
|
gtk3
|
|
libnotify
|
|
gpgme
|
|
libgcrypt
|
|
pcre
|
|
xorg.libxcb
|
|
xorg.libpthreadstubs
|
|
libXdmcp
|
|
libxkbcommon
|
|
epoxy
|
|
at_spi2_core
|
|
dbus
|
|
gettext
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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 ];
|
|
};
|
|
}
|