about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-04-05 18:46:51 -0500
committerGitHub <noreply@github.com>2024-04-05 18:46:51 -0500
commit43c12d323af6c7e7a9547fcd394f8e4d560dc994 (patch)
treee1eacba2131c80fb66482173430c2e109d7a08b2 /pkgs/development
parent0f04cea48673dc031f09b2b8c1cdd9ae02ecbb36 (diff)
parentca5e6189d42a8d27bbc133f23479d9b8011bb51b (diff)
Merge pull request #300275 from devhell/bump-libstrophe
libstrophe: 0.12.3 -> 0.13.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/libstrophe/default.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/pkgs/development/libraries/libstrophe/default.nix b/pkgs/development/libraries/libstrophe/default.nix
deleted file mode 100644
index 880d468cae05f..0000000000000
--- a/pkgs/development/libraries/libstrophe/default.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, autoreconfHook
-, libtool
-, openssl
-, expat
-, pkg-config
-, check
-}:
-
-stdenv.mkDerivation rec {
-  pname = "libstrophe";
-  version = "0.12.3";
-
-  src = fetchFromGitHub {
-    owner = "strophe";
-    repo = pname;
-    rev = version;
-    sha256 = "EDgdKJ7wqUoThy0t1r39p2lbn64uvTDoIqNCzhpWnZ8=";
-  };
-
-  nativeBuildInputs = [ autoreconfHook pkg-config ];
-  buildInputs = [ openssl expat libtool check ];
-
-  dontDisableStatic = true;
-
-  doCheck = true;
-
-  meta = with lib; {
-    description = "A simple, lightweight C library for writing XMPP clients";
-    longDescription = ''
-      libstrophe is a lightweight XMPP client library written in C. It has
-      minimal dependencies and is configurable for various environments. It
-      runs well on both Linux, Unix, and Windows based platforms.
-    '';
-    homepage = "https://strophe.im/libstrophe/";
-    license = with licenses; [ gpl3Only mit ];
-    platforms = platforms.unix;
-    broken = stdenv.isDarwin;
-    maintainers = with maintainers; [ devhell flosse ];
-  };
-}
-