mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
Merge pull request #146734 from VergeDX/hbase
nixos/hbase: Fix missing top-level in hbase-site.xml
This commit is contained in:
commit
96ab4535d0
@ -22,7 +22,10 @@ let
|
|||||||
configAttr));
|
configAttr));
|
||||||
|
|
||||||
configFile = pkgs.writeText "hbase-site.xml"
|
configFile = pkgs.writeText "hbase-site.xml"
|
||||||
(buildProperty (defaultConfig // cfg.settings));
|
''<configuration>
|
||||||
|
${buildProperty (defaultConfig // cfg.settings)}
|
||||||
|
</configuration>
|
||||||
|
'';
|
||||||
|
|
||||||
configDir = pkgs.runCommand "hbase-config-dir" { preferLocalBuild = true; } ''
|
configDir = pkgs.runCommand "hbase-config-dir" { preferLocalBuild = true; } ''
|
||||||
mkdir -p $out
|
mkdir -p $out
|
||||||
|
Loading…
Reference in New Issue
Block a user