mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
33 lines
732 B
Nix
33 lines
732 B
Nix
|
|
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
darwin,
|
|
...
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "nufmt";
|
|
version = "unstable-2023-09-25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nushell";
|
|
repo = "nufmt";
|
|
rev = "796ee834c1e31ead4c5479bf2827a4339c5d61d1";
|
|
hash = "sha256-BwKLl8eMCrqVt9PA5SHAXxu3ypP2ePcSuljKL+wSkvw=";
|
|
};
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
IOKit
|
|
]);
|
|
|
|
cargoSha256 = "sha256-16Z20opeZpoa7h258um+grL3ktPmY4P0M/tqMTr5hYc=";
|
|
|
|
meta = with lib; {
|
|
description = "The nushell formatter";
|
|
homepage = "https://github.com/nushell/nufmt";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [iogamaster];
|
|
};
|
|
}
|