2021-02-05 17:12:51 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "todiff";
|
|
|
|
version = "0.6.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Ekleog";
|
|
|
|
repo = "todiff";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1y0v8nkaqb8kn61xwarpbyrq019gxx1f5f5p1hzw73nqxadc1rcm";
|
|
|
|
};
|
|
|
|
|
2021-05-28 09:39:13 +00:00
|
|
|
cargoSha256 = "0vrn1vc3rwabv6l2r1qb7mkcxbp75q79bfl3rxhyi51ra3ij507r";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
checkPhase = "cargo test --features=integration_tests";
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Human-readable diff for todo.txt files";
|
|
|
|
homepage = "https://github.com/Ekleog/todiff";
|
|
|
|
maintainers = with maintainers; [ ekleog ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|