aboutsummaryrefslogtreecommitdiffhomepage
path: root/shell.nix
blob: a22a36d40078efe642e1b3d6aca6f51fb70e4902 (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_1
      rubyPackages_3_1.rake
      rubyPackages_3_1.sqlite3
      rubyPackages_3_1.thor
      sqlite
      graphicsmagick
      unzip
      xz
      zip
      openssl
      #texlive-combined-full
      nixFlakes
      validatePkgConfig
      nix-output-monitor
      nix-tree
      jq
      git
      #starship
    ];
    shellHook = ''
    '';
  }