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 15:19:31 +00:00
{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "pbm";
2023-07-23 20:35:12 +00:00
version = "1.3.2";
2023-06-20 15:19:31 +00:00
2023-07-23 20:35:12 +00:00
nugetSha256 = "sha256-xu3g8NFLZYnHzBuoIhIiAzaPJqY0xhLWLYi+ORRADH8=";
2023-06-20 15:19:31 +00:00
meta = with lib; {
description = "CLI for managing Akka.NET applications and Akka.NET Clusters";
2023-06-20 15:19:31 +00: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-11 02:19:15 +00:00
mainProgram = "pbm";
2023-06-20 15:19:31 +00:00
};
}