home/editor: use runCommand
This commit is contained in:
parent
28d41cfdf3
commit
ac2afe3577
1 changed files with 2 additions and 2 deletions
|
@ -30,12 +30,12 @@ let
|
|||
|
||||
mkTOML = name: value: let
|
||||
json = pkgs.writeText "helix-${name}.json" (builtins.toJSON value);
|
||||
in pkgs.runCommandNoCC "helix-${name}.toml" {} "${pkgs.remarshal}/bin/remarshal --if json --of toml -i ${json} -o $out";
|
||||
in pkgs.runCommand "helix-${name}.toml" {} "${pkgs.remarshal}/bin/remarshal --if json --of toml -i ${json} -o $out";
|
||||
|
||||
path = lib.makeBinPath [ clipboardProvider ];
|
||||
|
||||
# weird double-wrapping because nix-cargo-integration isn't overridable
|
||||
finalPackage = pkgs.runCommandNoCC package.name {
|
||||
finalPackage = pkgs.runCommand package.name {
|
||||
nativeBuildInputs = [
|
||||
pkgs.makeWrapper
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue