aboutsummaryrefslogtreecommitdiffhomepage
path: root/shell.nix
blob: e2cc7b7c37cdfc70b3dcb6c7f06dce4f6ff1b8ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/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
    sqlite
    graphicsmagick
    unzip
    xz
    zip
    #texliveFull # texliveTeTeX
  ];
  shellHook = ''
  '';
}