depot/third_party/nixpkgs/pkgs/development/tools/misc/planus/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

39 lines
1 KiB
Nix

{ lib
, rustPlatform
, fetchCrate
, installShellFiles
, stdenv
}:
rustPlatform.buildRustPackage rec {
pname = "planus";
version = "0.4.0";
src = fetchCrate {
pname = "planus-cli";
inherit version;
hash = "sha256-KpX4KSA2MjfRS8M0WVYpY4hoSvOOB7MUz7YKZwEGqj8=";
};
cargoHash = "sha256-yT/ZK5GG0rXpiaCQlQclK2iY8BXhhmiW/UDX9aL8wBQ=";
nativeBuildInputs = [
installShellFiles
];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
installShellCompletion --cmd planus \
--bash <($out/bin/planus generate-completions bash) \
--fish <($out/bin/planus generate-completions fish) \
--zsh <($out/bin/planus generate-completions zsh)
'';
meta = with lib; {
description = "Alternative compiler for flatbuffers";
mainProgram = "planus";
homepage = "https://github.com/planus-org/planus";
changelog = "https://github.com/planus-org/planus/blob/v${version}/CHANGELOG.md";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ figsoda ];
};
}