2023-10-09 19:29:22 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, rustPlatform
|
|
|
|
, nushell
|
|
|
|
, pkg-config
|
|
|
|
, IOKit
|
|
|
|
, Foundation
|
|
|
|
, nix-update-script
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "nushell_plugin_formats";
|
|
|
|
inherit (nushell) version src;
|
2024-06-05 15:53:02 +00:00
|
|
|
cargoHash = "sha256-r5r+LdG6isZiKzwaZM/RIzQnZwrVBDCbdM1SMbvVU0E=";
|
2023-10-09 19:29:22 +00:00
|
|
|
|
2024-04-21 15:54:59 +00:00
|
|
|
nativeBuildInputs = [ pkg-config ]
|
|
|
|
++ lib.optionals stdenv.cc.isClang [ rustPlatform.bindgenHook ];
|
2023-10-09 19:29:22 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ IOKit Foundation ];
|
|
|
|
cargoBuildFlags = [ "--package nu_plugin_formats" ];
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
cargo test --manifest-path crates/nu_plugin_formats/Cargo.toml
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
|
|
# Skip the version check and only check the hash because we inherit version from nushell.
|
|
|
|
extraArgs = [ "--version=skip" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A formats plugin for Nushell";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "nu_plugin_formats";
|
2023-10-09 19:29:22 +00:00
|
|
|
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_formats";
|
2024-06-05 15:53:02 +00:00
|
|
|
license = licenses.mit;
|
2023-10-09 19:29:22 +00:00
|
|
|
maintainers = with maintainers; [ viraptor aidalgol ];
|
|
|
|
platforms = with platforms; all;
|
|
|
|
};
|
|
|
|
}
|