core/pkgs/build-support/writers/data.nix

81 lines
2.2 KiB
Nix
Raw Normal View History

2024-05-02 00:46:19 +00:00
{ lib, pkgs, formats, runCommand }:
2024-05-13 21:24:10 +00:00
let inherit (lib) last optionalString types;
in {
/* *
Creates a transformer function that writes input data to disk, transformed
by both the `input` and `output` arguments.
# Example
```nix
writeJSON = makeDataWriter { input = builtins.toJSON; output = "cp $inputPath $out"; };
myConfig = writeJSON "config.json" { hello = "world"; }
```
# Type
```
makeDataWriter :: input -> output -> nameOrPath -> data -> (any -> string) -> string -> string -> any -> derivation
input :: T -> string: function that takes the nix data and returns a string
output :: string: script that takes the $inputFile and write the result into $out
nameOrPath :: string: if the name contains a / the files gets written to a sub-folder of $out. The derivation name is the basename of this argument.
data :: T: the data that will be converted.
```
2024-05-02 00:46:19 +00:00
*/
2024-05-13 21:24:10 +00:00
makeDataWriter = lib.warn
"pkgs.writers.makeDataWriter is deprecated. Use pkgs.writeTextFile."
({ input ? lib.id, output ? "cp $inputPath $out" }:
nameOrPath: data:
assert (types.path.check nameOrPath)
|| (builtins.match "([0-9A-Za-z._])[0-9A-Za-z._-]*" nameOrPath != null);
let name = last (builtins.split "/" nameOrPath);
in runCommand name {
2024-05-02 00:46:19 +00:00
input = input data;
passAsFile = [ "input" ];
} ''
2024-05-13 21:24:10 +00:00
${output}
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
${optionalString (types.path.check nameOrPath) ''
mv $out tmp
mkdir -p $out/$(dirname "${nameOrPath}")
mv tmp $out/${nameOrPath}
''}
'');
2024-05-02 00:46:19 +00:00
inherit (pkgs) writeText;
2024-05-13 21:24:10 +00:00
/* *
Writes the content to a JSON file.
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
# Example
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
```nix
writeJSON "data.json" { hello = "world"; }
```
2024-05-02 00:46:19 +00:00
*/
2024-05-13 21:24:10 +00:00
writeJSON = (pkgs.formats.json { }).generate;
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
/* *
Writes the content to a TOML file.
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
# Example
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
```nix
writeTOML "data.toml" { hello = "world"; }
```
2024-05-02 00:46:19 +00:00
*/
2024-05-13 21:24:10 +00:00
writeTOML = (pkgs.formats.toml { }).generate;
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
/* *
Writes the content to a YAML file.
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
# Example
2024-05-02 00:46:19 +00:00
2024-05-13 21:24:10 +00:00
```nix
writeYAML "data.yaml" { hello = "world"; }
```
2024-05-02 00:46:19 +00:00
*/
2024-05-13 21:24:10 +00:00
writeYAML = (pkgs.formats.yaml { }).generate;
2024-05-02 00:46:19 +00:00
}