diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-07-01T10·10+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2008-07-01T10·10+0000 |
commit | d567baabbd99fdb92e67295a77aef76ef970e65c (patch) | |
tree | d31c1737c52da705c17da78edb517bc2e56b841a /src/nix-env/Makefile.am | |
parent | b3b0b2a29e2842784f80cf839f84af18b0b83e90 (diff) |
* Export the nix-env derivation name parsing and version comparison
logic through the `parseDrvName' and `compareVersions' primops. This will allow expressions to easily check whether some dependency is a specific needed version or falls in some version range. See tests/lang/eval-okay-versions.nix for examples.
Diffstat (limited to 'src/nix-env/Makefile.am')
-rw-r--r-- | src/nix-env/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nix-env/Makefile.am b/src/nix-env/Makefile.am index a1e58cf006bc..4720dfe8b780 100644 --- a/src/nix-env/Makefile.am +++ b/src/nix-env/Makefile.am @@ -1,7 +1,6 @@ bin_PROGRAMS = nix-env -nix_env_SOURCES = nix-env.cc names.cc names.hh \ - profiles.cc profiles.hh help.txt +nix_env_SOURCES = nix-env.cc profiles.cc profiles.hh help.txt nix_env_LDADD = ../libmain/libmain.la ../libexpr/libexpr.la \ ../libstore/libstore.la ../libutil/libutil.la \ ../boost/format/libformat.la ${bdb_lib} ${aterm_lib} |