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

Commits on Aug 12, 2019

  1. sccache: 0.2.9 -> 0.2.10

    doronbehar committed Aug 12, 2019
    Copy the full SHA
    0bd4aa0 View commit details
  2. Merge pull request #66517 from doronbehar/update-sccache

    sccache: 0.2.9 -> 0.2.10
    mmahut authored Aug 12, 2019
    Copy the full SHA
    87e13bb View commit details
Showing with 4 additions and 7 deletions.
  1. +4 −7 pkgs/development/tools/misc/sccache/default.nix
11 changes: 4 additions & 7 deletions pkgs/development/tools/misc/sccache/default.nix
Original file line number Diff line number Diff line change
@@ -1,21 +1,18 @@
{ stdenv, fetchFromGitHub, cargo, rustc, rustPlatform, pkgconfig, glib, openssl, darwin }:

rustPlatform.buildRustPackage rec {
version = "0.2.9";
version = "0.2.10";
name = "sccache-${version}";

src = fetchFromGitHub {
owner = "mozilla";
repo = "sccache";
rev = version;
sha256 = "0glaaan6fh19a2d8grgsgnbgw5w53vjl0qmvvnq0ldp3hax90v46";
sha256 = "13fiifv3bi9shzp30wd7k2nd2j43vzdhk6z5rnfn5a9hmijqpg9n";
};
cargoSha256 = "0chfdyhj9lyxydbnmldc8rh2v9dda46sxhv35g34a5137sjrizfh";
cargoSha256 = "1bkglgrasyjyzjj9mwm32d3g3mg5yv74jj3zl7jf20dlq3rg3fh6";

cargoBuildFlags = [ "--features=all" ];
# see https://github.com/mozilla/sccache/issues/467
postPatch = ''
sed -i 's/\(version = "0.2.9\)-alpha.0"/\1"/g' Cargo.lock
'';
nativeBuildInputs = [
pkgconfig cargo rustc
];