Skip to content

Commit

Permalink
dino: init at unstable-2017-04-20
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Apr 20, 2017
1 parent 6572f5e commit d15f26e
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 0 deletions.
64 changes: 64 additions & 0 deletions pkgs/applications/networking/instant-messengers/dino/default.nix
@@ -0,0 +1,64 @@
{ 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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -883,6 +883,8 @@ with pkgs;

ditaa = callPackage ../tools/graphics/ditaa { };

dino = callPackage ../applications/networking/instant-messengers/dino { };

dlx = callPackage ../misc/emulators/dlx { };

dosage = pythonPackages.dosage;
Expand Down

0 comments on commit d15f26e

Please sign in to comment.