This commit is contained in:
+10
-2
@@ -6,17 +6,25 @@ let
|
||||
text = builtins.readFile ./build/build-article.sh;
|
||||
};
|
||||
|
||||
build-index = pkgs.writeShellApplication {
|
||||
name = "build-index";
|
||||
text = builtins.readFile ./build/build-index.sh;
|
||||
};
|
||||
|
||||
|
||||
articles = pkgs.stdenv.mkDerivation {
|
||||
name = "articles";
|
||||
src = builtins.filterSource
|
||||
(path: type: !(pkgs.lib.strings.hasPrefix "result" (baseNameOf path)))
|
||||
./.;
|
||||
buildInputs = with pkgs; [ emacs git build-article ];
|
||||
buildInputs = with pkgs; [ emacs git build-article build-index ];
|
||||
|
||||
buildPhase = ''
|
||||
cp -a . $out
|
||||
cd $out
|
||||
find . -name '*.org' -exec build-article {} \;
|
||||
mv index.html index.html.in
|
||||
find . -name 'articles/*.org' -exec build-article {} \;
|
||||
build-index > index.html
|
||||
'';
|
||||
};
|
||||
in { inherit build-article articles; }
|
||||
|
||||
Reference in New Issue
Block a user