mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
72 lines
1.3 KiB
Nix
72 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub
|
|
, vala, cmake, ninja, wrapGAppsHook, pkgconfig, gettext
|
|
, gobject-introspection, gnome3, glib, gdk_pixbuf, gtk3, glib-networking
|
|
, xorg, libXdmcp, libxkbcommon
|
|
, libnotify, libsoup, libgee
|
|
, libgcrypt
|
|
, epoxy
|
|
, at-spi2-core
|
|
, sqlite
|
|
, dbus
|
|
, gpgme
|
|
, pcre
|
|
, qrencode
|
|
, icu
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dino-unstable-2019-03-07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dino";
|
|
repo = "dino";
|
|
rev = "cc7b0aa7bd5b6599159f654fdd8a2fd111e16a3e";
|
|
sha256 = "1cq62vif92fz38si2bl49qwy4ys9gxdrvzkv25av6c6nwmyih4gv";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
vala
|
|
cmake
|
|
ninja
|
|
pkgconfig
|
|
wrapGAppsHook
|
|
gettext
|
|
];
|
|
|
|
buildInputs = [
|
|
qrencode
|
|
gobject-introspection
|
|
glib-networking
|
|
glib
|
|
libgee
|
|
gnome3.adwaita-icon-theme
|
|
sqlite
|
|
gdk_pixbuf
|
|
gtk3
|
|
libnotify
|
|
gpgme
|
|
libgcrypt
|
|
libsoup
|
|
pcre
|
|
xorg.libxcb
|
|
xorg.libpthreadstubs
|
|
libXdmcp
|
|
libxkbcommon
|
|
epoxy
|
|
at-spi2-core
|
|
dbus
|
|
icu
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|