nixpkgs/pkgs/development/libraries/libphonenumber/default.nix
Sebastián Mancilla ffad12aea1 libphonenumber: 8.11.3 -> 8.12.37
Also fix build on darwin.
2021-11-19 00:04:53 -08:00

37 lines
828 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, gtest, boost, pkg-config, protobuf, icu, Foundation }:
stdenv.mkDerivation rec {
pname = "phonenumber";
version = "8.12.37";
src = fetchFromGitHub {
owner = "googlei18n";
repo = "libphonenumber";
rev = "v${version}";
sha256 = "sha256-xLxadSxVY3DjFDQrqj3BuOvdMaKdFSLjocfzovJCBB0=";
};
nativeBuildInputs = [
cmake
gtest
pkg-config
];
buildInputs = [
boost
protobuf
icu
] ++ lib.optional stdenv.isDarwin Foundation;
cmakeDir = "../cpp";
checkPhase = "./libphonenumber_test";
meta = with lib; {
description = "Google's i18n library for parsing and using phone numbers";
homepage = "https://github.com/google/libphonenumber";
license = licenses.asl20;
maintainers = with maintainers; [ illegalprime ];
};
}