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