This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ config, pkgs, ... }: | |
let | |
# Import unstable channel. | |
# sudo nix-channel --add http://nixos.org/channels/nixpkgs-unstable nixpkgs-unstable | |
# sudo nix-channel --update nixpkgs-unstable | |
unstable = import <nixpkgs-unstable> {}; | |
in | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## Software versions (you can edit this if there are newer versions) | |
#NPS_VERSION="1.12.34.2" # 2016-12-15 (Beta) | |
NPS_VERSION="1.11.33.4" # 2016-10-03 (Stable) | |
NGINX_VERSION="1.11.9" # 2017-01-24 (mainline) | |
OPENSSL_VERSION="1.1.0d" # 2017-01-26 (stable) | |
PCRE_VERSION="8.39" # 2016-06-14 (old stable, latest supported by Nginx) | |
ZLIB_VERSION="1.2.11" # 2017-01-15 (stable) |