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

51 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-11-28 21:33:16 +03:00
, nixosTests
, rustPlatform
, fetchFromGitHub
, pkg-config
, less
, Security
, libiconv
, installShellFiles
, makeWrapper
2018-09-13 12:56:22 +03:00
}:
2018-04-30 23:12:20 +03:00
rustPlatform.buildRustPackage rec {
pname = "bat";
2020-11-25 00:05:17 +03:00
version = "0.17.1";
2018-04-30 23:12:20 +03:00
src = fetchFromGitHub {
owner = "sharkdp";
repo = pname;
rev = "v${version}";
2020-11-25 00:05:17 +03:00
sha256 = "1kbziqm00skj65gpjq6m83hmfk9g3xyx88gai1r80pzsx8g239w1";
2018-04-30 23:12:20 +03:00
};
2020-11-25 00:05:17 +03:00
cargoSha256 = "1pdja5jhk036hpgv77xc3fcvra1sw0z5jc1ry53i0r7362lnwapz";
2020-05-11 23:40:22 +03:00
nativeBuildInputs = [ pkg-config installShellFiles makeWrapper ];
2018-04-30 23:12:20 +03:00
2021-01-15 12:19:50 +03:00
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
2018-06-06 00:56:17 +03:00
2018-09-21 11:23:26 +03:00
postInstall = ''
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.{fish,zsh}
2018-09-21 11:23:26 +03: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" \
2021-01-15 12:19:50 +03:00
--prefix PATH : "${lib.makeBinPath [ less ]}"
'';
2020-11-28 21:33:16 +03:00
passthru.tests = { inherit (nixosTests) bat; };
meta = with lib; {
2018-04-30 23:12:20 +03:00
description = "A cat(1) clone with syntax highlighting and Git integration";
homepage = "https://github.com/sharkdp/bat";
license = with licenses; [ asl20 /* or */ mit ];
2020-06-08 06:24:34 +03:00
maintainers = with maintainers; [ dywedir lilyball zowoq ];
2018-04-30 23:12:20 +03:00
};
}