From 6409c215e56cbcd10177edf358f7d0702d687099 Mon Sep 17 00:00:00 2001
From: Eelco Dolstra <e.dolstra@tudelft.nl>
Date: Thu, 9 Oct 2003 15:37:20 +0000
Subject: [PATCH] * Fixed nix-switch.

---
 scripts/nix-switch.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/nix-switch.in b/scripts/nix-switch.in
index 427a803b2..85fa3ac44 100755
--- a/scripts/nix-switch.in
+++ b/scripts/nix-switch.in
@@ -13,7 +13,7 @@ while ($argnr < scalar @ARGV) {
     if ($arg eq "--keep") { $keep = 1; }
     elsif ($arg eq "--source-root") { $sourceroot = 1; }
     elsif ($arg eq "--name") { $name = $ARGV[$argnr++]; }
-    elsif ($arg =~ /^([0-9a-z]{32})$/) { $srcid = $arg; }
+    elsif ($arg =~ /^\//) { $srcid = $arg; }
     else { die "unknown argument `$arg'" };
 }
 
@@ -23,7 +23,7 @@ my $linkdir = "@localstatedir@/nix/links";
 my $nfid = `nix --install $srcid`;
 if ($?) { die "`nix --install' failed"; }
 chomp $nfid;
-die unless $nfid =~ /^([0-9a-z]{32})$/;
+die unless $nfid =~ /^\//;
 
 my $pkgdir = `nix --query --list $nfid`;
 if ($?) { die "`nix --query --list' failed"; }
-- 
GitLab