Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ec13398cdf97
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1544d7df6955
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 5, 2019

  1. Copy the full SHA
    0b061b9 View commit details

Commits on Oct 9, 2019

  1. Merge pull request #70496 from illegalprime/libphonenumber-8.10.20

    libphonenumber: 8.9.9 -> 8.10.20
    c0bw3b authored Oct 9, 2019
    Copy the full SHA
    1544d7d View commit details
Showing with 4 additions and 7 deletions.
  1. +4 −7 pkgs/development/libraries/libphonenumber/default.nix
11 changes: 4 additions & 7 deletions pkgs/development/libraries/libphonenumber/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
{ stdenv, fetchFromGitHub, cmake, gmock, boost, pkgconfig, protobuf, icu }:

let
version = "8.9.9";
in
stdenv.mkDerivation {
name = "phonenumber-${version}";
inherit version;
stdenv.mkDerivation rec {
pname = "phonenumber";
version = "8.10.20";

src = fetchFromGitHub {
owner = "googlei18n";
repo = "libphonenumber";
rev = "v${version}";
sha256 = "005visnfnr84blgdi0yp4hrzskwbsnawrzv6lqfi9f073l6w5j6w";
sha256 = "12xszrd4mrjabhzsp0xvy2qx2rxl36y5a00xfsh0w7bc299rq13v";
};

nativeBuildInputs = [