mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-18 05:58:53 +00:00
litterbox: init at 1.9
This commit is contained in:
parent
3dc0248dbc
commit
5c2dd96da8
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 New Issue
Block a user