Merge pull request #223608 from misuzu/snac2-update

This commit is contained in:
Sandro 2023-04-01 02:54:47 +02:00 committed by GitHub
commit 93ef3ba3ec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";
}; };
} }