about summary refs log tree commit diff
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2003-05-25 * Updated Fix descriptors to reflect the new Fix abstract syntax.Eelco Dolstra14-31/+31
2003-04-25 * Cleaned up the semantics of Fix expressions.Eelco Dolstra17-84/+146
* 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.
2003-04-24 * Removed old Nix descriptors.Eelco Dolstra14-128/+0
2003-04-23 * Fix descriptors for Pan and its dependencies.Eelco Dolstra15-52/+145
2003-04-23 * Fix descriptor for Subversion 0.21.0.Eelco Dolstra3-7/+16
2003-04-23 * Add "... || exit 1" to every command to catch failure.Eelco Dolstra1-7/+7
2003-04-09 * We no longer use nix-populate standalone, rather we use it as aEelco Dolstra1-0/+11
build action for `system' packages (like system.fix) that have dependencies on all packages we want to activate. So the command sequence to switch to a new activation configuration of the system would be: $ fix -i .../fixdescriptors/system.fix ... system.fix -> 89cf4713b37cc66989304abeb9ea189f $ nix-switch 89cf4713b37cc66989304abeb9ea189f * A nix-profile.sh script that can be included in .bashrc.
2003-04-08 * Descriptor importing in Fix.Eelco Dolstra3-1/+19
2003-04-08 * `Fix' is a high-level descriptor instantiator for Nix. It replacesEelco Dolstra2-19/+10
nix-instantiate.
2003-04-06 * Better installation: make directories, create database.Eelco Dolstra1-9/+9
* Fixed the register script.
2003-04-06 * The latest version of Pan.Eelco Dolstra1-0/+14
2003-04-06 * Delete source after building.Eelco Dolstra8-0/+16
2003-04-02 * Importing and exporting of pre-built packages.Eelco Dolstra2-11/+9
2003-03-31 * Nix descriptor for Subversion.Eelco Dolstra2-0/+19
2003-03-28 * Don't fork in `nix run'.Eelco Dolstra2-2/+5
2003-03-28 * Allow arguments to be passed to programs in `nix run'.Eelco Dolstra1-1/+1
2003-03-24 * Typo fix.Eelco Dolstra1-1/+1
2003-03-24 * Descriptors now have a "system" field specifying the platform thatEelco Dolstra12-0/+24
the build or run action should be perfomed on. This ensures that descriptors have different hashes on different platforms.
2003-03-23 * A descriptor for running the Pan newsreader.Eelco Dolstra8-0/+86
* Added descriptors for gtkspell and its support package pspell. Gtkspell is an optional dependency of Pan, so we should add the ability to nix-instantiate to instantiate variants of a package based on a selection of features.
2003-03-21 * Added a command to list installed packages.Eelco Dolstra1-1/+1
2003-03-21 * Forgot to commit this one.Eelco Dolstra1-1/+1
2003-03-21 * Fetch sources from the network.Eelco Dolstra10-15/+20
2003-03-21 * Renamed dist -> build.Eelco Dolstra16-8/+8
2003-03-20 * Descriptor templates for the Pan newsreader and all itsEelco Dolstra17-0/+157
dependencies.