aboutsummaryrefslogtreecommitdiffhomepage
path: root/shell.nix
blob: ad4bd5085689b8683efbcad5516aecc035e55c5f (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
#!/usr/bin/env -S nix-shell --pure
#!nix-shell -i bash
{ pkgs ? import <nixpkgs> {} }:
let
in pkgs.mkShell {
  buildInputs = with pkgs; [
    nix
    bundler
    bundix
    #ruby
    #rubyPackages.rake
    #rubyPackages.sqlite3
    #rubyPackages.thor
    ruby_3_1
    rubyPackages_3_1.rake
    rubyPackages_3_1.sqlite3
    rubyPackages_3_1.thor
    sqlite
    unzip
    xz
    zip
    #texlive-combined-full
  ];
}