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

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

18 lines
529 B
Nix
Raw Normal View History

2023-06-20 11:19:31 -04:00
{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "pbm";
version = "1.3.1";
nugetSha256 = "sha256-ZG2HFyKYhVNVYd2kRlkbAjZJq88OADe3yjxmLuxXDUo=";
meta = with lib; {
description = "CLI for managing Akka.NET applications and Akka.NET Clusters.";
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 ];
};
}