1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

litterbox: init at 1.9

This commit is contained in:
Adam House 2023-11-09 12:14:17 -08:00 committed by Adam House
parent 3dc0248dbc
commit 5c2dd96da8

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