summary refs log tree commit diff
path: root/pkgs/development/libraries/libstrophe
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2020-12-26 16:24:39 +0000
committerdevhell <devhell@mailfresser.de>2021-01-17 18:42:08 +0000
commit58899f1454bf9d43a647373e5a2b82eb186621d0 (patch)
treea01ac441982547fcdd4f5f60745e758095dc177d /pkgs/development/libraries/libstrophe
parent29238385b70f32f1b89513fa5e35a18688d5017f (diff)
downloadnixpkgs-58899f1454bf9d43a647373e5a2b82eb186621d0.tar
nixpkgs-58899f1454bf9d43a647373e5a2b82eb186621d0.tar.gz
nixpkgs-58899f1454bf9d43a647373e5a2b82eb186621d0.tar.bz2
nixpkgs-58899f1454bf9d43a647373e5a2b82eb186621d0.tar.lz
nixpkgs-58899f1454bf9d43a647373e5a2b82eb186621d0.tar.xz
nixpkgs-58899f1454bf9d43a647373e5a2b82eb186621d0.tar.zst
nixpkgs-58899f1454bf9d43a647373e5a2b82eb186621d0.zip
libstrophe: 0.10.0 -> 0.10.1
Diffstat (limited to 'pkgs/development/libraries/libstrophe')
-rw-r--r--pkgs/development/libraries/libstrophe/default.nix17
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/development/libraries/libstrophe/default.nix b/pkgs/development/libraries/libstrophe/default.nix
index 0c7828c954f..72cc24fcfdb 100644
--- a/pkgs/development/libraries/libstrophe/default.nix
+++ b/pkgs/development/libraries/libstrophe/default.nix
@@ -1,11 +1,10 @@
 { stdenv
 , fetchFromGitHub
-, pkg-config
-, automake
-, autoconf
+, autoreconfHook
 , libtool
 , openssl
 , expat
+, pkg-config
 , check
 }:
 
@@ -17,16 +16,14 @@ stdenv.mkDerivation rec {
     owner = "strophe";
     repo = pname;
     rev = version;
-    sha256 = "sha256-6byg7hE0DN/cbf9NHpK/2DhXZyuelYAp+SA7vVUgo4U=";
+    sha256 = "11d341avsfr0z4lq15cy5dkmff6qpy91wkgzdpfdy31l27pa1g79";
   };
 
-  nativeBuildInputs = [ automake autoconf pkg-config libtool check ];
-  buildInputs = [ openssl expat ];
+  nativeBuildInputs = [ autoreconfHook pkg-config ];
+  buildInputs = [ openssl expat libtool check ];
 
   dontDisableStatic = true;
 
-  preConfigure = "mkdir m4 && sh bootstrap.sh";
-
   doCheck = true;
 
   meta = with stdenv.lib; {
@@ -37,8 +34,10 @@ stdenv.mkDerivation rec {
       runs well on both Linux, Unix, and Windows based platforms.
     '';
     homepage = "https://strophe.im/libstrophe/";
-    license = with licenses; [ gpl3 mit ];
+    license = with licenses; [ gpl3Only mit ];
     platforms = platforms.unix;
+    broken = stdenv.isDarwin;
     maintainers = with maintainers; [ devhell flosse ];
   };
 }
+