nixpkgs/pkgs/shells/nushell/plugins/gstat.nix
Stanisław Pitucha 74b3ce843b nushellPlugins: improve clang build
The variable is needed on all clang builds. Macos error was incidental
since it triggers clang by default.
2023-12-16 21:08:52 +11:00

41 lines
1.1 KiB
Nix

{ stdenv
, lib
, rustPlatform
, openssl
, nushell
, pkg-config
, Security
, libclang
, nix-update-script
}:
rustPlatform.buildRustPackage rec {
pname = "nushell_plugin_gstat";
inherit (nushell) version src;
cargoHash = "sha256-Ar5rFPHf+ugZuugVKVRFACYhh3F0JvQtfp6KibPIByw=";
env = lib.optionalAttrs stdenv.cc.isClang {
LIBCLANG_PATH = "${libclang.lib}/lib";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ];
cargoBuildFlags = [ "--package nu_plugin_gstat" ];
checkPhase = ''
cargo test --manifest-path crates/nu_plugin_gstat/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 git status plugin for Nushell";
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_gstat";
license = licenses.mpl20;
maintainers = with maintainers; [ mrkkrp aidalgol ];
platforms = with platforms; all;
};
}