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 + ]; +}