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

21 lines
537 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, libosip, openssl, pkg-config }:
stdenv.mkDerivation rec {
pname = "libexosip2";
version = "5.2.0";
2017-04-29 11:38:59 +01:00
2017-03-12 19:44:58 +00:00
src = fetchurl {
url = "mirror://savannah/exosip/${pname}-${version}.tar.gz";
sha256 = "09bj7cm6mk8yr68y5a09a625x10ql6an3zi4pj6y1jbkhpgqibp3";
};
2017-04-29 11:38:59 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libosip openssl ];
2017-04-29 11:38:59 +01: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 11:38:59 +01:00
platforms = platforms.linux;
};
}