nixpkgs/pkgs/development/libraries/exosip/default.nix
John Ericson f8a18cd4cf misc pkgs: Manual fixup pkgconfig nativeBuildInputs after sed
Importantly, this included regenerating pkgs/servers/x11/xorg, to
clobber the old sed.
2017-09-21 15:49:54 -04:00

21 lines
555 B
Nix

{stdenv, fetchurl, libosip, openssl, pkgconfig }:
stdenv.mkDerivation rec {
name = "libexosip2-${version}";
version = "4.1.0";
src = fetchurl {
url = "mirror://savannah/exosip/libeXosip2-${version}.tar.gz";
sha256 = "17cna8kpc8nk1si419vgr6r42k2lda0rdk50vlxrw8rzg0xp2xrw";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libosip openssl ];
meta = with stdenv.lib; {
license = licenses.gpl2Plus;
description = "Library that hides the complexity of using the SIP protocol";
platforms =platforms.linux;
};
}