Merge pull request #129815 from ethancedwards8/difftastic
difftastic: init at unstable-2021-07-09
This commit is contained in:
commit
b71a0d62f7
23
pkgs/tools/text/difftastic/default.nix
Normal file
23
pkgs/tools/text/difftastic/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "difftastic";
|
||||
version = "0.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "wilfred";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "WFvxdRCbTBW1RGn2SvAo2iXn82OO/Z06cZQkIu4eiew=";
|
||||
};
|
||||
|
||||
cargoSha256 = "2hRUfIxNVs4uSrEESas3wvvVsZHVocP8aiO7K0NZ+mY=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A syntax-aware diff";
|
||||
homepage = "https://github.com/Wilfred/difftastic";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ ethancedwards8 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -4235,6 +4235,8 @@ in
|
||||
|
||||
diffstat = callPackage ../tools/text/diffstat { };
|
||||
|
||||
difftastic = callPackage ../tools/text/difftastic { };
|
||||
|
||||
diffutils = callPackage ../tools/text/diffutils { };
|
||||
|
||||
dir2opus = callPackage ../tools/audio/dir2opus {
|
||||
|
Loading…
Reference in New Issue
Block a user