mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
adeb9fade6
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libmesode/versions
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, libtool, openssl, expat, pkgconfig, check }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libmesode-${version}";
|
|
version = "0.9.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "boothj5";
|
|
repo = "libmesode";
|
|
rev = version;
|
|
sha256 = "06f5nfaypvxrbsinxa1k2vrxrs7kqmg38g4wwwk5d63hpn1pj8ak";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ openssl expat libtool check ];
|
|
|
|
dontDisableStatic = true;
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Fork of libstrophe (https://github.com/strophe/libstrophe) for use with Profanity XMPP Client";
|
|
longDescription = ''
|
|
Reasons for forking:
|
|
|
|
- Remove Windows support
|
|
- Support only one XML Parser implementation (expat)
|
|
- Support only one SSL implementation (OpenSSL)
|
|
|
|
This simplifies maintenance of the library when used in Profanity.
|
|
Whilst Profanity will run against libstrophe, libmesode provides extra
|
|
TLS functionality such as manual SSL certificate verification.
|
|
'';
|
|
homepage = https://github.com/boothj5/libmesode/;
|
|
license = stdenv.lib.licenses.gpl3;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
maintainers = [ stdenv.lib.maintainers.devhell ];
|
|
};
|
|
}
|