summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix
blob: 36b38c5854382dd67d67dc56c02337c82aa3f819 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, fetchurl, pidgin, telepathy-glib, python3, glib, dbus-glib, pkg-config, libxslt }:

stdenv.mkDerivation rec {
  pname = "telepathy-haze";
  version = "0.8.1";

  src = fetchurl {
    url = "https://telepathy.freedesktop.org/releases/telepathy-haze/telepathy-haze-${version}.tar.gz";
    hash = "sha256-cEvvpC7sIXPspLrAH/0AQBRmXyutRtyJSOVCM2TN4wo=";
  };

  buildInputs = [ glib telepathy-glib dbus-glib pidgin ];

  nativeBuildInputs = [ pkg-config libxslt python3 ];

  meta = {
    description = "A Telepathy connection manager based on libpurple";
    homepage = "https://telepathy.freedesktop.org/components/telepathy-haze/";
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.unix;
  };
}