nixpkgs/pkgs/shells/nushell/plugins/gstat.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.1 KiB
Nix
Raw Normal View History

{
stdenv,
lib,
rustPlatform,
openssl,
nushell,
pkg-config,
Security,
nix-update-script,
2023-05-17 09:41:32 +00:00
}:
rustPlatform.buildRustPackage rec {
pname = "nushell_plugin_gstat";
inherit (nushell) version src;
2024-11-13 11:33:04 +00:00
cargoHash = "sha256-IGOT3tlFUjnD5DBbi8zERPcL7OiP8lwKtK4GVOR53xU=";
nativeBuildInputs = [ pkg-config ] ++ lib.optionals stdenv.cc.isClang [ rustPlatform.bindgenHook ];
buildInputs = [ openssl ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ Security ];
2023-05-17 09:41:32 +00:00
cargoBuildFlags = [ "--package nu_plugin_gstat" ];
2023-09-11 20:48:00 +00:00
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" ];
};
2023-05-17 09:41:32 +00:00
meta = with lib; {
description = "Git status plugin for Nushell";
mainProgram = "nu_plugin_gstat";
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_gstat";
2024-05-31 06:49:55 +00:00
license = licenses.mit;
maintainers = with maintainers; [
mrkkrp
aidalgol
];
2023-05-17 09:41:32 +00:00
platforms = with platforms; all;
};
}