Init MDBook and Nix
Signed-off-by: Egor Savkin <es@m-labs.hk>
This commit is contained in:
parent
5147347f9c
commit
7c0d5bd858
|
@ -0,0 +1 @@
|
||||||
|
book
|
17
README.md
17
README.md
|
@ -1,3 +1,20 @@
|
||||||
# sinara-assembly
|
# sinara-assembly
|
||||||
|
|
||||||
Repository with instructions and remarks on assembling and testing Sinara hardware
|
Repository with instructions and remarks on assembling and testing Sinara hardware
|
||||||
|
|
||||||
|
# Build docs
|
||||||
|
|
||||||
|
```shell
|
||||||
|
nix build
|
||||||
|
```
|
||||||
|
|
||||||
|
The output files are in `result/book` directory.
|
||||||
|
|
||||||
|
# Development shell
|
||||||
|
|
||||||
|
```shell
|
||||||
|
nix develop
|
||||||
|
mdbook build
|
||||||
|
```
|
||||||
|
|
||||||
|
The output files are in `book` directory
|
|
@ -0,0 +1,6 @@
|
||||||
|
[book]
|
||||||
|
authors = ["M-Labs Limited"]
|
||||||
|
language = "en"
|
||||||
|
multilingual = false
|
||||||
|
src = "src"
|
||||||
|
title = "Sinara Assembly"
|
|
@ -0,0 +1,27 @@
|
||||||
|
{
|
||||||
|
"nodes": {
|
||||||
|
"nixpkgs": {
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1675237434,
|
||||||
|
"narHash": "sha256-YoFR0vyEa1HXufLNIFgOGhIFMRnY6aZ0IepZF5cYemo=",
|
||||||
|
"owner": "NixOS",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"rev": "285b3ff0660640575186a4086e1f8dc0df2874b5",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "NixOS",
|
||||||
|
"ref": "nixos-22.11",
|
||||||
|
"repo": "nixpkgs",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": "nixpkgs"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"root": "root",
|
||||||
|
"version": 7
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
{
|
||||||
|
description = "Sinara assembly and test instructions";
|
||||||
|
|
||||||
|
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-22.11;
|
||||||
|
|
||||||
|
outputs = { self, nixpkgs }:
|
||||||
|
|
||||||
|
let pkgs = import nixpkgs { system = "x86_64-linux"; };
|
||||||
|
|
||||||
|
in {
|
||||||
|
packages.x86_64-linux.default =
|
||||||
|
# Notice the reference to nixpkgs here.
|
||||||
|
with import nixpkgs { system = "x86_64-linux"; };
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "book";
|
||||||
|
src = self;
|
||||||
|
buildInputs = with pkgs; [ pkgs.mdbook ];
|
||||||
|
buildPhase = "mdbook build";
|
||||||
|
installPhase = "mkdir -p $out/book; cp -R book $out/";
|
||||||
|
};
|
||||||
|
devShell.x86_64-linux = pkgs.mkShell {
|
||||||
|
name = "sinara-assembly-dev-shell";
|
||||||
|
buildInputs = with pkgs; [pkgs.mdbook];
|
||||||
|
};
|
||||||
|
|
||||||
|
};
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Summary
|
||||||
|
|
||||||
|
- [Chapter 1](./chapter_1.md)
|
|
@ -0,0 +1 @@
|
||||||
|
# Chapter 1
|
Loading…
Reference in New Issue