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: 54ff14b6f35e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 92125b381d34
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 21, 2018

  1. bat: 0.4.1 -> 0.5.0 (#45425)

    dywedir authored and xeji committed Aug 21, 2018
    Copy the full SHA
    92125b3 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/tools/misc/bat/default.nix
7 changes: 4 additions & 3 deletions pkgs/tools/misc/bat/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,17 @@

rustPlatform.buildRustPackage rec {
name = "bat-${version}";
version = "0.4.1";
version = "0.5.0";

src = fetchFromGitHub {
owner = "sharkdp";
repo = "bat";
rev = "v${version}";
sha256 = "0fiif6b8g2hdb05s028dbcpav6ax0qap2hbsr9p2bld4z7j7321m";
sha256 = "0ms1hmv6qx15p47l07h7szwq0bgphhskc0xca2l641159h55r6dg";
fetchSubmodules = true;
};

cargoSha256 = "0w0y3sfrpk8sn9rls90kjqrqr62pd690ripdfbvb5ipkzizp429l";
cargoSha256 = "1dzm44kcx3plh74qr4wghl3wqwr62hcxzlcv7mhh0vvk3z36c8d4";

nativeBuildInputs = [ cmake pkgconfig zlib ];