Merge pull request #266526 from ajwhouse/litterbox_init_1_9
litterbox: init at 1.9
This commit is contained in:
commit
ea53943430
2 changed files with 34 additions and 0 deletions
|
@ -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";
|
||||
|
|
28
pkgs/by-name/li/litterbox/package.nix
Normal file
28
pkgs/by-name/li/litterbox/package.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue