From 63806ccfe587d8573012306388253a6aa9ae598b Mon Sep 17 00:00:00 2001 From: Attila Lendvai Date: Sun, 14 Feb 2021 10:05:02 +0100 Subject: [PATCH] add shell.nix and make it work on nixos --- build.sh | 2 +- default.nix | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 default.nix 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 ../..' + ''; +}