aboutsummaryrefslogtreecommitdiffhomepage
path: root/org/config_nix.org
blob: ddc01225b75caeb4a6b4fad5c89274d87c756919 (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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
-*- mode: org -*-
#+TITLE:       configuration nix
#+DESCRIPTION: configuration nix
#+FILETAGS:    :sisu:build:tools:
#+AUTHOR:      Ralph Amissah
#+EMAIL:       [[mailto:ralph.amissah@gmail.com][ralph.amissah@gmail.com]]
#+COPYRIGHT:   Copyright (C) 2015 - 2025 Ralph Amissah
#+LANGUAGE:    en
#+STARTUP:     content hideblocks hidestars noindent entitiespretty
#+PROPERTY:    header-args  :exports code
#+PROPERTY:    header-args+ :noweb yes
#+PROPERTY:    header-args+ :results no
#+PROPERTY:    header-args+ :cache no
#+PROPERTY:    header-args+ :padline no
#+PROPERTY:    header-args+ :mkdirp yes
#+OPTIONS:     H:3 num:nil toc:t \n:t ::t |:t ^:nil -:t f:t *:t

* sisu
** flake.nix :flake:

#+HEADER: :tangle ../flake.nix
#+HEADER: :noweb yes
#+BEGIN_SRC nix
{
  description = "sisu parser & document generator";
  inputs.nixpkgs.url = "<<nixpkgs_url>>";
  inputs.sisu.url = "git://git.sisudoc.org/software/sisu";
  #git clone git://git.sisudoc.org/software/sisu
  inputs.sisu.inputs.nixpkgs.follows = "nixpkgs";
  inputs.sisu.flake = true;
  outputs = {
    self,
    nixpkgs,
    sisu
  } @ inputs: let
    version = "<<sisu_project_version>>";
    shell = ./shell.nix; # ./default.nix;
    devEnv = ./.envrc; # ./.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              = sisu.packages.${system}.default;
      #vendorSha256         = "sha256-0Q00000000000000000000000000000000000000000=";
    });
    apps = forAllSystems (system: {
      default = {
        type = "app";
        program = "${self.packages.${system}.default}/bin/sisu";
      };
    });
    devShells = forAllSystems (system: let
      pkgs = nixpkgsFor.${system};
      shellHook = ''
        export Date=`date "+%Y%m%d"`
        ### set local values in .envrc-local (or modify here if you must)
        # export sisuPROJ=~/grotto/repo/git.repo/projects/doc-reform/code/software/sisu
        # export sisuDOC=~/grotto/repo/git.repo/projects/project-sisu/doc-reform-markup/sisu-markup-samples
        # export sisu=/srv/www/sisu
        # export sisu=/var/www/sqlite
        # export sisu=/srv/www/sisu/sqlite
        export sisu=$sisuPROJ/src
        export sisu=$sisuPROJ/result/lib
        export sisu=$sisuDOC/markup/pod
        export sisu=$sisuOUT/$sisuVER
        export sisu='http://localhost/sisu_search'
        # export sisuSearchActionRemote='https://sisudoc.org/sisu_search'
        export sisuCGIform='sisu_search'
        export sisuSQLdb='sisusearch.db'
        export PROG_VER_GIT="`git describe --long --tags | sed -e 's/^[ a-z_-]\+\([0-9.]\+\)/\1/;s/\([^-]*-g\)/r\1/;s/-/./g'`"
        export sisuNixHelp="cat ./.env/nix-commands"
        export sisuTest="nix shell .#default --print-build-logs --command sisu --very-verbose --epub --html --html-link-search --html-link-curate --curate --output=\"\$sisuOUT\" $sisuPOD/*"
        export sisuHtml="sisu --very-verbose --html --html-link-search --html-link-curate --curate --sqlite-update --sqlite-db-filename=\"sisu.search.db\" --cgi-sqlite-search-filename=\"sisu_search\" --sqlite-db-path=\"\$sisuDBpath\" --output=\"\$sisuOUT\" $sisuPOD/*"
        export sisuEpub="sisu --very-verbose --epub --output=\"\$sisuOUT\" $sisuPOD/*"
        export sisuLatex="sisu --very-verbose --latex --output=\"\$sisuOUT\" $sisuPOD/*"
        export sisuPdf="sisu --very-verbose --pdf --output=\"\$sisuOUT\" $sisuPOD/*"
        export sisuSqliteCreateDB="sisu --very-verbose --sqlite-db-recreate --sqlite-db-path=\"$sisuDBpath\" --sqlite-db-filename=\"sisu.search.db\""
        export sisuSqlite="sisu --very-verbose --sqlite-discrete --sqlite-db-path=\"$sisuDBpath\" --sqlite-db-filename=\"sisu.search.db\" --output=\"\$sisuOUT\" $sisuPOD/*"
        #export sisuSqlite="sisu --very-verbose --sqlite-update --sqlite-db-path=\"$sisuDBpath\" --sqlite-db-filename=\"sisu.search.db\" --output=\"\$sisuOUT\" $sisuPOD/*"
      '';
    in
      with pkgs; {
        dsh = mkShell {
          name = "sisu dev base shell";
          inherit shell;
          inherit devEnv;
          packages = [
            <<ruby_current>>
            sqlite
            jq
            git
          ];
          inherit shellHook;
        };
        dsh-epub = mkShell {
          name = "sisu dev shell for epub output";
          inherit shell;
          inherit devEnv;
          packages = [
            <<ruby_current>>
            sqlite
            graphicsmagick
            zip
            unzip
            xz
            libxml2
            html-tidy
            xmlstarlet
            epubcheck
            ebook_tools
            libxml2
            html-tidy
            xmlstarlet
            epubcheck
            ebook_tools
            epr
            sigil
            calibre #(suite includes: ebook-viewer)
            foliate
            validatePkgConfig
            jq
            git
          ];
          inherit shellHook;
        };
        dsh-html = mkShell {
          name = "sisu dev shell for html output";
          inherit shell;
          inherit devEnv;
          packages = [
            <<ruby_current>>
            sqlite
            graphicsmagick
            zip
            unzip
            xz
            validatePkgConfig
            jq
            git
          ];
          inherit shellHook;
        };
        dsh-latex-pdf = mkShell {
          name = "sisu dev shell for latex & pdf output";
          inherit shell;
          inherit devEnv;
          packages = [
            <<ruby_current>>
            sqlite
            graphicsmagick
            zip
            unzip
            xz
            source-sans-pro
            source-serif-pro
            source-code-pro
            texliveFull # texliveTeTeX
            noto-fonts
            noto-fonts-cjk-sans
            takao
            validatePkgConfig
            jq
            git
          ];
          inherit shellHook;
        };
        dsh-sqlite = mkShell {
          name = "sisu dev shell for sqlite3 output";
          inherit shell;
          inherit devEnv;
          packages = [
            <<ruby_current>>
            sqlite
            graphicsmagick
            zip
            unzip
            xz
            validatePkgConfig
            jq
            git
          ];
          inherit shellHook;
        };
        dsh-i18n = mkShell {
          name = "sisu dev shell internationalization, po4a";
          inherit shell;
          inherit devEnv;
          packages = [
            <<ruby_current>>
            sqlite
            graphicsmagick
            perl538Packages.Po4a
            validatePkgConfig
            jq
            git
          ];
          inherit shellHook;
        };
        default = import ./shell.nix { inherit pkgs; };
    });
  };
}
#+END_SRC

