aboutsummaryrefslogtreecommitdiffhomepage
path: root/flake.nix
blob: dcae825e349fe7af1975d398d16103ca62b7a587 (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
{
  description = "sisu parser & document generator";
  inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; # "github:nixos/nixpkgs"; "github:NixOS/nixpkgs/nixpkgs-unstable"; "nixpkgs/nixos-unstable"; "nixpkgs/nixos-21.11";
  inputs.flake-utils.url = "github:numtide/flake-utils";
  outputs = {
    self,
    nixpkgs,
    flake-utils,
  } @ inputs: let
    pname = "sisu";
    version = "7.3.1";
    shell = ./shell.nix; # ./default.nix;
    devEnv = ./shell.nix; # ./.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
    checkPhase = ''
      runHook preCheck
      runHook postCheck
    '';
    preInstall = "";
    installPhase = ''
      runHook preInstall
      mkdir -p $out/lib
      mkdir -p $out/setup
      mkdir -p $out/data
      mkdir -p $out/bin
      cp -R ./lib/* $out/lib/.
      cp -R ./data/* $out/data/.
      cp -R ./setup/* $out/setup/.
      ln -s $out/setup/sisu_version.rb $out/version
      install -m755 ./bin/sisu $out/bin/sisu
      runHook postInstall
    '';
    postInstall = "";
  in {
    packages = forAllSystems (system: let
      pkgs = nixpkgsFor.${system};
    in
      with pkgs; {
        default = stdenv.mkDerivation {
          inherit pname;
          inherit version;
          meta.mainProgram = "sisu";
          executable = true;
          src = self;
          inherit shell;
          inherit devEnv;
          buildPhase = "";
          inherit checkPhase;
          inherit installPhase;
          inherit postInstall;
        };
        #vendorSha256 = "sha256-0Q00000000000000000000000000000000000000000=";
      });
    apps = forAllSystems (system: {
      default = {
        type = "app";
        program = "${self.packages.${system}.default}/bin/sisu";
      };
    });
    devShells = forAllSystems (system: let
      pkgs = nixpkgsFor.${system};
      shellHook = ''
        #${pkgs.nix}/bin/nix build ".#" --print-build-logs;
        nix build ".#" --print-build-logs;
        echo ""
        sisu -v
      '';
    in
      with pkgs; {
        default = mkShell {
          name = "sisu dev base shell";
          inherit shell;
          inherit devEnv;
          packages = [
            ruby_3_1
            rubyPackages_3_1.rake
            rubyPackages_3_1.sqlite3
            rubyPackages_3_1.thor
            sqlite
            jq
            git
          ];
          inherit shellHook;
        };
        dsh-epub = mkShell {
          name = "sisu dev shell for epub output";
          inherit shell;
          inherit devEnv;
          packages = [
            ruby_3_1
            rubyPackages_3_1.rake
            rubyPackages_3_1.sqlite3
            rubyPackages_3_1.thor
            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
            jq
            #git
          ];
          inherit shellHook;
        };
        dsh-html = mkShell {
          name = "sisu dev shell for html output";
          inherit shell;
          inherit devEnv;
          packages = [
            ruby_3_1
            rubyPackages_3_1.rake
            rubyPackages_3_1.sqlite3
            rubyPackages_3_1.thor
            sqlite
            graphicsmagick
            zip
            unzip
            xz
            jq
            #git
          ];
          inherit shellHook;
        };
        dsh-latex-pdf = mkShell {
          name = "sisu dev shell for latex & pdf output";
          inherit shell;
          inherit devEnv;
          packages = [
            ruby_3_1
            rubyPackages_3_1.rake
            rubyPackages_3_1.sqlite3
            rubyPackages_3_1.thor
            sqlite
            graphicsmagick
            zip
            unzip
            xz
            source-sans-pro
            source-serif-pro
            source-code-pro
            texlive.combined.scheme-full
            noto-fonts
            noto-fonts-cjk-sans
            takao
            jq
            #git
          ];
          inherit shellHook;
        };
        dsh-sqlite = mkShell {
          name = "sisu dev shell for sqlite3 output";
          inherit shell;
          inherit devEnv;
          packages = [
            ruby_3_1
            rubyPackages_3_1.rake
            rubyPackages_3_1.sqlite3
            rubyPackages_3_1.thor
            sqlite
            graphicsmagick
            zip
            unzip
            xz
            jq
            #git
          ];
          inherit shellHook;
        };
        dsh-i18n = mkShell {
          name = "sisu dev shell internationalization, po4a";
          inherit shell;
          inherit devEnv;
          packages = [
            ruby_3_1
            rubyPackages_3_1.rake
            rubyPackages_3_1.sqlite3
            rubyPackages_3_1.thor
            sqlite
            graphicsmagick
            perl538Packages.Po4a
            jq
            #git
          ];
          inherit shellHook;
        };
        #default = import ./shell.nix {inherit pkgs;};
      });
  };
}