Files
nixpkgs/pkgs/build-support/writers/default.nix
2025-11-30 02:23:26 +02:00

14 lines
334 B
Nix

{ callPackages }:
# If you are reading this, you can test these writers by running: nix-build . -A tests.writers
let
# Writers for JSON-like data structures
dataWriters = callPackages ./data.nix { };
# Writers for scripts
scriptWriters = callPackages ./scripts.nix { };
writers = scriptWriters // dataWriters;
in
writers