Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at python-updates 13 lines 334 B view raw
1{ callPackages }: 2 3# If you are reading this, you can test these writers by running: nix-build . -A tests.writers 4let 5 # Writers for JSON-like data structures 6 dataWriters = callPackages ./data.nix { }; 7 8 # Writers for scripts 9 scriptWriters = callPackages ./scripts.nix { }; 10 11 writers = scriptWriters // dataWriters; 12in 13writers