Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions pkgs/by-name/ne/neonmodem/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{ lib
, buildGoModule
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please format with the new formatter.

, fetchFromGitHub
}:

buildGoModule rec {
pname = "neonmodem";
version = "1.0.4";

src = fetchFromGitHub {
owner = "mrusme";
repo = "neonmodem";
rev = "v${version}";
hash = "sha256-gc3uPck+2ecqpRtnkvjlTX6H4Dsvn4iynhZEJsNO1bo=";
};

vendorHash = "sha256-EGltrOKPHpgRNYspIv7LuGJ6SvCtp7TGap/DBa8yHZg=";

ldflags = [ "-s" "-w" ];

meta = with lib; {
description = "A BBS-style command line client for many backends";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description = "A BBS-style command line client for many backends";
description = "BBS-style command line client for many backends";

homepage = "https://github.com/mrusme/neonmodem";
license = licenses.gpl3Only;
maintainers = with maintainers; [ iogamaster ];
mainProgram = "neonmodem";
};
}