Merge pull request #266526 from ajwhouse/litterbox_init_1_9

litterbox: init at 1.9
This commit is contained in:
Emily Trau 2023-12-01 22:02:53 +11:00 committed by GitHub
commit ea53943430
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 34 additions and 0 deletions

View File

@ -616,6 +616,12 @@
githubId = 1229027;
name = "Andreas Schrägle";
};
ajwhouse = {
email = "adam@ajwh.chat";
github = "ajwhouse";
githubId = 56616368;
name = "Adam House";
};
ak = {
email = "ak@formalprivacy.com";
github = "alexanderkjeldaas";

View File

@ -0,0 +1,28 @@
{ lib, stdenv, libressl, fetchzip, pkg-config, sqlite }:
stdenv.mkDerivation rec {
pname = "litterbox";
version = "1.9";
src = fetchzip {
url = "https://git.causal.agency/litterbox/snapshot/litterbox-${version}.tar.gz";
hash = "sha256-w4qW7J5CKm+hXHsNNbl9roBslHD14JOe0Nj5WntETqM=";
};
buildInputs = [ libressl sqlite ];
nativeBuildInputs = [ pkg-config ];
strictDeps = true;
buildFlags = [ "all" ];
meta = with lib; {
description = "Simple TLS-only IRC logger";
homepage = "https://code.causal.agency/june/litterbox";
license = licenses.gpl3Plus;
mainProgram = "litterbox";
maintainers = with maintainers; [ ajwhouse ];
platforms = platforms.linux;
};
}