nixpkgs/pkgs/development/libraries/exosip/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
536 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libosip, openssl, pkg-config }:
stdenv.mkDerivation rec {
pname = "libexosip2";
2021-12-21 10:17:58 +00:00
version = "5.3.0";
2017-04-29 10:38:59 +00:00
2017-03-12 19:44:58 +00:00
src = fetchurl {
url = "mirror://savannah/exosip/${pname}-${version}.tar.gz";
2021-12-21 10:17:58 +00:00
sha256 = "sha256-W3gjmGQx6lztyfCV1pZKzpZvCTsq59CwhAR4i/zrycI=";
};
2017-04-29 10:38:59 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libosip openssl ];
2017-04-29 10:38:59 +00:00
meta = with lib; {
2017-03-12 19:44:58 +00:00
license = licenses.gpl2Plus;
description = "Library that hides the complexity of using the SIP protocol";
2017-04-29 10:38:59 +00:00
platforms = platforms.linux;
};
}