depot/third_party/nixpkgs/pkgs/development/libraries/exosip/default.nix
Default email 74492c8629 Project import generated by Copybara.
GitOrigin-RevId: cb372c3b8880e504b06946e8fb2ca9777c685505
2021-12-25 13:07:40 +08:00

20 lines
536 B
Nix

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