aboutsummaryrefslogtreecommitdiffhomepage
path: root/shell.nix
blob: ec794cdaacfd8078bf75088117c94128f512ccad (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
#!/usr/bin/env -S nix-shell --impure
#!nix-shell -i bash
{pkgs ? import <nixpkgs> {}}:
with pkgs;
  mkShell {
    buildInputs = [
      ruby_3_3
      rubyPackages_3_3.rake
      rubyPackages_3_3.sqlite3
      rubyPackages_3_3.thor
      sqlite
      graphicsmagick
      unzip
      xz
      zip
      openssl
      #texlive-combined-full
      nixFlakes
      validatePkgConfig
      nix-output-monitor
      nix-tree
      jq
      git
      #starship
    ];
    shellHook = ''
    '';
  }