nixpkgs/pkgs/servers/honk/default.nix

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

66 lines
1.6 KiB
Nix
Raw Normal View History

2023-08-17 16:15:59 +00:00
{ lib
, buildGoModule
, fetchurl
, sqlite
, installShellFiles
2023-08-17 17:01:05 +00:00
, nixosTests
2023-08-17 16:15:59 +00:00
}:
buildGoModule rec {
pname = "honk";
2024-03-12 03:32:07 +00:00
version = "1.3.1";
src = fetchurl {
url = "https://humungus.tedunangst.com/r/honk/d/honk-${version}.tgz";
2024-03-12 03:32:07 +00:00
hash = "sha256-F4Hz36nvcZv8MTh7a9Zr73kEBTS0c16Xty3T6/EzJeI=";
};
vendorHash = null;
2023-08-17 16:15:59 +00:00
buildInputs = [
sqlite
];
nativeBuildInputs = [
installShellFiles
];
subPackages = [ "." ];
2023-08-17 16:12:07 +00:00
# This susbtitution is not mandatory. It is only existing to have something
# working out of the box. This value can be overriden by the user, by
# providing the `-viewdir` parameter in the command line.
postPatch = ''
2023-08-18 10:34:45 +00:00
substituteInPlace main.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}
'';
2023-08-17 17:01:05 +00:00
passthru.tests = {
inherit (nixosTests) honk;
};
2023-08-17 16:15:59 +00:00
meta = {
2023-08-17 20:51:07 +00:00
changelog = "https://humungus.tedunangst.com/r/honk/v/v${version}/f/docs/changelog.txt";
description = "ActivityPub server with minimal setup and support costs";
homepage = "https://humungus.tedunangst.com/r/honk";
2023-08-17 16:15:59 +00:00
license = lib.licenses.isc;
2023-08-17 16:12:26 +00:00
mainProgram = "honk";
2023-08-17 16:15:59 +00:00
maintainers = with lib.maintainers; [ huyngo ];
};
}