3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #238696 from johnpyp/init-riffdiff

riffdiff: init at 2.23.3
This commit is contained in:
figsoda 2023-06-21 23:44:14 -04:00 committed by GitHub
commit af27820b14
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View file

@ -7834,6 +7834,12 @@
githubId = 2576152;
name = "John M. Harris, Jr.";
};
johnpyp = {
name = "John Paul Penaloza";
email = "johnpyp.dev@gmail.com";
github = "johnpyp";
githubId = 20625636;
};
johnramsden = {
email = "johnramsden@riseup.net";
github = "johnramsden";

View file

@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "riffdiff";
version = "2.23.3";
src = fetchFromGitHub {
owner = "walles";
repo = "riff";
rev = version;
hash = "sha256-5C2Q9moFo39zeLK0PkY6S74I/MI8TVpD3tRAaX4TMT4=";
};
cargoHash = "sha256-xHdlU9YXvEvfspDntLLgWr/knAfjMmiWK9JCV9wtIIE=";
meta = with lib; {
description = "A diff filter highlighting which line parts have changed";
homepage = "https://github.com/walles/riff";
license = licenses.mit;
maintainers = with maintainers; [ johnpyp ];
mainProgram = "riff";
};
}

View file

@ -19358,6 +19358,8 @@ with pkgs;
riff = callPackage ../development/tools/misc/riff { };
riffdiff = callPackage ../tools/text/riffdiff {};
rman = callPackage ../development/tools/misc/rman { };
rnginline = with python3Packages; toPythonApplication rnginline;