diff --git a/build.sh b/build.sh index 9d133de..9c2444f 100755 --- a/build.sh +++ b/build.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh set -e diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..24a2deb --- /dev/null +++ b/default.nix @@ -0,0 +1,19 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + coreutils posix_man_pages bash-completion less + gitFull diffutils + gnumake which + ncurses perl python2 python3 + + # keep this line if you use bash + bashInteractive + ]; + + shellHook = + '' + alias ..='cd ..' + alias ...='cd ../..' + ''; +}