45 lines
979 B
Nix
45 lines
979 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitea
|
|
, curl
|
|
, openssl
|
|
, nix-update-script
|
|
, testers
|
|
, snac2
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "snac2";
|
|
version = "2.28";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "grunfink";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-VeywijUgLcSxaqlkFkZMqZQn2u2ZmCL1CcJ7eW+C9k4=";
|
|
};
|
|
|
|
buildInputs = [ curl openssl ];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
passthru = {
|
|
tests.version = testers.testVersion {
|
|
package = snac2;
|
|
command = "${meta.mainProgram} || true";
|
|
};
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://codeberg.org/grunfink/snac2";
|
|
description = "A simple, minimalistic ActivityPub instance (2.x, C)";
|
|
changelog = "https://codeberg.org/grunfink/snac2/src/tag/${version}/RELEASE_NOTES.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ misuzu ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "snac";
|
|
};
|
|
}
|