diff --git a/lib.nix b/lib.nix index 33770db..7e8e1b1 100644 --- a/lib.nix +++ b/lib.nix @@ -10,7 +10,7 @@ { name = html; value = pkgs.runCommand html { buildInputs = with pkgs; [ cmark ]; } '' - cmark ${builtins.toFile md (import "${dir}/${name}").body} > $out + cmark ${builtins.toFile md (import (dir + "/${name}")).body} > $out ''; } )