hoard: init at 1.0.1

+29
+27
pkgs/tools/misc/hoard/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub, ncurses, openssl, pkg-config, stdenv, Security }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "hoard"; 5 + version = "1.0.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "Hyde46"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-xXZ1bbCRhS8/rb1eIErvw2wEWF1unLXSP/YKn5Z4Vwo="; 12 + }; 13 + 14 + buildInputs = [ ncurses openssl ] 15 + ++ lib.optional stdenv.isDarwin Security; 16 + 17 + nativeBuildInputs = [ pkg-config ]; 18 + 19 + cargoSha256 = "sha256-c60yxbZG258R5iH6x0LhipbyXal/kDxddEzTfl82hCE="; 20 + 21 + meta = with lib; { 22 + description = "CLI command organizer written in rust"; 23 + homepage = "https://github.com/hyde46/hoard"; 24 + license = licenses.mit; 25 + maintainers = with maintainers; [ builditluc ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 21844 21844 21845 21845 hiawatha = callPackage ../servers/http/hiawatha {}; 21846 21846 21847 + hoard = callPackage ../tools/misc/hoard { inherit (darwin) Security; }; 21848 + 21847 21849 home-assistant = callPackage ../servers/home-assistant { }; 21848 21850 21849 21851 home-assistant-cli = callPackage ../servers/home-assistant/cli.nix { };