about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authortoastal <toastal@posteo.net>2024-03-19 21:56:03 +0700
committerVincent Laporte <vbgl@users.noreply.github.com>2024-03-20 16:42:45 +0100
commit5393cc5dc278c5595036025051003084a6d1336e (patch)
treeb8fa8173be20d55520f1f6faea641a92d1f2bdd1 /pkgs/tools/typesetting
parentbde81af2418c785a93160c7113b368d217c00caa (diff)
soupault: mv to by-name
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/soupault/default.nix61
1 files changed, 0 insertions, 61 deletions
diff --git a/pkgs/tools/typesetting/soupault/default.nix b/pkgs/tools/typesetting/soupault/default.nix
deleted file mode 100644
index 639af41367290..0000000000000
--- a/pkgs/tools/typesetting/soupault/default.nix
+++ /dev/null
@@ -1,61 +0,0 @@
-{ lib
-, fetchzip
-, ocamlPackages
-, soupault
-, testers
-}:
-
-let
-  pname = "soupault";
-
-  version = "4.9.0";
-in
-ocamlPackages.buildDunePackage {
-  inherit pname version;
-
-  minimalOCamlVersion = "4.13";
-
-  src = fetchzip {
-    urls = [
-      "https://github.com/PataphysicalSociety/soupault/archive/${version}.tar.gz"
-      "https://codeberg.org/PataphysicalSociety/soupault/archive/${version}.tar.gz"
-    ];
-    hash = "sha256-vGTJUbAeYs/EYFykNSmCc4c9G66/Lz3BsUYnZQ8feFo=";
-  };
-
-  buildInputs = with ocamlPackages; [
-    base64
-    camomile
-    containers
-    csv
-    digestif
-    ezjsonm
-    fileutils
-    fmt
-    jingoo
-    lambdasoup
-    lua-ml
-    logs
-    markup
-    odate
-    otoml
-    re
-    spelll
-    tsort
-    yaml
-  ];
-
-  passthru.tests.version = testers.testVersion {
-    package = soupault;
-    command = "soupault --version-number";
-  };
-
-  meta = {
-    description = "A tool that helps you create and manage static websites";
-    homepage = "https://soupault.app/";
-    changelog = "https://codeberg.org/PataphysicalSociety/soupault/src/branch/main/CHANGELOG.md";
-    license = lib.licenses.mit;
-    maintainers = with lib.maintainers; [ toastal ];
-    mainProgram = "soupault";
-  };
-}