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

Commits on May 9, 2018

  1. bat: 0.2.0 -> 0.3.0

    dywedir committed May 9, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    97263df View commit details
  2. Merge pull request #40206 from dywedir/bat

    bat: 0.2.0 -> 0.3.0
    xeji authored May 9, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cbe420d View commit details
Showing with 6 additions and 6 deletions.
  1. +6 −6 pkgs/tools/misc/bat/default.nix
12 changes: 6 additions & 6 deletions pkgs/tools/misc/bat/default.nix
Original file line number Diff line number Diff line change
@@ -2,24 +2,24 @@

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

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

cargoSha256 = "07r10wwxv8svrw94djl092zj512868izlxldsiljfj34230abl02";
cargoSha256 = "179a7abhzpxjp3cc820jzxg0qk1fiv9rkpazwnzhkjl8yd7b7qi3";

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

meta = with stdenv.lib; {
description = "A cat(1) clone with syntax highlighting and Git integration";
homepage = https://github.com/sharkdp/bat;
license = licenses.mit;
maintainers = [];
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir ];
platforms = platforms.linux;
};
}