summary refs log tree commit diff
path: root/fixdescriptors/aterm-2.0.fix
AgeCommit message (Collapse)AuthorFilesLines
2003-05-26* Renamed.Eelco Dolstra1-10/+0
svn path=/nixpkgs/trunk/; revision=60
2003-05-25* Updated Fix descriptors to reflect the new Fix abstract syntax.Eelco Dolstra1-2/+2
svn path=/nix/trunk/test/; revision=55
2003-04-25* Cleaned up the semantics of Fix expressions.Eelco Dolstra1-5/+5
* Conditionals and variables in Fix expressions. This allows, e.g., Descr( [ Bind("pkgId", "subversion-0.21.0") , Bind("httpsClient", Bool(True)) , Bind("httpServer", Bool(True)) , Bind("ssl", If(Var("httpsClient"), Fix("./openssl-0.9.7b.fix"), "")) , Bind("httpd", If(Var("httpServer"), Fix("./httpd-2.0.45.fix"), "")) ... ]) which introduces domain feature variables httpsClient and httpServer (i.e., whether Subversion is built with https client and webdav server support); the values of the variables influences package dependencies and the build scripts. The next step is to allow that packages can express constraints on each other. E.g., StrategoXT is dependent on an ATerm library with the "gcc" variant enabled. In fact, this may cause several Nix instantiations to be created from a single Fix descriptor. If possible, Fix should try to find the least set of instantiations that obeys the constraints. svn path=/nix/trunk/test/; revision=53
2003-04-08* Descriptor importing in Fix.Eelco Dolstra1-1/+1
svn path=/nix/trunk/test/; revision=38
2003-04-08* `Fix' is a high-level descriptor instantiator for Nix. It replacesEelco Dolstra1-0/+10
nix-instantiate. svn path=/nix/trunk/test/; revision=35