mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 02:33:15 +00:00
30 lines
871 B
Nix
30 lines
871 B
Nix
{ stdenv
|
|
, lib
|
|
, rustPlatform
|
|
, nushell
|
|
, pkg-config
|
|
, IOKit
|
|
, Foundation
|
|
, nix-update-script
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nushell_plugin_formats";
|
|
inherit (nushell) version src;
|
|
cargoHash = "sha256-WS8VRpJnn/VWS7GUkGowFf51ifUx0SbEZzcoTfx2dp0=";
|
|
nativeBuildInputs = [ pkg-config ];
|
|
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 { };
|
|
meta = with lib; {
|
|
description = "A formats plugin for Nushell";
|
|
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_formats";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ viraptor aidalgol ];
|
|
platforms = with platforms; all;
|
|
};
|
|
}
|