** shell.nix :shell:
*** tangle

#+HEADER: :tangle ../shell.nix
#+HEADER: :tangle-mode (identity #o755)
#+HEADER: :shebang "#!/usr/bin/env -S nix-shell --pure\n#!nix-shell -i bash"
#+HEADER: :noweb yes
#+BEGIN_SRC nix
{ pkgs ? import <nixpkgs> {} }:
let
in pkgs.mkShell {
  buildInputs = with pkgs; [
    nix
    bundler
    bundix
    <<ruby_current>>
    sqlite
    graphicsmagick
    unzip
    xz
    zip
    #texliveFull # texliveTeTeX
  ];
  shellHook = ''
  '';
}
#+END_SRC

** shared parts
*** nixpkgs url

#+NAME: nixpkgs_url
#+BEGIN_SRC nix
github:NixOS/nixpkgs/nixpkgs-unstable
#+END_SRC

*** ruby versions
**** ruby package selection
***** ruby next

#+NAME: ruby_next
#+BEGIN_SRC nix
ruby<<ruby_version_next>>
rubyPackages<<ruby_version_next>>.rake
rubyPackages<<ruby_version_next>>.sqlite3
rubyPackages<<ruby_version_next>>.thor
#+END_SRC

***** ruby current

#+NAME: ruby_current
#+BEGIN_SRC nix
ruby<<ruby_version_current>>
rubyPackages<<ruby_version_current>>.rake
rubyPackages<<ruby_version_current>>.sqlite3
rubyPackages<<ruby_version_current>>.thor
#+END_SRC

***** ruby legacy

#+NAME: ruby_legacy
#+BEGIN_SRC nix
ruby<<ruby_version_legacy>>
rubyPackages<<ruby_version_legacy>>.rake
rubyPackages<<ruby_version_legacy>>.sqlite3
rubyPackages<<ruby_version_legacy>>.thor
#+END_SRC

**** SET ruby nix package versions (current, next)
***** SET ruby version next

#+NAME: ruby_version_next
#+BEGIN_SRC nix
_3_4
#+END_SRC

***** SET ruby version current

- default to current nix version, which is ruby 3.3 but not provided as a fixed lable/tag, so leave blank and will
  follow nix current nix

#+NAME: ruby_version_current
#+BEGIN_SRC nix
#+END_SRC

***** SET ruby version legacy

#+NAME: ruby_version_legacy
#+BEGIN_SRC nix
_3_2
#+END_SRC

