mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
14 lines
334 B
Nix
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
|