Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
721 B
Nix
32 lines
721 B
Nix
{
|
|
lib,
|
|
buildDartApplication,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildDartApplication rec {
|
|
pname = "protoc-gen-dart";
|
|
version = "22.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "protobuf.dart";
|
|
tag = "protoc_plugin-v${version}";
|
|
hash = "sha256-8pSCYlbZLqHnpetM4luyfGo1qnWgKx93JPjRVWCOX0w=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/protoc_plugin";
|
|
|
|
pubspecLock = lib.importJSON ./pubspec.lock.json;
|
|
|
|
passthru.updateScript = ./update.sh;
|
|
|
|
meta = {
|
|
description = "Protobuf plugin for generating Dart code";
|
|
mainProgram = "protoc-gen-dart";
|
|
homepage = "https://pub.dev/packages/protoc_plugin";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ lelgenio ];
|
|
};
|
|
}
|