1 { lib, rustPlatform, fetchFromGitHub, pkg-config, openssl }:
3 rustPlatform.buildRustPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "oyRdXvVnCfdFM8lI1eCDHHYNWcJc0Qg0TKxQXUqNo40=";
14 cargoHash = "sha256-B0tecuBx/FFQokhfI6+xpppyG5DD8WS2+MkmPaZfMhI=";
16 nativeBuildInputs = [ pkg-config ];
18 buildInputs = [ openssl ];
20 description = "Simple todo cli program written in rust";
21 homepage = "https://github.com/sioodmy/todo";
22 license = licenses.gpl3Only;
23 maintainers = with maintainers; [ sioodmy ];