blob: c110f56c218af8fb223cdbb99fc7bd064605ab93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
{
description = "spine (sisu like parser & document generator) made available to process markup samples";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # "github:nixos/nixpkgs";
flake-utils.url = "github:numtide/flake-utils";
spine.url = "git+file:///home/ralph/grotto/repo/git.repo/projects/doc-reform/code/software/spine";
spine.inputs.nixpkgs.follows = "nixpkgs";
spine.flake = true;
};
outputs = { self, nixpkgs, flake-utils, spine } @inputs:
let
version = "0.12.0";
shell = ./shell.nix; # ./default.nix;
devEnv = ./.envrc; # ./shell.nix; # ./default.nix;
supportedSystems = [ "x86_64-linux" ]; # [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
nixpkgsFor = forAllSystems (system: import nixpkgs { inherit system; }); # nixpkgs instantiated for supported system types.
in {
packages = forAllSystems (system:
let pkgs = nixpkgsFor.${system};
in {
default = spine.packages.${system}.default;
spine-dmd = spine.packages.${system}.spine-dmd;
spine-ldc = spine.packages.${system}.spine-ldc;
spine-gdc = spine.packages.${system}.spine-gdc;
#vendorSha256 = "sha256-0Q00000000000000000000000000000000000000000=";
});
devShells = forAllSystems (system:
let
pkgs = nixpkgsFor.${system};
shellHook = ''
export DFLAGS="-O2 -inline -boundscheck=on -color=on"
export Date=`date "+%Y%m%d"`
### set local values in .envrc-local (or modify here if you must)
# export SpinePROJ=~/grotto/repo/git.repo/projects/doc-reform/code/software/spine
# export SpineDOC=~/grotto/repo/git.repo/projects/project-spine/doc-reform-markup/spine-markup-samples
# export SpineOUT=/srv/www/spine
export SpineDBpath=/var/www/sqlite
# export SpineDBpath=/srv/www/spine/sqlite
export SpineSRC=$SpinePROJ/src
export SpineBIN=$SpinePROJ/result/bin
export SpinePOD=$SpineDOC/markup/pod
export SpineSearchActionLocal='http://localhost/spine_search'
export SpineSearchActionRemote='https://sisudoc.org/spine_search'
export SpineCGIform='spine_search'
export SpineSQLdb='spine.search.db'
export spineNixHelp="cat ./.env/nix-commands"
export spineTest="nix shell .#default --print-build-logs --command spine --very-verbose --epub --html --html-link-search --html-link-curate --curate --output=\"\$SpineOUT\" $SpinePOD/*"
export spineHtml="spine --very-verbose --html --html-link-search --html-link-curate --curate --sqlite-update --sqlite-db-filename=\"spine.search.db\" --cgi-sqlite-search-filename=\"spine_search\" --sqlite-db-path=\"\$SpineDBpath\" --output=\"\$SpineOUT\" $SpinePOD/*"
export spineEpub="spine --very-verbose --epub --output=\"\$SpineOUT\" $SpinePOD/*"
export spineLatex="spine --very-verbose --latex --output=\"\$SpineOUT\" $SpinePOD/*"
export spinePdf="spine --very-verbose --pdf --output=\"\$SpineOUT\" $SpinePOD/*"
export spineSqliteCreateDB="spine --very-verbose --sqlite-db-recreate --sqlite-db-path=\"$SpineDBpath\" --sqlite-db-filename=\"spine.search.db\""
export spineSqlite="spine --very-verbose --sqlite-discrete --sqlite-db-path=\"$SpineDBpath\" --sqlite-db-filename=\"spine.search.db\" --output=\"\$SpineOUT\" $SpinePOD/*"
#export spineSqlite="spine --very-verbose --sqlite-update --sqlite-db-path=\"$SpineDBpath\" --sqlite-db-filename=\"spine.search.db\" --output=\"\$SpineOUT\" $SpinePOD/*"
'';
in with pkgs; {
devShell = mkShell rec {
name = "spine dev shell default";
inherit shell;
inherit devEnv;
#buildInputs = [ sqlite ];
#nativeBuildInputs = [ dub dmd ldc gdc gnumake ];
packages = [
sqlite
dub dmd ldc gdc gnumake
];
inherit shellHook;
};
devShell-epub = mkShell rec {
name = "spine dev shell for epub output";
inherit shell;
inherit devEnv;
packages = [
sqlite
dub dmd ldc gdc gnumake
libxml2
html-tidy
xmlstarlet
epubcheck
ebook_tools
libxml2
html-tidy
xmlstarlet
epubcheck
ebook_tools
epr
sigil
calibre #(suite includes: ebook-viewer)
foliate
];
inherit shellHook;
};
devShell-html = mkShell rec {
name = "spine dev shell for latex & pdf output";
inherit shell;
inherit devEnv;
packages = [
sqlite
dub dmd ldc gdc gnumake
];
inherit shellHook;
};
devShell-latex-pdf = mkShell rec {
name = "spine dev shell for latex & pdf output";
inherit shell;
inherit devEnv;
packages = [
sqlite
dub dmd ldc gdc gnumake
source-sans-pro
source-serif-pro
source-code-pro
texlive.combined.scheme-full
];
inherit shellHook;
};
devShell-sqlite = mkShell rec {
name = "spine dev shell for latex & pdf output";
inherit shell;
inherit devEnv;
packages = [
sqlite
dub dmd ldc gdc gnumake
];
inherit shellHook;
};
devShell-i18n = mkShell {
inherit shell;
inherit devEnv;
packages = [
sqlite
dub dmd ldc gdc gnumake
perl534Packages.Po4a
];
inherit shellHook;
};
});
};
}
|