nixpkgs/pkgs/tools/misc/todo/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
678 B
Nix
Raw Normal View History

2022-10-13 15:13:14 +02:00
{ lib, rustPlatform, fetchFromGitHub, pkg-config, stdenv, openssl }:
2022-03-26 19:55:42 +01:00
rustPlatform.buildRustPackage rec {
pname = "todo";
2022-10-13 15:13:14 +02:00
version = "2.5";
2022-03-26 19:55:42 +01:00
src = fetchFromGitHub {
owner = "sioodmy";
repo = "todo";
rev = version;
2022-10-13 15:13:14 +02:00
sha256 = "oyRdXvVnCfdFM8lI1eCDHHYNWcJc0Qg0TKxQXUqNo40=";
2022-03-26 19:55:42 +01:00
};
2022-10-13 15:13:14 +02:00
cargoSha256 = "B0tecuBx/FFQokhfI6+xpppyG5DD8WS2+MkmPaZfMhI=";
2022-03-26 19:55:42 +01:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ];
meta = with lib; {
description = "Simple todo cli program written in rust";
homepage = "https://github.com/sioodmy/todo";
license = licenses.gpl3Only;
maintainers = with maintainers; [ sioodmy ];
mainProgram = "todo";
};
}