Commit Graph

26 Commits

Author SHA1 Message Date
R. Ryantm
ff58c396f7 ocamlPackages.atdgen-codec-runtime: 4.1.0 -> 4.2.0 2026-04-29 22:26:50 +02:00
Vincent Laporte
a9f0eef3a0 ocamlPackages.atd: 4.0.0 → 4.1.0
ocamlPackages.atd-jsonlike: init at 4.1.0
ocamlPackages.atd-yamlx: init at 4.1.0
2026-04-16 06:51:03 +02:00
Vincent Laporte
df96a914b4 ocamlPackages.atdml: init at 4.0.0 2026-03-26 17:59:19 +01:00
R. Ryantm
da6fb1e7d5 ocamlPackages.atdgen-codec-runtime: 3.0.1 -> 4.0.0 2026-03-17 07:48:13 +00:00
Vincent Laporte
eec6d815c9 ocamlPackages.yojson: 2.2.2 → 3.0.0
ocamlPackages.atdgen-codec-runtime: 2.16.0 → 3.0.1
2025-12-12 06:35:52 +01:00
NAHO
c8d4dabc43 pkgs: remove optional builtins prefixes from prelude functions
Remove optional builtins prefixes from prelude functions by running:

    builtins=(
      abort
      baseNameOf
      break
      derivation
      derivationStrict
      dirOf
      false
      fetchGit
      fetchMercurial
      fetchTarball
      fetchTree
      fromTOML
      import
      isNull
      map
      null
      placeholder
      removeAttrs
      scopedImport
      throw
      toString
      true
    )

    fd \
      --type file \
      . \
      pkgs \
      --exec-batch sed --in-place --regexp-extended "
        s/\<builtins\.($(
          printf '%s\n' "${builtins[@]}" |
            paste --delimiter '|' --serial -
        ))\>/\1/g
      "

    nix fmt
2025-10-04 19:02:37 +02:00
Sigmanificient
91d5ab3ae4 treewide: remove unused rec expressions 2025-03-14 05:15:05 +01:00
Vincent Laporte
158f4614ed ocamlPackages.atd: 2.15.0 → 2.16.0 2025-02-12 03:46:13 +01:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
Sigmanificient
3e1227a1af pkgs/development/ocaml-modules: remove unused arguments 2024-07-16 03:54:01 +02:00
Vincent Laporte
2e5eaaa6f5 ocamlPackages.atd: 2.11.0 → 2.15.0 2023-11-24 06:34:22 +01:00
Vincent Laporte
578fbbb3db ocamlPackages.atdgen: 2.10.0 → 2.11.0 2023-04-06 08:05:41 +02:00
Ulrik Strid
f12b9ea461 buildDunePackage: default to strictDeps = true 2023-02-03 08:59:34 +01:00
Ulrik Strid
c53a63adf1 ocamlPackages treewide: strictDeps all packages 2023-02-03 08:59:34 +01:00
Guillaume Girol
33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00
Vincent Laporte
f09f7f1778 ocamlPackages.yojson: 1.7.0 → 2.0.2
ocamlPackages.merlin: 3.4.2 → 3.8.0

ocamlPackages.merlin: 4.5 → 4.6

ocamlPackages.{atd,atdgen}: 2.9.1 → 2.10.0

ocamlPackages.elpi: fix build with atd 2.10.0
2022-08-29 08:10:02 +02:00
Vincent Laporte
b6e7663556 ocamlPackages.atdgen: 2.4.1 → 2.9.1 2022-07-03 23:12:40 +02:00
Malo Bourgon
ab44808c8e ocamlPackages.atdgen: correct meta.mainProgram 2022-05-20 10:13:29 +02:00
Vincent Laporte
100e796af2 ocamlPackages.{atd,atdgen}: 2.2.1 → 2.4.1 2022-04-29 09:38:28 +02:00
Vincent Laporte
5a90feb76a ocamlPackages.atdgen-runtime: init at 2.4.1 2022-04-29 09:38:28 +02:00
Vincent Laporte
ae9b63301b ocamlPackages.atdgen-codec-runtime: init at 2.4.1 2022-04-29 09:38:28 +02:00
Vincent Laporte
128a43a1e8 ocamlPackages.atd: 2.0.0 → 2.2.1 2021-02-25 08:04:35 +01:00
Vincent Laporte
6620de7594 ocamlPackages.atdgen: init at 2.0.0
Atdgen is a command-line program that takes as input type definitions in the
ATD syntax and produces OCaml code suitable for data serialization and
deserialization.

Homepage: https://github.com/mjambon/atd
2018-12-17 21:38:49 +00:00
Ivan Jager
ef98b96356 atd: 1.12.0 -> 2.0.0 (#45046)
atdgen is now part of atd
2018-08-15 10:45:42 +02:00
volth
52f53c69ce pkgs/*: remove unreferenced function arguments 2018-07-21 02:48:04 +00:00
Eric Merritt
c651e7ff61 ocaml-atdgen: add minimal version (1.6.0) to the system 2015-05-25 13:45:10 -07:00