summary refs log blame commit diff
path: root/pkgs/tools/misc/bat/default.nix
blob: 7a3231ce85c27979c5666d024b3022c6e320403e (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                  


                                   
                    




                           
                                                                    

    
                                                                       
 
                                               



                                                                                

                                                        


                                  
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib }:

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

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

  cargoSha256 = "0w0y3sfrpk8sn9rls90kjqrqr62pd690ripdfbvb5ipkzizp429l";

  nativeBuildInputs = [ cmake pkgconfig zlib ];

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