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
670 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub, pkg-config, openssl }:
2022-03-26 18:55:42 +00:00
rustPlatform.buildRustPackage rec {
pname = "todo";
2022-10-13 13:13:14 +00:00
version = "2.5";
2022-03-26 18:55:42 +00:00
src = fetchFromGitHub {
owner = "sioodmy";
repo = "todo";
rev = version;
2022-10-13 13:13:14 +00:00
sha256 = "oyRdXvVnCfdFM8lI1eCDHHYNWcJc0Qg0TKxQXUqNo40=";
2022-03-26 18:55:42 +00:00
};
2022-10-13 13:13:14 +00:00
cargoSha256 = "B0tecuBx/FFQokhfI6+xpppyG5DD8WS2+MkmPaZfMhI=";
2022-03-26 18:55:42 +00: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";
};
}