nixpkgs/pkgs/tools/misc/bat/default.nix

31 lines
942 B
Nix
Raw Normal View History

2018-06-05 14:56:17 -07:00
{ stdenv, rustPlatform, fetchFromGitHub, cmake, pkgconfig, zlib, libiconv, darwin }:
2018-04-30 13:12:20 -07:00
rustPlatform.buildRustPackage rec {
name = "bat-${version}";
2018-08-21 03:08:30 -07:00
version = "0.5.0";
2018-04-30 13:12:20 -07:00
src = fetchFromGitHub {
owner = "sharkdp";
repo = "bat";
rev = "v${version}";
2018-08-21 03:08:30 -07:00
sha256 = "0ms1hmv6qx15p47l07h7szwq0bgphhskc0xca2l641159h55r6dg";
fetchSubmodules = true;
2018-04-30 13:12:20 -07:00
};
2018-08-21 03:08:30 -07:00
cargoSha256 = "1dzm44kcx3plh74qr4wghl3wqwr62hcxzlcv7mhh0vvk3z36c8d4";
2018-04-30 13:12:20 -07:00
2018-06-01 03:13:52 -07:00
nativeBuildInputs = [ cmake pkgconfig zlib ];
2018-04-30 13:12:20 -07:00
2018-06-05 14:56:17 -07:00
buildInputs = [ libiconv ] ++ stdenv.lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Security
];
2018-04-30 13:12:20 -07:00
meta = with stdenv.lib; {
description = "A cat(1) clone with syntax highlighting and Git integration";
homepage = https://github.com/sharkdp/bat;
2018-05-08 23:59:52 -07:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dywedir ];
2018-06-05 14:56:17 -07:00
platforms = platforms.linux ++ platforms.darwin;
2018-04-30 13:12:20 -07:00
};
}