evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / di / diffedit3 / package.nix
blob6c342dba52f1eb306d00ca3c6ad9bbe0f9874e0f
1 { lib, rustPlatform, fetchCrate
2 , testers, nix-update-script, diffedit3
3 }:
5 rustPlatform.buildRustPackage rec {
6   pname = "diffedit3";
7   version = "0.5.0";
9   src = fetchCrate {
10     inherit pname version;
11     hash = "sha256-zBdLz8O2WCR8SN0UXUAaEdIpmmL+LIaGt44STBw6nyU=";
12   };
14   cargoHash = "sha256-jZTXM+2Gd4N9D4Pj2KsuQ2MFPuWJdHg30u/5BlM3HEE=";
16   passthru = {
17     updateScript = nix-update-script { };
18     tests = testers.testVersion {
19       package = diffedit3;
20     };
21   };
23   meta = with lib; {
24     homepage = "https://github.com/ilyagr/diffedit3";
25     description = "3-pane diff editor";
26     license = with licenses; [ asl20 ];
27     mainProgram = "diffedit3";
28     maintainers = with maintainers; [ thoughtpolice ];
29   };