summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-08-27 06:00:59 +0000
committerGitHub <noreply@github.com>2021-08-27 06:00:59 +0000
commitfd0f3770487195701352ce16c3d816576125df84 (patch)
tree0b1fc22403a65a54c4cf2400130a9d0c763c022f /pkgs/tools/typesetting
parent10ce8bb75375e0a69f9eed6cadd12607925b9922 (diff)
parent755b77f858a81a5e6c7250a5ac3f18c6c68a6dbe (diff)
Merge master into staging-next
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 ];
+ };
+}
+