evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / to / todiff / package.nix
blobb3df5f48e8591e302035829098fd36f188c5bfb9
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "todiff";
5   version = "0.6.1";
7   src = fetchFromGitHub {
8     owner = "Ekleog";
9     repo = "todiff";
10     rev = version;
11     hash = "sha256-leXAmurYjsM/DLe44kLvLwWAs183K96DsRMtrKZFG/g=";
12   };
14   cargoHash = "sha256-+YAi41A5lOhhz4O6lQ4u567OZj0Lhyyo2UvxPNgONm8=";
16   checkFeatures = [ "integration_tests" ];
18   meta = with lib; {
19     description = "Human-readable diff for todo.txt files";
20     homepage = "https://github.com/Ekleog/todiff";
21     maintainers = with maintainers; [ ekleog ];
22     license = licenses.mit;
23   };