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

Commits on Jan 17, 2020

  1. Copy the full SHA
    567655c View commit details
  2. Merge pull request #77862 from dtzWill/update/broot-0.11.9

    broot: 0.11.8 -> 0.11.9, verifyCargoDeps
    dtzWill authored Jan 17, 2020
    Copy the full SHA
    f0ce346 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/tools/misc/broot/default.nix
7 changes: 4 additions & 3 deletions pkgs/tools/misc/broot/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,17 @@

rustPlatform.buildRustPackage rec {
pname = "broot";
version = "0.11.8";
version = "0.11.9";

src = fetchFromGitHub {
owner = "Canop";
repo = pname;
rev = "v${version}";
sha256 = "1pbjlfwv4s50s731ryrcc54200g2i04acdxrxk4kpcvi6b19kbky";
sha256 = "1kif1113qdxg4hr1mfgg1fh10zgl9cl117cm1bfjaabw11k75cvj";
};

cargoSha256 = "07ncclp4yqqr2lncw4bbcmknm09qzmdcq8iwkhyyfiy3fpyw9hqc";
cargoSha256 = "0636qkgkw027s5dz2mryhghlm6kn3s7cfy4i8rxywr8r3w8c40y0";
verifyCargoDeps = true;

nativeBuildInputs = [ installShellFiles ];