biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / text / riffdiff / default.nix
blob481a75e1bd1276af757f5051e553b57d306b5998
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "riffdiff";
5   version = "3.3.3";
7   src = fetchFromGitHub {
8     owner = "walles";
9     repo = "riff";
10     rev = version;
11     hash = "sha256-IdYQ8vD3ZIzqdNY4JtR8f2huV/DWOhV8FUn7tuRe7IQ=";
12   };
14   cargoHash = "sha256-1on4CTstEvjNLtk1RG6dcNl0XhaPYAy+U0DYn/aVzEg=";
16   meta = with lib; {
17     description = "Diff filter highlighting which line parts have changed";
18     homepage = "https://github.com/walles/riff";
19     license = licenses.mit;
20     maintainers = with maintainers; [ johnpyp ];
21     mainProgram = "riff";
22   };