mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
Merge pull request #292300 from hsjobeki/writers
doc & fix: Clean up writers/data.nix file
This commit is contained in:
commit
2db7e7c5e2
@ -1,28 +1,34 @@
|
||||
{ lib, pkgs, formats, runCommand, dasel }:
|
||||
{ lib, pkgs, formats, runCommand }:
|
||||
let
|
||||
daselBin = lib.getExe dasel;
|
||||
|
||||
inherit (lib)
|
||||
last
|
||||
optionalString
|
||||
types
|
||||
;
|
||||
in
|
||||
rec {
|
||||
# Creates a transformer function that writes input data to disk, transformed
|
||||
# by both the `input` and `output` arguments.
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# Example:
|
||||
# writeJSON = makeDataWriter { input = builtins.toJSON; output = "cp $inputPath $out"; };
|
||||
# myConfig = writeJSON "config.json" { hello = "world"; }
|
||||
#
|
||||
{
|
||||
/**
|
||||
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.
|
||||
```
|
||||
*/
|
||||
makeDataWriter = lib.warn "pkgs.writers.makeDataWriter is deprecated. Use pkgs.writeTextFile." ({ input ? lib.id, output ? "cp $inputPath $out" }: nameOrPath: data:
|
||||
assert lib.or (types.path.check nameOrPath) (builtins.match "([0-9A-Za-z._])[0-9A-Za-z._-]*" nameOrPath != null);
|
||||
let
|
||||
@ -44,21 +50,36 @@ rec {
|
||||
|
||||
inherit (pkgs) writeText;
|
||||
|
||||
# Writes the content to a JSON file.
|
||||
#
|
||||
# Example:
|
||||
# writeJSON "data.json" { hello = "world"; }
|
||||
/**
|
||||
Writes the content to a JSON file.
|
||||
|
||||
# Example
|
||||
|
||||
```nix
|
||||
writeJSON "data.json" { hello = "world"; }
|
||||
```
|
||||
*/
|
||||
writeJSON = (pkgs.formats.json {}).generate;
|
||||
|
||||
# Writes the content to a TOML file.
|
||||
#
|
||||
# Example:
|
||||
# writeTOML "data.toml" { hello = "world"; }
|
||||
/**
|
||||
Writes the content to a TOML file.
|
||||
|
||||
# Example
|
||||
|
||||
```nix
|
||||
writeTOML "data.toml" { hello = "world"; }
|
||||
```
|
||||
*/
|
||||
writeTOML = (pkgs.formats.toml {}).generate;
|
||||
|
||||
# Writes the content to a YAML file.
|
||||
#
|
||||
# Example:
|
||||
# writeYAML "data.yaml" { hello = "world"; }
|
||||
/**
|
||||
Writes the content to a YAML file.
|
||||
|
||||
# Example
|
||||
|
||||
```nix
|
||||
writeYAML "data.yaml" { hello = "world"; }
|
||||
```
|
||||
*/
|
||||
writeYAML = (pkgs.formats.yaml {}).generate;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user