summaryrefslogtreecommitdiffstats
path: root/lib/meta.nix
AgeCommit message (Collapse)Author
2014-03-10Make appendToName do the right thingEelco Dolstra
I.e. append a suffix *before* the version, rather than after. So we get "sqlite-interactive-3.8.0.2" instead of "sqlite-3.8.0.2-interactive". The latter is broken since nix-env just sees it the suffix as part of the version, so "nix-env -u" will happily upgrade "sqlite-3.8.0.2-interactive" to "sqlite-3.9".
2014-01-20openjdk: Ugly hack to fix nix-env installationEelco Dolstra
Nix-env always wants to install all outputs of a derivation, but this failed for openjdk/openjre because openjdk has some symlinks (such as bin/java) to openjre. Also, it prevents installing the openjre without the openjdk. So as a workaround, mess with the "outputs" attribute to fool nix-env. Also, give openjre a separate name and description. Fixes #1535.
2013-12-26add lowPrioSet and hiPrioSet functions to enable changing of priorities of ↵Evgeny Egorochkin
attrsets with packages such as kde.
2013-10-10Move pkgs/lib/ to lib/Eelco Dolstra