75d70c8372
Upstream recommends Ninja and has a cmake script that does not support GNU Make: https://github.com/dino/dino/issues/230
65 lines
1.2 KiB
Nix
65 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, vala, cmake, ninja, wrapGAppsHook, pkgconfig, gettext
|
|
, gobjectIntrospection, gnome3, glib, gdk_pixbuf, gtk3, glib_networking
|
|
, xorg, libXdmcp, libxkbcommon
|
|
, libnotify, libsoup
|
|
, libgcrypt
|
|
, epoxy
|
|
, at_spi2_core
|
|
, sqlite
|
|
, dbus
|
|
, gpgme
|
|
, pcre
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dino-unstable-2017-12-03";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dino";
|
|
repo = "dino";
|
|
rev = "cee39b0117c1620d852d50c14ca6f06db4e2956b";
|
|
sha256 = "15cm6y2rgj6fcw8sciygd1wvcw7k9fgf69ji1abfwybzydflj7ny";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
vala
|
|
cmake
|
|
ninja
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gobjectIntrospection
|
|
glib_networking
|
|
glib
|
|
gnome3.libgee
|
|
gnome3.defaultIconTheme
|
|
sqlite
|
|
gdk_pixbuf
|
|
gtk3
|
|
libnotify
|
|
gpgme
|
|
libgcrypt
|
|
libsoup
|
|
pcre
|
|
xorg.libxcb
|
|
xorg.libpthreadstubs
|
|
libXdmcp
|
|
libxkbcommon
|
|
epoxy
|
|
at_spi2_core
|
|
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 ];
|
|
};
|
|
}
|