diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-04-24T11·41+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-04-24T11·41+0000 |
commit | 24b3d0759e864fdf92fee1085e234535311029ef (patch) | |
tree | c0f185ee74f294264e64a7af5e7643022290d6a8 | |
parent | 9713e8577f752ef70c18a9cad62a4b0e88c769de (diff) |
* File removed.
-rwxr-xr-x | src/nix-activate | 22 |
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"; |