build with nix

Signed-off-by: Christine Dodrill <me@christine.website>
This commit is contained in:
Cadey Ratio 2021-01-02 15:38:30 -05:00
parent f3a7a87064
commit 77aecbed96
1 changed files with 35 additions and 0 deletions

35
default.nix Normal file
View File

@ -0,0 +1,35 @@
{ pkgs ? import <nixpkgs> { } }:
let
nur = import (builtins.fetchTarball
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
tex = pkgs.callPackage ./nix/texlive.nix { };
version = "devel";
in pkgs.stdenv.mkDerivation {
pname = "tulpanomicon";
inherit version;
src = ./.;
phases = "buildPhase installPhase";
buildInputs = with pkgs; [
calibre
mdbook
nur.repos.mic92.pandoc-bin
tex
];
buildPhase = ''
cp -rf $src/src .
chmod a+w ./src
cp -rf $src/book.toml .
mkdir book
mdbook build
cd ./src && ./build.sh && cd ..
'';
installPhase = ''
mkdir -p $out
cp -vrf book/* $out
'';
}