summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authortoastal <toastal@posteo.net>2021-08-16 17:12:57 +0700
committerVincent Laporte <vbgl@users.noreply.github.com>2021-08-27 07:43:08 +0200
commit755b77f858a81a5e6c7250a5ac3f18c6c68a6dbe (patch)
treeb1b6103b8d11e5390e17842fbc91f96da1a8c1a0 /pkgs/tools/typesetting
parent2fe4420941201068b6d2ee63d94b654bb276ac9b (diff)
soupault: init at 3.1.0
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/soupault/default.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/soupault/default.nix b/pkgs/tools/typesetting/soupault/default.nix
new file mode 100644
index 000000000000..5b0619468efb
--- /dev/null
+++ b/pkgs/tools/typesetting/soupault/default.nix
@@ -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 ];
+ };
+}
+