libstrophe: 0.10.0 -> 0.10.1

This commit is contained in:
AndersonTorres 2021-01-05 09:47:29 -03:00
parent 19cef431e6
commit cd3271e5b9

View file

@ -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 { stdenv.mkDerivation rec {
pname = "libstrophe"; pname = "libstrophe";
version = "0.10.0"; version = "0.10.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "strophe"; owner = "strophe";
repo = pname; repo = pname;
rev = version; 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 ]; buildInputs = [ openssl expat ];
dontDisableStatic = true; dontDisableStatic = true;
@ -20,7 +29,7 @@ stdenv.mkDerivation rec {
doCheck = true; doCheck = true;
meta = { meta = with stdenv.lib; {
description = "A simple, lightweight C library for writing XMPP clients"; description = "A simple, lightweight C library for writing XMPP clients";
longDescription = '' longDescription = ''
libstrophe is a lightweight XMPP client library written in C. It has 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. runs well on both Linux, Unix, and Windows based platforms.
''; '';
homepage = "https://strophe.im/libstrophe/"; homepage = "https://strophe.im/libstrophe/";
license = with stdenv.lib.licenses; [ gpl3 mit ]; license = with licenses; [ gpl3 mit ];
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
maintainers = with stdenv.lib.maintainers; [ devhell flosse ]; maintainers = with maintainers; [ devhell flosse ];
}; };
} }