55 lines
1.1 KiB
Nix
55 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitea,
|
|
curl,
|
|
openssl,
|
|
nix-update-script,
|
|
testers,
|
|
snac2,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "snac2";
|
|
version = "2.65";
|
|
|
|
src = fetchFromGitea {
|
|
domain = "codeberg.org";
|
|
owner = "grunfink";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-jzkimE4JPrlsHP0jPawhloXMDNaWG1Sgfp5NiZxm1xo=";
|
|
};
|
|
|
|
buildInputs = [
|
|
curl
|
|
openssl
|
|
];
|
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString (
|
|
lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"-Dst_mtim=st_mtimespec"
|
|
"-Dst_ctim=st_ctimespec"
|
|
]
|
|
);
|
|
|
|
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 = "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.unix;
|
|
mainProgram = "snac";
|
|
};
|
|
}
|