snac2: 2.15 -> 2.25
https://codeberg.org/grunfink/snac2/src/tag/2.25/RELEASE_NOTES.md https://codeberg.org/grunfink/snac2/compare/2.15...2.25
This commit is contained in:
parent
147d90b84d
commit
23ae5a0622
@ -3,31 +3,42 @@
|
|||||||
, fetchFromGitea
|
, fetchFromGitea
|
||||||
, curl
|
, curl
|
||||||
, openssl
|
, openssl
|
||||||
|
, nix-update-script
|
||||||
|
, testers
|
||||||
|
, snac2
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "snac2";
|
pname = "snac2";
|
||||||
version = "2.15";
|
version = "2.25";
|
||||||
|
|
||||||
src = fetchFromGitea {
|
src = fetchFromGitea {
|
||||||
domain = "codeberg.org";
|
domain = "codeberg.org";
|
||||||
owner = "grunfink";
|
owner = "grunfink";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-aK98nolgf/pju6jPZell1qLZMxArDna4FMqf3THGV1I=";
|
hash = "sha256-xWRsJ1b2Ddf4H9KLIyc4GpRc6xUNFRQpIdgfrdPg/0c=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ curl openssl ];
|
buildInputs = [ curl openssl ];
|
||||||
|
|
||||||
makeFlags = [ "PREFIX=$(out)" ];
|
makeFlags = [ "PREFIX=$(out)" ];
|
||||||
|
|
||||||
preInstall = "mkdir -p $out/bin";
|
passthru = {
|
||||||
|
tests.version = testers.testVersion {
|
||||||
|
package = snac2;
|
||||||
|
command = "${meta.mainProgram} || true";
|
||||||
|
};
|
||||||
|
updateScript = nix-update-script { };
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://codeberg.org/grunfink/snac2";
|
homepage = "https://codeberg.org/grunfink/snac2";
|
||||||
description = "A simple, minimalistic ActivityPub instance (2.x, C)";
|
description = "A simple, minimalistic ActivityPub instance (2.x, C)";
|
||||||
|
changelog = "https://codeberg.org/grunfink/snac2/src/tag/${version}/RELEASE_NOTES.md";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ misuzu ];
|
maintainers = with maintainers; [ misuzu ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
mainProgram = "snac";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user