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

Commits on Jun 1, 2018

  1. bat: 0.3.0 -> 0.4.1 (#41348)

    dywedir authored and xeji committed Jun 1, 2018
    Copy the full SHA
    82d837c View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/tools/misc/bat/default.nix
10 changes: 5 additions & 5 deletions pkgs/tools/misc/bat/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{ stdenv, pkgs, rustPlatform, fetchFromGitHub }:
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib }:

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

src = fetchFromGitHub {
owner = "sharkdp";
repo = "bat";
rev = "v${version}";
sha256 = "15d7i0iy5lks3jg9js6n6fy4xanjk76fpryl2kq88kdkq67hpzfp";
sha256 = "0fiif6b8g2hdb05s028dbcpav6ax0qap2hbsr9p2bld4z7j7321m";
};

cargoSha256 = "179a7abhzpxjp3cc820jzxg0qk1fiv9rkpazwnzhkjl8yd7b7qi3";
cargoSha256 = "0w0y3sfrpk8sn9rls90kjqrqr62pd690ripdfbvb5ipkzizp429l";

buildInputs = with pkgs; [ pkgconfig cmake zlib file perl curl ];
nativeBuildInputs = [ cmake pkgconfig zlib ];

meta = with stdenv.lib; {
description = "A cat(1) clone with syntax highlighting and Git integration";