bat: 0.15.1 -> 0.15.3
This commit is contained in:
parent
ac3128f22d
commit
e3f1712b7a
2 changed files with 5 additions and 25 deletions
|
@ -1,32 +1,25 @@
|
||||||
{ stdenv, rustPlatform, fetchFromGitHub, llvmPackages, pkgconfig, less
|
{ stdenv, rustPlatform, fetchFromGitHub, pkgconfig, less
|
||||||
, Security, libiconv, installShellFiles, makeWrapper
|
, Security, libiconv, installShellFiles, makeWrapper
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "bat";
|
pname = "bat";
|
||||||
version = "0.15.1";
|
version = "0.15.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "sharkdp";
|
owner = "sharkdp";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "10cs94ja1dmn0f24gqkcy8rf68b3b43k6qpbb5njbg0hcx3x6cyj";
|
sha256 = "0893xjnrjmhhzccfb57w5s7wlf6z4cwxvrxj8qb5jnmrgkfaw86b";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "13cphi08bp6lg054acgliir8dx2jajll4m3c4xxy04skmx555zr8";
|
cargoSha256 = "0mcff6nsd9g39xdhsf06zxs7pmq27nqfxdk0lwh83lqmnzdp01sf";
|
||||||
|
|
||||||
# Disable test that's broken on macOS.
|
nativeBuildInputs = [ pkgconfig installShellFiles makeWrapper ];
|
||||||
# This should probably be removed on the next release.
|
|
||||||
# https://github.com/sharkdp/bat/issues/983
|
|
||||||
patches = [ ./macos.patch ];
|
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig llvmPackages.libclang installShellFiles makeWrapper ];
|
|
||||||
|
|
||||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security libiconv ];
|
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security libiconv ];
|
||||||
|
|
||||||
LIBCLANG_PATH = "${llvmPackages.libclang}/lib";
|
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
|
installManPage $releaseDir/build/bat-*/out/assets/manual/bat.1
|
||||||
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.fish
|
installShellCompletion $releaseDir/build/bat-*/out/assets/completions/bat.fish
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
diff --git a/src/assets.rs b/src/assets.rs
|
|
||||||
index 4f8556f..222abc2 100644
|
|
||||||
--- a/src/assets.rs
|
|
||||||
+++ b/src/assets.rs
|
|
||||||
@@ -336,7 +336,7 @@ mod tests {
|
|
||||||
assert_eq!(test.syntax_for_file("Makefile"), "Makefile");
|
|
||||||
}
|
|
||||||
|
|
||||||
- #[cfg(unix)]
|
|
||||||
+ #[cfg(all(unix,not(target_os = "macos")))]
|
|
||||||
#[test]
|
|
||||||
fn syntax_detection_invalid_utf8() {
|
|
||||||
use std::os::unix::ffi::OsStrExt;
|
|
Loading…
Reference in a new issue