about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/typesetting/soupault/default.nix
blob: 5b0619468efb1794f0e1678a4e6c30d13a69b969 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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 ];
  };
}