mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv
|
|
, lib
|
|
, rustPlatform
|
|
, openssl
|
|
, nushell
|
|
, pkg-config
|
|
, Security
|
|
, nix-update-script
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nushell_plugin_gstat";
|
|
inherit (nushell) version src;
|
|
cargoHash = "sha256-1HfuMtjtUzwsIxkYV8azttnjEyAnC7X1aMIdw2N0yxQ=";
|
|
|
|
nativeBuildInputs = [ pkg-config ]
|
|
++ lib.optionals stdenv.cc.isClang [ rustPlatform.bindgenHook ];
|
|
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";
|
|
mainProgram = "nu_plugin_gstat";
|
|
homepage = "https://github.com/nushell/nushell/tree/${version}/crates/nu_plugin_gstat";
|
|
license = licenses.mpl20;
|
|
maintainers = with maintainers; [ mrkkrp aidalgol ];
|
|
platforms = with platforms; all;
|
|
};
|
|
}
|