From 93efa40b587d43fb0106897cc835dd0baa6ed8cc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 3 Jan 2008 13:34:16 +0000 Subject: [PATCH] * Put Subversion on the installation CD so that the user can run "nixos-checkout" to use the latest NixOS/Nixpkgs expressions (rather than what's on the CD). svn path=/nixos/trunk/; revision=10057 --- configuration/rescue-cd.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configuration/rescue-cd.nix b/configuration/rescue-cd.nix index 92369fa866ef..9573753ef681 100644 --- a/configuration/rescue-cd.nix +++ b/configuration/rescue-cd.nix @@ -4,7 +4,7 @@ rec { - nixpkgsRel = "nixpkgs-0.12pre9486"; + nixpkgsRel = "nixpkgs-0.12pre10056"; configuration = { @@ -85,6 +85,7 @@ rec { environment = { extraPackages = pkgs: [ pkgs.vim + pkgs.subversion # for nixos-checkout ]; }; @@ -133,7 +134,7 @@ rec { # Get a recent copy of Nixpkgs. nixpkgsTarball = pkgs.fetchurl { url = configuration.installer.nixpkgsURL + "/" + nixpkgsRel + ".tar.bz2"; - md5 = "22deefec0696d2fb263864b97e2238d3"; + md5 = "a25cd6eb5e753703823fdd3ae86e9f25"; };