Merge pull request #266526 from ajwhouse/litterbox_init_1_9

litterbox: init at 1.9

authored by Emily Trau and committed by GitHub ea539434 00bee097

+34
+6
maintainers/maintainer-list.nix
··· 616 616 githubId = 1229027; 617 617 name = "Andreas Schrägle"; 618 618 }; 619 + ajwhouse = { 620 + email = "adam@ajwh.chat"; 621 + github = "ajwhouse"; 622 + githubId = 56616368; 623 + name = "Adam House"; 624 + }; 619 625 ak = { 620 626 email = "ak@formalprivacy.com"; 621 627 github = "alexanderkjeldaas";
+28
pkgs/by-name/li/litterbox/package.nix
··· 1 + { lib, stdenv, libressl, fetchzip, pkg-config, sqlite }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "litterbox"; 5 + version = "1.9"; 6 + 7 + src = fetchzip { 8 + url = "https://git.causal.agency/litterbox/snapshot/litterbox-${version}.tar.gz"; 9 + hash = "sha256-w4qW7J5CKm+hXHsNNbl9roBslHD14JOe0Nj5WntETqM="; 10 + }; 11 + 12 + buildInputs = [ libressl sqlite ]; 13 + 14 + nativeBuildInputs = [ pkg-config ]; 15 + 16 + strictDeps = true; 17 + 18 + buildFlags = [ "all" ]; 19 + 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 + }; 28 + }