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: 133fdb340f88
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e253de221864
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Oct 24, 2020

  1. Copy the full SHA
    c3144b8 View commit details

Commits on Oct 29, 2020

  1. Merge pull request #101531 from danieldk/sentencepiece-0.1.94

    sentencepiece: 0.1.93 -> 0.1.94
    danieldk authored Oct 29, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e253de2 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/development/libraries/sentencepiece/default.nix
4 changes: 2 additions & 2 deletions pkgs/development/libraries/sentencepiece/default.nix
Original file line number Diff line number Diff line change
@@ -9,13 +9,13 @@

stdenv.mkDerivation rec {
pname = "sentencepiece";
version = "0.1.93";
version = "0.1.94";

src = fetchFromGitHub {
owner = "google";
repo = pname;
rev = "v${version}";
sha256 = "0h9c1xs0sab23labh8m3ar6kvzfldv2id2f17icja61ihyw06nrd";
sha256 = "sha256:11cqw4hx33gw2jmrg11jyp7fj9pwzwjwzqcn24jfsbgh6n8gks5x";
};

nativeBuildInputs = [ cmake ] ++ lib.optional withGPerfTools gperftools;