depot/third_party/nixpkgs/pkgs/development/libraries/osip/default.nix
Default email 3cbfd2b52c Project import generated by Copybara.
GitOrigin-RevId: 395879c28386e1abf20c7ecacd45880759548391
2021-12-18 20:06:50 -05:00

17 lines
544 B
Nix

{lib, stdenv, fetchurl}:
stdenv.mkDerivation rec {
version = "5.3.0";
src = fetchurl {
url = "mirror://gnu/osip/libosip2-${version}.tar.gz";
sha256 = "sha256-9HJZFsIs9RSWnvsVw8IHIz1kc5OD99QpVgOLePbK6Mg=";
};
pname = "libosip2";
meta = {
license = lib.licenses.lgpl21Plus;
homepage = "https://www.gnu.org/software/osip/";
description = "The GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)";
maintainers = with lib.maintainers; [ raskin ];
platforms = lib.platforms.all;
};
}