1 { lib, rustPlatform, fetchFromGitHub, ncurses, openssl, pkg-config, stdenv, Security }:
3 rustPlatform.buildRustPackage rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-xXZ1bbCRhS8/rb1eIErvw2wEWF1unLXSP/YKn5Z4Vwo=";
14 buildInputs = [ ncurses openssl ]
15 ++ lib.optional stdenv.isDarwin Security;
17 nativeBuildInputs = [ pkg-config ];
19 cargoSha256 = "sha256-c60yxbZG258R5iH6x0LhipbyXal/kDxddEzTfl82hCE=";
22 description = "CLI command organizer written in rust";
23 homepage = "https://github.com/hyde46/hoard";
24 license = licenses.mit;
25 maintainers = with maintainers; [ builditluc ];