diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-04-09T12·26+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-04-09T12·26+0000 |
commit | aa8fda4b54fbd84b7bc6b11904c156367683e8f6 (patch) | |
tree | 736e0545b69f5062be1d8bb366bd0617e8469911 /test/fixdescriptors/system.fix | |
parent | f56b7312b273546871a1eca7d34c60474d3c4050 (diff) |
* We no longer use nix-populate standalone, rather we use it as a
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.
Diffstat (limited to 'test/fixdescriptors/system.fix')
-rw-r--r-- | test/fixdescriptors/system.fix | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/fixdescriptors/system.fix b/test/fixdescriptors/system.fix new file mode 100644 index 000000000000..e864cfac3b40 --- /dev/null +++ b/test/fixdescriptors/system.fix @@ -0,0 +1,11 @@ +Descr( + [ Bind("pkgId", Str("system")) + , Bind("releaseId", Str("1")) + + , Bind("actATerm", Pkg(Fix("./aterm-2.0.fix"))) + , Bind("actPkgConfig", Pkg(Fix("./pkgconfig-0.15.0.fix"))) + , Bind("actGlib", Pkg(Fix("./glib-2.2.1.fix"))) + + , Bind("build", File(Local("../../scripts/nix-populate"))) + ] +) |