diffedit3: init at 0.4.0

Signed-off-by: Austin Seipp <aseipp@pobox.com>

+30
+30
pkgs/by-name/di/diffedit3/package.nix
···
··· 1 + { lib, rustPlatform, fetchCrate 2 + , testers, nix-update-script, diffedit3 3 + }: 4 + 5 + rustPlatform.buildRustPackage rec { 6 + pname = "diffedit3"; 7 + version = "0.4.0"; 8 + 9 + src = fetchCrate { 10 + inherit pname version; 11 + hash = "sha256-qw5Wos2u/H6ccJ3qkrVOCisMFDTNwxp/YeOTE1x5lcU="; 12 + }; 13 + 14 + cargoHash = "sha256-e5bm8GLubA9BzH9oKKSC/Ysh+O+GJA8x6W576vKIIUA="; 15 + 16 + passthru = { 17 + updateScript = nix-update-script { }; 18 + tests = testers.testVersion { 19 + package = diffedit3; 20 + }; 21 + }; 22 + 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 + }; 30 + }