2020-05-27 00:33:32 +01:00
|
|
|
{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig, less
|
2019-12-23 01:25:31 +00:00
|
|
|
, Security, libiconv, installShellFiles, makeWrapper
|
2018-09-13 10:56:22 +01:00
|
|
|
}:
|
2018-04-30 21:12:20 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-05-15 22:46:56 +01:00
|
|
|
pname = "bat";
|
2020-05-27 23:23:30 +01:00
|
|
|
version = "0.15.4";
|
2018-04-30 21:12:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sharkdp";
|
2019-05-15 22:46:56 +01:00
|
|
|
repo = pname;
|
2018-04-30 21:12:20 +01:00
|
|
|
rev = "v${version}";
|
2020-06-06 15:31:53 +01:00
|
|
|
sha256 = "0pjdba2c6p7ldgx2yfffxqlpasrcfrlkw63m1ma34zdq0f287w3p";
|
2018-04-30 21:12:20 +01:00
|
|
|
};
|
|
|
|
|
2020-05-27 23:23:30 +01:00
|
|
|
cargoSha256 = "0myz06hjv4hwzmyqa9l36i9j9d213a0mnq8rvx6wyff7mr9zk99i";
|
2020-05-11 21:40:22 +01:00
|
|
|
|
2020-05-27 00:33:32 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig installShellFiles makeWrapper ];
|
2018-04-30 21:12:20 +01:00
|
|
|
|
2018-09-13 10:56:22 +01:00
|
|
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security libiconv ];
|
2018-06-05 22:56:17 +01:00
|
|
|
|
2018-09-21 09:23:26 +01:00
|
|
|
postInstall = ''
|
2020-03-22 12:25:00 +00:00
|
|
|
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
|
|
|
|
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.fish
|
2018-09-21 09:23:26 +01:00
|
|
|
'';
|
|
|
|
|
2019-12-23 01:25:31 +00:00
|
|
|
# Insert Nix-built `less` into PATH because the system-provided one may be too old to behave as
|
|
|
|
# expected with certain flag combinations.
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram "$out/bin/bat" \
|
|
|
|
--prefix PATH : "${stdenv.lib.makeBinPath [ less ]}"
|
|
|
|
'';
|
|
|
|
|
2018-04-30 21:12:20 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A cat(1) clone with syntax highlighting and Git integration";
|
2020-03-22 12:25:00 +00:00
|
|
|
homepage = "https://github.com/sharkdp/bat";
|
2018-05-09 07:59:52 +01:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2020-06-08 04:24:34 +01:00
|
|
|
maintainers = with maintainers; [ dywedir lilyball zowoq ];
|
2019-05-15 22:46:56 +01:00
|
|
|
platforms = platforms.all;
|
2018-04-30 21:12:20 +01:00
|
|
|
};
|
|
|
|
}
|