about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix
blob: 79034b2dd9dcea45d97400415f56c77f2184a866 (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 = "Telepathy connection manager based on libpurple";
    homepage = "https://telepathy.freedesktop.org/components/telepathy-haze/";
    license = lib.licenses.gpl2Plus;
    platforms = lib.platforms.unix;
  };
}