mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-22 23:17:15 +03:00
29 lines
751 B
Nix
29 lines
751 B
Nix
{ pkgs, myLib }:
|
|
|
|
{
|
|
book =
|
|
let
|
|
inherit (pkgs) lib;
|
|
root = myLib.path ./..;
|
|
rootPrefix = toString root;
|
|
cleanedSrc = lib.cleanSourceWith {
|
|
src = root;
|
|
filter = path: _:
|
|
let
|
|
relativePath = lib.removePrefix rootPrefix path;
|
|
in
|
|
lib.any (prefix: lib.hasPrefix prefix relativePath) [
|
|
"/docs" # Build the docs directory
|
|
"/examples" # But also include examples as we cross-reference them
|
|
"/README.md"
|
|
"/CHANGELOG.md"
|
|
];
|
|
};
|
|
in
|
|
pkgs.runCommand "crane-book" { } ''
|
|
${pkgs.mdbook}/bin/mdbook build --dest-dir $out ${cleanedSrc}/docs
|
|
'';
|
|
|
|
crane-utils = myLib.callPackage ./crane-utils { };
|
|
}
|