Merge pull request #137050 from marsam/update-difftastic

difftastic: 0.6 -> 0.8
This commit is contained in:
Mario Rodas 2021-09-08 08:49:55 -05:00 committed by GitHub
commit 91d2ebe422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,22 +2,22 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "difftastic"; pname = "difftastic";
version = "0.6"; version = "0.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "wilfred"; owner = "wilfred";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "WFvxdRCbTBW1RGn2SvAo2iXn82OO/Z06cZQkIu4eiew="; sha256 = "0103py4v4v7xqv85yiczhd9w9h1aa54svhhdibvbl6x4b35y2mk5";
}; };
cargoSha256 = "2hRUfIxNVs4uSrEESas3wvvVsZHVocP8aiO7K0NZ+mY="; cargoSha256 = "1k0d7yadicfzfc2m1aqs4c4a2k3srb54fpwarc3kwn26v3vfjai1";
meta = with lib; { meta = with lib; {
description = "A syntax-aware diff"; description = "A syntax-aware diff";
homepage = "https://github.com/Wilfred/difftastic"; homepage = "https://github.com/Wilfred/difftastic";
changelog = "https://github.com/Wilfred/difftastic/raw/${version}/CHANGELOG.md";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ ethancedwards8 ]; maintainers = with maintainers; [ ethancedwards8 ];
platforms = platforms.unix;
}; };
} }