mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
55 lines
1.2 KiB
Nix
55 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchCrate
|
|
, rustPlatform
|
|
, pkg-config
|
|
, rustfmt
|
|
, cacert
|
|
, openssl
|
|
, darwin
|
|
, testers
|
|
, dioxus-cli
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "dioxus-cli";
|
|
version = "0.5.4";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-rfftCJW3MRDg7a2WUDXZWGx1lYmOkqVRcJTEGMObars=";
|
|
};
|
|
|
|
cargoHash = "sha256-cpgjs8ZxpJrnA5UtoVoP97VFfmQ7CS1H74D19x0bzAA=";
|
|
|
|
nativeBuildInputs = [ pkg-config cacert ];
|
|
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
darwin.apple_sdk.frameworks.SystemConfiguration
|
|
];
|
|
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
nativeCheckInputs = [ rustfmt ];
|
|
|
|
checkFlags = [
|
|
# requires network access
|
|
"--skip=server::web::proxy::test::add_proxy"
|
|
"--skip=server::web::proxy::test::add_proxy_trailing_slash"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = dioxus-cli;
|
|
command = "${meta.mainProgram} --version";
|
|
inherit version;
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://dioxuslabs.com";
|
|
description = "CLI tool for developing, testing, and publishing Dioxus apps";
|
|
license = with licenses; [ mit asl20 ];
|
|
maintainers = with maintainers; [ xanderio cathalmullan ];
|
|
mainProgram = "dx";
|
|
};
|
|
}
|