soupault: init at 3.1.0
This commit is contained in:
parent
2fe4420941
commit
755b77f858
2 changed files with 43 additions and 0 deletions
41
pkgs/tools/typesetting/soupault/default.nix
Normal file
41
pkgs/tools/typesetting/soupault/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue