mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 08:53:21 +00:00
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
rustPlatform,
|
|
openssl,
|
|
nushell,
|
|
pkg-config,
|
|
IOKit,
|
|
Foundation,
|
|
nix-update-script,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nushell_plugin_polars";
|
|
inherit (nushell) version src;
|
|
|
|
cargoHash = "sha256-Ym/ypm3bUPZkKXYVrym9LEDL0RenJCcruN3urpN2cEQ=";
|
|
|
|
nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.cc.isClang [ rustPlatform.bindgenHook ];
|
|
buildInputs =
|
|
[ openssl ]
|
|
++ lib.optionals stdenv.isDarwin [
|
|
IOKit
|
|
Foundation
|
|
];
|
|
cargoBuildFlags = [ "--package nu_plugin_polars" ];
|
|
|
|
checkPhase = ''
|
|
cargo test --manifest-path crates/nu_plugin_polars/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 = "Nushell dataframe plugin commands based on polars";
|
|
mainProgram = "nu_plugin_polars";
|
|
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_polars";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ joaquintrinanes ];
|
|
platforms = with platforms; all;
|
|
};
|
|
}
|