forked from mirrors/nixpkgs
Merge pull request #238696 from johnpyp/init-riffdiff
riffdiff: init at 2.23.3
This commit is contained in:
commit
af27820b14
|
@ -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";
|
||||
|
|
23
pkgs/tools/text/riffdiff/default.nix
Normal file
23
pkgs/tools/text/riffdiff/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue