Files
Gabriel Fontes 7885b414a4 format with alejandra
okay i'm not a big fan of nixfmt in the end
2024-04-07 14:21:47 -03:00

23 lines
438 B
Nix

{pkgs}: {
gzipJson = {}: {
generate = name: value:
pkgs.callPackage (
{
runCommand,
gzip,
}:
runCommand name
{
nativeBuildInputs = [gzip];
value = builtins.toJSON value;
passAsFile = ["value"];
}
''
gzip "$valuePath" -c > "$out"
''
) {};
type = (pkgs.formats.json {}).type;
};
}