guix/src
Eelco Dolstra 0ef4b6d0f8 * Cleaned up the semantics of Fix expressions.
* 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-25 15:33:50 +00:00
..
Makefile.am * We no longer use nix-populate standalone, rather we use it as a 2003-04-09 12:26:48 +00:00
fix.cc * Cleaned up the semantics of Fix expressions. 2003-04-25 15:33:50 +00:00
md5.c * For efficiency: md5 integrated into nix. 2003-03-24 17:49:56 +00:00
md5.h * For efficiency: md5 integrated into nix. 2003-03-24 17:49:56 +00:00
nix.cc * Remove build directory from a package directory after building it. 2003-04-25 15:01:15 +00:00
util.hh * `Fix' is a high-level descriptor instantiator for Nix. It replaces 2003-04-08 12:00:51 +00:00