mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
honk: init at 0.9.8
Honk is a minimalistic ActivityPub server. https://humungus.tedunangst.com/r/honk
This commit is contained in:
parent
cdb450dcba
commit
f5339d2339
44
pkgs/servers/honk/default.nix
Normal file
44
pkgs/servers/honk/default.nix
Normal file
@ -0,0 +1,44 @@
|
||||
{ lib, buildGoModule, fetchurl, installShellFiles, sqlite }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "honk";
|
||||
version = "0.9.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://humungus.tedunangst.com/r/honk/d/honk-${version}.tgz";
|
||||
sha256 = "0vh8y1aj2w0y2zxmybhik4iv7myyldfzkd75nzgmlz3vycr60rh6";
|
||||
};
|
||||
vendorHash = null;
|
||||
|
||||
buildInputs = [ sqlite ];
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
subPackages = [ "." ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace honk.go --replace \
|
||||
"var viewDir = \".\"" \
|
||||
"var viewDir = \"$out/share/honk\""
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/${pname}
|
||||
mkdir -p $out/share/doc/${pname}
|
||||
|
||||
mv docs/{,honk-}intro.1
|
||||
mv docs/{,honk-}hfcs.1
|
||||
mv docs/{,honk-}vim.3
|
||||
mv docs/{,honk-}activitypub.7
|
||||
|
||||
installManPage docs/honk.1 docs/honk.3 docs/honk.5 docs/honk.8 \
|
||||
docs/honk-intro.1 docs/honk-hfcs.1 docs/honk-vim.3 docs/honk-activitypub.7
|
||||
mv docs/{*.html,*.txt,*.jpg,*.png} $out/share/doc/${pname}
|
||||
mv views $out/share/${pname}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "An ActivityPub server with minimal setup and support costs.";
|
||||
homepage = "https://humungus.tedunangst.com/r/honk";
|
||||
license = licenses.isc;
|
||||
maintainers = with maintainers; [ huyngo ];
|
||||
};
|
||||
}
|
@ -23726,6 +23726,8 @@ with pkgs;
|
||||
|
||||
home-assistant-component-tests = recurseIntoAttrs home-assistant.tests.components;
|
||||
|
||||
honk = callPackage ../servers/honk { };
|
||||
|
||||
hqplayerd = callPackage ../servers/hqplayerd { };
|
||||
|
||||
https-dns-proxy = callPackage ../servers/dns/https-dns-proxy { };
|
||||
|
Loading…
Reference in New Issue
Block a user