nixpkgs/pkgs/applications/networking/instant-messengers/neosay/default.nix

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

29 lines
613 B
Nix
Raw Normal View History

2023-08-25 21:39:04 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "neosay";
2023-12-17 05:52:20 +00:00
version = "1.0.1";
2023-08-25 21:39:04 +00:00
src = fetchFromGitHub {
owner = "donuts-are-good";
repo = "neosay";
rev = "v${version}";
2023-12-17 05:52:20 +00:00
hash = "sha256-2tFjvAobDpBh1h0ejdtqxDsC+AqyneN+xNssOJNfEbk=";
2023-08-25 21:39:04 +00:00
};
vendorHash = "sha256-w0aZnel5Obq73UXcG9wmO9t/7qQTE8ru656u349cvzQ=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Pipe stdin to matrix";
mainProgram = "neosay";
2023-08-25 21:39:04 +00:00
homepage = "https://github.com/donuts-are-good/neosay";
license = licenses.mit;
maintainers = with maintainers; [ janik ];
};
}