lock: 1.3.0 -> 1.3.4 (#364295)
[NixPkgs.git] / pkgs / by-name / to / todiff / package.nix
blob08af4224fd1ea7bffd4b2c03d834c2f05064d58a
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "todiff";
9   version = "0.6.1";
11   src = fetchFromGitHub {
12     owner = "Ekleog";
13     repo = "todiff";
14     rev = version;
15     hash = "sha256-leXAmurYjsM/DLe44kLvLwWAs183K96DsRMtrKZFG/g=";
16   };
18   cargoHash = "sha256-+YAi41A5lOhhz4O6lQ4u567OZj0Lhyyo2UvxPNgONm8=";
20   checkFeatures = [ "integration_tests" ];
22   meta = with lib; {
23     description = "Human-readable diff for todo.txt files";
24     homepage = "https://github.com/Ekleog/todiff";
25     maintainers = with maintainers; [ ekleog ];
26     license = licenses.mit;
27   };