summary refs log tree commit diff
path: root/pkgs/system
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2003-07-11 21:08:53 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2003-07-11 21:08:53 +0000
commitec3b5134c18f0e0ee6ae6cdb71adb95c4d45750b (patch)
tree847c78c87f53fb9167ce352d5b8d0a2c50acd720 /pkgs/system
parenta99e717100915b2f401040dbe93837dbd2d33386 (diff)
* Converted some old Fix descriptors.
* A solution to the library abstraction problem (i.e., if 
  package X needs library Y, and library Y needs library Z, 
  then we do not (generally) want to declare Z as a input to X 
  since that would break abstraction).  This was not possible 
  under the old Nix.

svn path=/nixpkgs/trunk/; revision=150
Diffstat (limited to 'pkgs/system')
-rwxr-xr-xpkgs/system/populate-linkdirs.pl2
-rw-r--r--pkgs/system/system.fix3
2 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/system/populate-linkdirs.pl b/pkgs/system/populate-linkdirs.pl
index 79a4374e05645..4bff975f9cc00 100755
--- a/pkgs/system/populate-linkdirs.pl
+++ b/pkgs/system/populate-linkdirs.pl
@@ -30,7 +30,7 @@ sub createLinks {
             my $target = readlink($dstfile);
             die "collission between $srcfile and $target";
         } else {
-            print "linking $dstfile to $srcfile\n";
+#            print "linking $dstfile to $srcfile\n";
             symlink($srcfile, $dstfile) ||
                 die "error creating link $dstfile";
         }
diff --git a/pkgs/system/system.fix b/pkgs/system/system.fix
index db40ada11f145..8c5bf5893d52d 100644
--- a/pkgs/system/system.fix
+++ b/pkgs/system/system.fix
@@ -4,5 +4,8 @@ Package(
 
   , ("actATerm", IncludeFix("aterm/aterm.fix"))
   , ("actPkgConfig", IncludeFix("pkgconfig/pkgconfig.fix"))
+  , ("actOpenSSL", IncludeFix("openssl/openssl.fix"))
+  , ("actSubversion", IncludeFix("subversion/subversion.fix"))
+  , ("actXft", IncludeFix("Xft/Xft.fix"))
   ]
 )