From 27b329abe20b9805c57c03eb9faaa0bae687267c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 27 Jun 2008 12:28:43 +0000 Subject: [PATCH] * Doh! Include the pkgs subdirectory of nixpkgs on the CD. svn path=/nixos/trunk/; revision=12198 --- configuration/rescue-cd.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/configuration/rescue-cd.nix b/configuration/rescue-cd.nix index cc08ab6bc222..f54aa5bf66a2 100644 --- a/configuration/rescue-cd.nix +++ b/configuration/rescue-cd.nix @@ -208,14 +208,13 @@ rec { makeTarball = tarName: input: pkgs.runCommand "tarball" {inherit tarName;} " ensureDir $out (cd ${input} && tar cvfj $out/${tarName} . \\ - --exclude '*~' \\ - --exclude 'pkgs' --exclude 'result') + --exclude '*~' --exclude 'result') "; # Put the current directory in a tarball (making sure to filter # out crap like the .svn directories). - nixosTarball =makeTarball "nixos.tar.bz2" (builtins.filterSource svnFilter ./..); + nixosTarball = makeTarball "nixos.tar.bz2" (builtins.filterSource svnFilter ./..); svnFilter = name: type: let base = baseNameOf (toString name);