nixpkgs/pkgs/tools/text/difftastic/default.nix

35 lines
898 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform, tree-sitter }:
2021-07-10 05:08:12 +02:00
rustPlatform.buildRustPackage rec {
pname = "difftastic";
2021-10-01 06:20:00 +02:00
version = "0.10.1";
2021-07-10 05:08:12 +02:00
src = fetchFromGitHub {
owner = "wilfred";
repo = pname;
rev = version;
2021-10-01 06:20:00 +02:00
sha256 = "12fcfwx56phs64yl94al2hkvss1km4n9wbrn2md7wfh1137jykbg";
2021-07-10 05:08:12 +02:00
};
2021-10-01 06:20:00 +02:00
cargoSha256 = "0xnlnkdvsd2l7acdrkz918cjkk36k01rvvm0c8hnpx5327v6nsa8";
2021-07-10 05:08:12 +02:00
postPatch = ''
pushd vendor
for grammar in */; do
if [ -d "${tree-sitter.grammars}/$grammar" ]; then
rm -r "$grammar"
ln -s "${tree-sitter.grammars}/$grammar"
fi
done
popd
'';
2021-07-10 05:08:12 +02:00
meta = with lib; {
description = "A syntax-aware diff";
homepage = "https://github.com/Wilfred/difftastic";
2021-09-08 01:00:00 +02:00
changelog = "https://github.com/Wilfred/difftastic/raw/${version}/CHANGELOG.md";
2021-07-10 05:08:12 +02:00
license = licenses.mit;
maintainers = with maintainers; [ ethancedwards8 figsoda ];
2021-07-10 05:08:12 +02:00
};
}