base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / li / litterbox / package.nix
blobdcf6a3d0d12536ce72111aa3416ade89de46a583
1 { lib, stdenv, libressl, fetchzip, pkg-config, sqlite }:
3 stdenv.mkDerivation rec {
4   pname = "litterbox";
5   version = "1.9";
7   src = fetchzip {
8     url = "https://git.causal.agency/litterbox/snapshot/litterbox-${version}.tar.gz";
9     hash = "sha256-w4qW7J5CKm+hXHsNNbl9roBslHD14JOe0Nj5WntETqM=";
10   };
12   buildInputs = [ libressl sqlite ];
14   nativeBuildInputs = [ pkg-config ];
16   strictDeps = true;
18   buildFlags = [ "all" ];
20   meta = with lib; {
21     description = "Simple TLS-only IRC logger";
22     homepage = "https://code.causal.agency/june/litterbox";
23     license = licenses.gpl3Plus;
24     mainProgram = "litterbox";
25     maintainers = with maintainers; [ ajwhouse ];
26     platforms = platforms.linux;
27   };