about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-10-17 00:40:42 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-10-17 07:57:56 +0200
commite7d7a4326f7e80697b45551c711d11085f27062d (patch)
treed236afe193e630292bc9e96e685902c927a84a8a /pkgs/applications/networking
parent33393449fdf6ceac32310e7f4d2011fb87985c7e (diff)
downloadnixlib-e7d7a4326f7e80697b45551c711d11085f27062d.tar
nixlib-e7d7a4326f7e80697b45551c711d11085f27062d.tar.gz
nixlib-e7d7a4326f7e80697b45551c711d11085f27062d.tar.bz2
nixlib-e7d7a4326f7e80697b45551c711d11085f27062d.tar.lz
nixlib-e7d7a4326f7e80697b45551c711d11085f27062d.tar.xz
nixlib-e7d7a4326f7e80697b45551c711d11085f27062d.tar.zst
nixlib-e7d7a4326f7e80697b45551c711d11085f27062d.zip
telepathy-haze: add darwin support
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix
index 4b8d2f6104ab..36b38c585438 100644
--- a/pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telepathy/haze/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, fetchpatch, pidgin, telepathy-glib, python3, glib, dbus-glib, pkg-config, libxslt }:
+{ lib, stdenv, fetchurl, pidgin, telepathy-glib, python3, glib, dbus-glib, pkg-config, libxslt }:
 
 stdenv.mkDerivation rec {
   pname = "telepathy-haze";
@@ -15,6 +15,8 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "A Telepathy connection manager based on libpurple";
-    platforms = lib.platforms.gnu ++ lib.platforms.linux; # Random choice
+    homepage = "https://telepathy.freedesktop.org/components/telepathy-haze/";
+    license = lib.licenses.gpl2Plus;
+    platforms = lib.platforms.unix;
   };
 }