blob: aa2fb632d717be754617627e11197a8042ad3585 (
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
29
30
31
|
#!/usr/bin/env -S nix-shell --pure
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
ruby_3_2
rubyPackages_3_2.rake
rubyPackages_3_2.sqlite3
rubyPackages_3_2.thor
sqlite
graphicsmagick
unzip
xz
zip
openssl
#texlive-combined-full
nixFlakes
validatePkgConfig
nix-output-monitor
nix-tree
jq
git
#starship
];
shellHook = ''
#if [[ -e ".envrc" ]]; then
# source .envrc
#fi
#eval "$(starship init bash)"
'';
}
|