Merge pull request #193025 from xanderio/dioxus-cli

dioxus-cli: init at 0.1.4

authored by Pascal Bach and committed by GitHub 252d3056 bf40bcce

+24
+22
pkgs/development/tools/rust/dioxus-cli/default.nix
··· 1 + { fetchCrate, lib, rustPlatform, openssl, pkg-config }: 2 + rustPlatform.buildRustPackage rec { 3 + pname = "dioxus-cli"; 4 + version = "0.1.4"; 5 + 6 + src = fetchCrate { 7 + inherit pname version; 8 + sha256 = "sha256-SnmDOMxc+39LX6kOzma2zA6T91UGCnvr7WWhX+wXnLo="; 9 + }; 10 + 11 + nativeBuildInputs = [ pkg-config ]; 12 + buildInputs = [ openssl ]; 13 + 14 + cargoSha256 = "sha256-Mf/WtOO/vFuhg90DoPDwOZ6XKj423foHZ8vHugXakb0="; 15 + 16 + meta = with lib; { 17 + description = "CLI tool for developing, testing, and publishing Dioxus apps"; 18 + homepage = "https://dioxuslabs.com"; 19 + license = with licenses; [ mit asl20 ]; 20 + maintainers = with maintainers; [ xanderio ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 16453 16453 16454 16454 dive = callPackage ../development/tools/dive { }; 16455 16455 16456 + dioxus-cli = callPackage ../development/tools/rust/dioxus-cli { }; 16457 + 16456 16458 doclifter = callPackage ../development/tools/misc/doclifter { }; 16457 16459 16458 16460 docutils = with python3Packages; toPythonApplication docutils;