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

Commits on May 27, 2020

  1. bat: 0.15.3 -> 0.15.4

    lilyball committed May 27, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    Copy the full SHA
    9724223 View commit details

Commits on May 28, 2020

  1. Merge pull request #89059 from lilyball/bat

    bat: 0.15.3 -> 0.15.4
    marsam authored May 28, 2020
    Copy the full SHA
    fa03f72 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.15.3";
version = "0.15.4";

src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
sha256 = "0893xjnrjmhhzccfb57w5s7wlf6z4cwxvrxj8qb5jnmrgkfaw86b";
sha256 = "1pjdvhldmjpy8ymb7r91y18hj5dx1iygszsfwkd66v9rncjigd07";
fetchSubmodules = true;
};

cargoSha256 = "0mcff6nsd9g39xdhsf06zxs7pmq27nqfxdk0lwh83lqmnzdp01sf";
cargoSha256 = "0myz06hjv4hwzmyqa9l36i9j9d213a0mnq8rvx6wyff7mr9zk99i";

nativeBuildInputs = [ pkgconfig installShellFiles makeWrapper ];