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

Commits on Apr 22, 2020

  1. Copy the full SHA
    0f2a064 View commit details

Commits on Apr 23, 2020

  1. Merge pull request #85831 from marsam/update-bat

    bat: 0.13.0 -> 0.14.0
    bhipple authored Apr 23, 2020
    Copy the full SHA
    994e4b8 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/bat/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/bat/default.nix
Original file line number Diff line number Diff line change
@@ -4,17 +4,17 @@

rustPlatform.buildRustPackage rec {
pname = "bat";
version = "0.13.0";
version = "0.14.0";

src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
sha256 = "1kaa6ps6v1wk9qs63h116k4pbz7y9mfbfxfbq7g89yjhzkjmh6xc";
sha256 = "0wxmn3ifrgpfq44xs747qqik2p2vazdw5zi4imxqap2krha4k2ms";
fetchSubmodules = true;
};

cargoSha256 = "01l1y124gjh6gf9z1jkbpfzh0w92hrgwvsmqkqdw3a9pa4w5f6yg";
cargoSha256 = "0bs6pqrg0vdam2h2ddikmgmksqlfjljqacc52rh6p546is6jcp2s";

nativeBuildInputs = [ pkgconfig llvmPackages.libclang installShellFiles makeWrapper ];