summary refs log tree commit diff
path: root/pkgs/development/libraries/libstrophe
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2021-01-05 09:47:29 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2021-01-05 09:47:29 -0300
commitcd3271e5b98c728c34fe7e91d7a7c371798764f8 (patch)
tree6e5e88e3b1f29a99f2ca8145a8f17754662ee4d6 /pkgs/development/libraries/libstrophe
parent19cef431e6f3fb5994aa3941d60e0223fdd58cd2 (diff)
downloadnixpkgs-cd3271e5b98c728c34fe7e91d7a7c371798764f8.tar
nixpkgs-cd3271e5b98c728c34fe7e91d7a7c371798764f8.tar.gz
nixpkgs-cd3271e5b98c728c34fe7e91d7a7c371798764f8.tar.bz2
nixpkgs-cd3271e5b98c728c34fe7e91d7a7c371798764f8.tar.lz
nixpkgs-cd3271e5b98c728c34fe7e91d7a7c371798764f8.tar.xz
nixpkgs-cd3271e5b98c728c34fe7e91d7a7c371798764f8.tar.zst
nixpkgs-cd3271e5b98c728c34fe7e91d7a7c371798764f8.zip
libstrophe: 0.10.0 -> 0.10.1
Diffstat (limited to 'pkgs/development/libraries/libstrophe')
-rw-r--r--pkgs/development/libraries/libstrophe/default.nix25
1 files changed, 17 insertions, 8 deletions
diff --git a/pkgs/development/libraries/libstrophe/default.nix b/pkgs/development/libraries/libstrophe/default.nix
index 428e23f33f5..0c7828c954f 100644
--- a/pkgs/development/libraries/libstrophe/default.nix
+++ b/pkgs/development/libraries/libstrophe/default.nix
@@ -1,17 +1,26 @@
-{ stdenv, fetchFromGitHub, automake, autoconf, libtool, openssl, expat, pkgconfig, check }:
+{ stdenv
+, fetchFromGitHub
+, pkg-config
+, automake
+, autoconf
+, libtool
+, openssl
+, expat
+, check
+}:
 
 stdenv.mkDerivation rec {
   pname = "libstrophe";
-  version = "0.10.0";
+  version = "0.10.1";
 
   src = fetchFromGitHub {
     owner = "strophe";
     repo = pname;
     rev = version;
-    sha256 = "1hizw695fw0cy88h1dpl9pvniapml2zw9yvxck8xvxbqfz54jwja";
+    sha256 = "sha256-6byg7hE0DN/cbf9NHpK/2DhXZyuelYAp+SA7vVUgo4U=";
   };
 
-  nativeBuildInputs = [ automake autoconf pkgconfig libtool check ];
+  nativeBuildInputs = [ automake autoconf pkg-config libtool check ];
   buildInputs = [ openssl expat ];
 
   dontDisableStatic = true;
@@ -20,7 +29,7 @@ stdenv.mkDerivation rec {
 
   doCheck = true;
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "A simple, lightweight C library for writing XMPP clients";
     longDescription = ''
       libstrophe is a lightweight XMPP client library written in C. It has
@@ -28,8 +37,8 @@ stdenv.mkDerivation rec {
       runs well on both Linux, Unix, and Windows based platforms.
     '';
     homepage = "https://strophe.im/libstrophe/";
-    license = with stdenv.lib.licenses; [ gpl3 mit ];
-    platforms = stdenv.lib.platforms.unix;
-    maintainers = with stdenv.lib.maintainers; [ devhell flosse ];
+    license = with licenses; [ gpl3 mit ];
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ devhell flosse ];
   };
 }