From c7740fed788a4ac538073acac2aa2fea5d4a69cc Mon Sep 17 00:00:00 2001 From: Mikhail Klementev Date: Wed, 28 Aug 2019 00:43:41 +0000 Subject: [PATCH] Add shell.nix --- README.md | 2 +- shell.nix | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 shell.nix diff --git a/README.md b/README.md index 5ce8c57..acaeb7b 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ #### [Nix](https://nixos.org/nix/download.html): - nix-shell -p texlive.combined.scheme-full -p rubber -p pandoc --run make + nix-shell --run make #### Debian/Ubuntu: diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..23ebdb5 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ pkgs ? import {} }: + +pkgs.mkShell { + name = "free-as-in-freedom-v2-ru"; + + buildInputs = with pkgs; [ + git utillinux gnumake + texlive.combined.scheme-full rubber + pandoc + ]; +}