diff options
| author | Ralph Amissah <ralph.amissah@gmail.com> | 2021-06-18 10:26:06 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph.amissah@gmail.com> | 2021-06-18 10:26:06 -0400 | 
| commit | 39e7b730e12928cffd5996e6eda138fe5ae2cbf0 (patch) | |
| tree | e0ecd7702ea3a00cf2bee7fbb478d94930296452 /shell.nix | |
| parent | nix: update things nix (diff) | |
nix: adjust, packages in shell.nix
Diffstat (limited to 'shell.nix')
| -rwxr-xr-x[-rw-r--r--] | shell.nix | 27 | 
1 files changed, 24 insertions, 3 deletions
| diff --git a/shell.nix b/shell.nix index 34300f62..5c0baa18 100644..100755 --- a/shell.nix +++ b/shell.nix @@ -1,6 +1,27 @@ +#!/usr/bin/env -S nix-shell --pure  { pkgs ? import <nixpkgs> {} }:  pkgs.mkShell { -  buildInputs = [ -    (import ./packages.nix { inherit pkgs; }) -  ]; +  buildInputs = [( +    with pkgs; [ +      ruby_3_0 +      rubyPackages_3_0.rake +      rubyPackages_3_0.sqlite3 +      rubyPackages_3_0.thor +      sqlite +      unzip +      xz +      zip +      openssl +      #texlive-combined-full +      nixFlakes +      validatePkgConfig +      jq +      git +    ] +  )]; +  shellHook = '' +    if [[ -e ".envrc" ]]; then +      source .envrc +    fi +  '';  } | 
