depot/third_party/nixpkgs/pkgs/by-name/pb/pbm/package.nix

21 lines
567 B
Nix

{ buildDotnetGlobalTool, lib }:
buildDotnetGlobalTool {
pname = "pbm";
version = "1.4.3";
nugetHash = "sha256-R6dmF3HPI2BAcNGLCm6WwBlk4ev6T6jaiJUAWYKf2S4=";
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
];
mainProgram = "pbm";
};
}