Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

release 17.03-beta

Changed files
+2 -2
nixos
modules
+1 -1
nixos/modules/misc/version.nix
··· 78 78 defaultChannel = mkOption { 79 79 internal = true; 80 80 type = types.str; 81 - default = https://nixos.org/channels/nixos-unstable; 81 + default = https://nixos.org/channels/nixos-17.03; 82 82 description = "Default NixOS channel to which the root user is subscribed."; 83 83 }; 84 84
+1 -1
nixos/release.nix
··· 9 9 10 10 version = fileContents ../.version; 11 11 versionSuffix = 12 - (if stableBranch then "." else "pre") + "${toString nixpkgs.revCount}.${nixpkgs.shortRev}"; 12 + (if stableBranch then "." else "beta") + "${toString (nixpkgs.revCount - 102184)}.${nixpkgs.shortRev}"; 13 13 14 14 forAllSystems = genAttrs supportedSystems; 15 15