Merge pull request #251455 from Janik-Haag/neosay

neosay: init at 1.0.0
This commit is contained in:
figsoda
2023-08-30 20:44:53 -04:00
committed by GitHub
2 changed files with 29 additions and 0 deletions
@@ -0,0 +1,27 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "neosay";
version = "1.0.0";
src = fetchFromGitHub {
owner = "donuts-are-good";
repo = "neosay";
rev = "v${version}";
hash = "sha256-Uwz6Y26AtzWXLFgJY0WVD0HBb+vbMeeMKt8gCk6viec=";
};
vendorHash = "sha256-w0aZnel5Obq73UXcG9wmO9t/7qQTE8ru656u349cvzQ=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Pipe stdin to matrix";
homepage = "https://github.com/donuts-are-good/neosay";
license = licenses.mit;
maintainers = with maintainers; [ janik ];
};
}
+2
View File
@@ -34187,6 +34187,8 @@ with pkgs;
neomutt = callPackage ../applications/networking/mailreaders/neomutt { };
neosay = callPackage ../applications/networking/instant-messengers/neosay { };
natron = libsForQt5.callPackage ../applications/video/natron { };
natural-docs = callPackage ../applications/misc/natural-docs { };