diff --git a/pkgs/servers/honk/default.nix b/pkgs/servers/honk/default.nix new file mode 100644 index 000000000000..913b607ac843 --- /dev/null +++ b/pkgs/servers/honk/default.nix @@ -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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c841d8b933da..d95cff8de9d3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };