* 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
This commit is contained in:
Eelco Dolstra
2003-07-11 21:08:53 +00:00
parent a99e717100
commit ec3b5134c1
15 changed files with 172 additions and 3 deletions
+1 -1
View File
@@ -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";
}
+3
View File
@@ -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"))
]
)