soupault: init at 3.1.0

This commit is contained in:
toastal 2021-08-16 17:12:57 +07:00 committed by Vincent Laporte
parent 2fe4420941
commit 755b77f858
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ fetchFromGitHub, ocamlPackages, lib }:
ocamlPackages.buildDunePackage rec {
pname = "soupault";
version = "3.1.0";
useDune2 = true;
src = fetchFromGitHub {
owner = "dmbaturin";
repo = pname;
rev = version;
sha256 = "sha256-SVNC2DbdciunSKTCmmX0SqaEXMe1DkVX4VJTqriI8Y4=";
};
buildInputs = with ocamlPackages; [
base64
containers
ezjsonm
fileutils
fmt
jingoo
lambdasoup
lua-ml
logs
odate
otoml
re
spelll
tsort
yaml
];
meta = with lib; {
description = "A tool that helps you create and manage static websites";
homepage = "https://soupault.app/";
license = licenses.mit;
maintainers = [ maintainers.toastal ];
};
}

View File

@ -4497,6 +4497,8 @@ with pkgs;
sonobuoy = callPackage ../applications/networking/cluster/sonobuoy { };
soupault = callPackage ../tools/typesetting/soupault { };
strawberry = libsForQt5.callPackage ../applications/audio/strawberry { };
tealdeer = callPackage ../tools/misc/tealdeer {