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

66 lines
1.2 KiB
Nix
Raw Normal View History

2017-04-20 13:56:04 +01:00
{ stdenv, fetchFromGitHub
, vala, cmake, ninja, wrapGAppsHook, pkgconfig, gettext
, gobjectIntrospection, gnome3, glib, gdk_pixbuf, gtk3, glib-networking
2017-04-20 13:56:04 +01:00
, xorg, libXdmcp, libxkbcommon
2017-09-20 12:01:13 +01:00
, libnotify, libsoup
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
}:
stdenv.mkDerivation rec {
2018-02-21 11:27:59 +00:00
name = "dino-unstable-2018-02-11";
2017-04-20 13:56:04 +01:00
src = fetchFromGitHub {
owner = "dino";
repo = "dino";
2018-02-21 11:27:59 +00:00
rev = "5436d716c0f508eb8ab70f322da862f996ce421e";
sha256 = "0yxkhl9xm5f0j2i9vxgyabpa5fwja0329fmg0878mqsm89nzz3am";
2017-04-20 13:56:04 +01:00
fetchSubmodules = true;
};
nativeBuildInputs = [
vala
cmake
ninja
2017-04-20 13:56:04 +01:00
pkgconfig
wrapGAppsHook
];
buildInputs = [
gobjectIntrospection
glib-networking
2017-04-20 13:56:04 +01:00
glib
gnome3.libgee
2017-05-16 15:55:11 +01:00
gnome3.defaultIconTheme
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
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 ];
};
}