mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
28 lines
802 B
Nix
28 lines
802 B
Nix
{ stdenv
|
|
, lib
|
|
, rustPlatform
|
|
, openssl
|
|
, nushell
|
|
, pkg-config
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nushell_plugin_gstat";
|
|
inherit (nushell) version src;
|
|
cargoHash = "sha256-6luY3SIRRd9vaY9KIJcj8Q974FW0LtAvRjVpdpzkdLo=";
|
|
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
|
|
'';
|
|
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;
|
|
};
|
|
}
|