blob: 0b8f718d0c969a85e8dd84e4f8d22bb4224886d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
{ stdenv
, lib
, fetchFromGitea
, curl
, openssl
, nix-update-script
, testers
, snac2
}:
stdenv.mkDerivation rec {
pname = "snac2";
version = "2.59";
src = fetchFromGitea {
domain = "codeberg.org";
owner = "grunfink";
repo = pname;
rev = version;
hash = "sha256-CIn+/LC6z+2lnU8w3EzrBIBg94J9OnCxME2mZW65OwE=";
};
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";
};
}
|