diff options
Diffstat (limited to 'org')
| -rw-r--r-- | org/config_env.org | 2 | ||||
| -rw-r--r-- | org/config_nix.org | 41 | 
2 files changed, 36 insertions, 7 deletions
| diff --git a/org/config_env.org b/org/config_env.org index 83dcd2eb..49141822 100644 --- a/org/config_env.org +++ b/org/config_env.org @@ -84,7 +84,7 @@ echo "    ❯❯ nix develop    ❯❯ nix develop '.#' --print-build-logs -c zsh -  ❯❯ nix develop '.#dsh-latex-pdf' --print-build-logs -c zsh +  ❯❯ nix develop '.#rsh-latex-pdf' --print-build-logs -c zsh  • to build project: diff --git a/org/config_nix.org b/org/config_nix.org index 33014ad3..9b0f535f 100644 --- a/org/config_nix.org +++ b/org/config_nix.org @@ -102,7 +102,7 @@            ];            inherit shellHook;          }; -        dsh-epub = mkShell { +        rsh-epub = mkShell {            name = "sisu dev shell for epub output";            inherit shell;            inherit devEnv; @@ -133,7 +133,7 @@            ];            inherit shellHook;          }; -        dsh-html = mkShell { +        rsh-html = mkShell {            name = "sisu dev shell for html output";            inherit shell;            inherit devEnv; @@ -150,7 +150,7 @@            ];            inherit shellHook;          }; -        dsh-latex-pdf = mkShell { +        rsh-latex-pdf = mkShell {            name = "sisu dev shell for latex & pdf output";            inherit shell;            inherit devEnv; @@ -164,7 +164,8 @@              source-sans-pro              source-serif-pro              source-code-pro -            texliveFull # texliveTeTeX +            texlive.combined.scheme-full +            # texliveFull # texliveTeTeX              noto-fonts              noto-fonts-cjk-sans              takao @@ -174,7 +175,35 @@            ];            inherit shellHook;          }; -        dsh-sqlite = mkShell { +        rsh-comprehensive-shell = mkShell { +          name = "comprehensive sisu dev shell (for epub & latex & pdf output)"; +          inherit shell; +          inherit devEnv; +          packages = [ +            ruby +            rubyPackages.rake +            rubyPackages.sqlite3 +            rubyPackages.thor +            sqlite +            graphicsmagick +            zip +            unzip +            xz +            source-sans-pro +            source-serif-pro +            source-code-pro +            texlive.combined.scheme-full +            # texliveFull # texliveTeTeX +            noto-fonts +            noto-fonts-cjk-sans +            takao +            validatePkgConfig +            jq +            git +          ]; +          inherit shellHook; +        }; +        rsh-sqlite = mkShell {            name = "sisu dev shell for sqlite3 output";            inherit shell;            inherit devEnv; @@ -191,7 +220,7 @@            ];            inherit shellHook;          }; -        dsh-i18n = mkShell { +        rsh-i18n = mkShell {            name = "sisu dev shell internationalization, po4a";            inherit shell;            inherit devEnv; | 