**** ruby fixed versions
***** ruby 3.4 - ruby_version_3_4

#+NAME: ruby_version_3_4
#+BEGIN_SRC nix
ruby_3_4
rubyPackages_3_4.rake
rubyPackages_3_4.sqlite3
rubyPackages_3_4.thor
#+END_SRC

***** ruby 3.2 - ruby_version_3_2

#+NAME: ruby_version_3_2
#+BEGIN_SRC nix
ruby_3_2
rubyPackages_3_2.rake
rubyPackages_3_2.sqlite3
rubyPackages_3_2.thor
#+END_SRC

*** packages.nix
*** set names SET

#+NAME: sisu_search_db
#+BEGIN_SRC sh
sisu.search.db
#+END_SRC

#+NAME: sisu_search_cgi
#+BEGIN_SRC sh
sisu_search
#+END_SRC

*** nixpkgs_path SETUP
**** nixpkgs select path SELECT

#+NAME: nixpkgs_path
#+HEADER: :noweb yes
#+BEGIN_SRC nix
<<nixpkgs_path_local>>
#+END_SRC

**** nixpkgs path options

- <nixpkgs>

#+NAME: nixpkgs_path_default
#+HEADER: :noweb yes
#+BEGIN_SRC nix
<nixpkgs>
#+END_SRC

#+NAME: nix_path_directory
#+HEADER: :noweb yes
#+BEGIN_SRC nix
nixpkgs=<<nixpkgs_path_local>>
#+END_SRC

#+NAME: project_path_local_project
#+HEADER: :noweb yes
#+BEGIN_SRC nix
~/grotto/repo/git.repo/projects/project-sisu/sisu
#+END_SRC

#+NAME: project_path_local_src
#+HEADER: :noweb yes
#+BEGIN_SRC nix
<<project_path_local_project>>/lib
#+END_SRC

#+NAME: project_path_local_bin
#+HEADER: :noweb yes
#+BEGIN_SRC nix
<<project_path_local_project>>/result/bin
#+END_SRC

#+NAME: project_path_cgi_bin
#+BEGIN_SRC nix
/var/www/cgi/cgi-bin
#+END_SRC

#+NAME: project_path_local_doc
#+BEGIN_SRC nix
~/grotto/repo/git.repo/projects/project-sisu/sisu-markup/sisu-markup-samples
#+END_SRC

#+NAME: project_path_local_out
#+BEGIN_SRC nix
/srv/www/sisu
#+END_SRC

#+NAME: project_path_local_out_
#+HEADER: :noweb yes
#+BEGIN_SRC nix
/tmp/sisu/$SisuVER/www
#+END_SRC

#+NAME: project_path_local_out_static
#+HEADER: :noweb yes
#+BEGIN_SRC nix
/srv/www/sisu
#+END_SRC

#+NAME: project_path_local_out_static_
#+BEGIN_SRC nix
/var/www
#+END_SRC

#+NAME: project_path_sqlite
#+BEGIN_SRC nix
/var/www/sqlite
#+END_SRC

#+BEGIN_SRC nix
github:nixos/nixpkgs
#+END_SRC

#+HEADER: :noweb yes
#+BEGIN_SRC nix
<<nixpkgs_path_local>>
#+END_SRC

- local path SET WARN

#+NAME: nixpkgs_path_local
#+BEGIN_SRC nix
/srv/nix/nixpkgs
#+END_SRC

** texlive xetex xelatex shell.nix
*** shell.nix :shell:

#+BEGIN_SRC nix
#!/usr/bin/env -S nix-shell --pure
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
  buildInputs = with pkgs; [
    nixVersions.unstable #nixFlakes
    nix-prefetch-git
    validatePkgConfig
    jq
    git
    fontconfig
    source-sans-pro
    source-serif-pro
    source-code-pro
    #(texlive.combine {
    #  inherit (texlive) scheme-tetex xetex fontspec footmisc multirow titlesec listings anysize float graphics helvetic times courier;
    #})
    texliveFull # texliveTeTeX
    dejavu_fonts dejavu_fontsEnv
    liberation_ttf
    evince
    zathura
    apvlv
  ];
    #FONTCONFIG_FILE = makeFontsConf { fontDirectories = [
    #  liberation_ttf
    #];
  shellHook = ''
    if [[ -f ".envrc" ]]; then
      source .envrc
    fi
    #for texfile in *.tex; do xelatex -interaction=nonstopmode $texfile; done
    #for texfile in *.tex; do xelatex -interaction=batchmode $texfile; done
  '';
}
#+END_SRC

*** sisu version SET VERSION :version:set:project:

#+NAME: sisu_project_version
#+BEGIN_SRC emacs-lisp
<<./sisu_version_info_and_doc_header_including_copyright_and_license.org:sisu_project_version()>>
#+END_SRC

* nix :nix:

#+NAME: nixpkgs_local
#+BEGIN_SRC sh
/srv/nix/nixpkgs
#+END_SRC