about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2003-04-24T11·41+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2003-04-24T11·41+0000
commit24b3d0759e864fdf92fee1085e234535311029ef (patch)
treec0f185ee74f294264e64a7af5e7643022290d6a8 /src
parent9713e8577f752ef70c18a9cad62a4b0e88c769de (diff)
* File removed.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/nix-activate22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/nix-activate b/src/nix-activate
deleted file mode 100755
index 9fe6466866df..000000000000
--- a/src/nix-activate
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /usr/bin/perl -w
-
-use strict;
-
-my $pkglist = "/home/eelco/.nixactivations";
-
-if (!-f $pkglist) {
-    system "touch $pkglist";
-}
-
-my $hash;
-foreach $hash (@ARGV) {
-    system "grep -q $hash $pkglist";
-    if ($?) {
-	print STDERR "activating $hash\n";
-	system "nix getpkg $hash > /dev/null";
-	if ($?) { die "`nix getpkg' failed"; }
-	system "echo $hash >> $pkglist";
-    }
-}
-
-system "nix-populate";