Unverified Commit 70d6d08e authored by Sefa Eyeoglu's avatar Sefa Eyeoglu Committed by GitHub
Browse files

riffdiff: 3.3.3 -> 3.3.6 (#352930)

parents 6fa1961e 4071a308
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
{ lib, rustPlatform, fetchFromGitHub }:
{
  lib,
  rustPlatform,
  fetchFromGitHub,
  nix-update-script,
  riffdiff,
  testers,
}:

rustPlatform.buildRustPackage rec {
  pname = "riffdiff";
  version = "3.3.3";
  version = "3.3.6";

  src = fetchFromGitHub {
    owner = "walles";
    repo = "riff";
    rev = version;
    hash = "sha256-IdYQ8vD3ZIzqdNY4JtR8f2huV/DWOhV8FUn7tuRe7IQ=";
    rev = "refs/tags/${version}";
    hash = "sha256-qXFSO2VIPaGnB+5Wp/u0FTcKnpcMLxW6uNykKL681lU=";
  };

  cargoHash = "sha256-1on4CTstEvjNLtk1RG6dcNl0XhaPYAy+U0DYn/aVzEg=";
  cargoHash = "sha256-i6/wa2/ogyLwLBdIXqTYdJX9+SFf+p7Zm2j2Q3mje6w=";

  meta = with lib; {
  passthru = {
    tests.version = testers.testVersion { package = riffdiff; };
    updateScript = nix-update-script { };
  };

  meta = {
    description = "Diff filter highlighting which line parts have changed";
    homepage = "https://github.com/walles/riff";
    license = licenses.mit;
    maintainers = with maintainers; [ johnpyp ];
    changelog = "https://github.com/walles/riff/releases/tag/${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [
      johnpyp
      getchoo
    ];
    mainProgram = "riff";
  };
}
+0 −2
Original line number Diff line number Diff line
@@ -18138,8 +18138,6 @@ with pkgs;
  riff = callPackage ../development/tools/misc/riff { };
  riffdiff = callPackage ../tools/text/riffdiff {};
  rman = callPackage ../development/tools/misc/rman { };
  rnginline = with python3Packages; toPythonApplication rnginline;