aboutsummaryrefslogtreecommitdiffhomepage
path: root/shell.nix
blob: cc1c84f6c659813a4ab9c7f99c99dbe1bfa6003e (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
#!/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_4
    rubyPackages_3_4.rake
    rubyPackages_3_4.sqlite3
    rubyPackages_3_4.thor
    sqlite
    graphicsmagick
    unzip
    xz
    zip
    #texliveFull # texliveTeTeX
  ];
}