nixpkgs/pkgs/tools/admin/pbm/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
553 B
Nix
Raw Normal View History

2023-06-20 11:19:31 -04:00
{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "pbm";
2023-07-23 16:35:12 -04:00
version = "1.3.2";
2023-06-20 11:19:31 -04:00
2023-07-23 16:35:12 -04:00
nugetSha256 = "sha256-xu3g8NFLZYnHzBuoIhIiAzaPJqY0xhLWLYi+ORRADH8=";
2023-06-20 11:19:31 -04:00
meta = with lib; {
description = "CLI for managing Akka.NET applications and Akka.NET Clusters";
2023-06-20 11:19:31 -04:00
homepage = "https://cmd.petabridge.com/index.html";
changelog = "https://cmd.petabridge.com/articles/RELEASE_NOTES.html";
license = licenses.unfree;
platforms = platforms.linux;
maintainers = with maintainers; [ anpin mdarocha ];
2024-02-10 21:19:15 -05:00
mainProgram = "pbm";
2023-06-20 11:19:31 -04:00
};
}