1
0
Fork 0

Add shell.nix

primary
dump_stack() 2019-08-28 00:43:41 +00:00
parent 53d92fa4df
commit c7740fed78
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
2 changed files with 12 additions and 1 deletions

View File

@ -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:

11
shell.nix Normal file
View File

@ -0,0 +1,11 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "free-as-in-freedom-v2-ru";
buildInputs = with pkgs; [
git utillinux gnumake
texlive.combined.scheme-full rubber
pandoc
];
}