summary refs log tree commit diff
path: root/pkgs/lib
Commit message (Collapse)AuthorAge
* Add a library function ‘genAttrs’Eelco Dolstra2013-03-06
| | | | | It generates an attribute set by mapping a function over a list of attribute names.
* Fix hiPrio.Shea Levy2013-02-25
| | | | Did this ever work?
* add deluge torrent client and it's dependenciesDomen Kozar2013-02-18
|
* types.nix: Add a ‘lines’ typeEelco Dolstra2013-02-11
| | | | | | | | | | | | This is like types.string, but values are merged by putting a newline in between them. This is mostly useful for configuration file options, where we don't want values accidentally ending up on the same line. Note that almost all options with string type in NixOS should either be unmergable (i.e. should be marked with ‘types.uniq’) or should actually be of type ‘lines’. So it might make sense to remove the merge function for the ‘string’ type eventually.
* Document deepSeqShea Levy2013-02-04
|
* Add deepSeq lib functionShea Levy2013-02-01
|
* chromium: Add myself to maintainers.aszlig2013-01-10
| | | | | | | | | Might come in handy to actually know when things going to break. In case you're wondering: Yes, "aszlig" is the name everyone uses in real life (even my family uses it) and is my pending stage name (not _yet_ officially). Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* Simplify lib.typeOfShea Levy2012-12-31
|
* maintainers: add myself to the maintainers listSergey Mironov2012-12-27
|
* D'ohShea Levy2012-12-20
|
* Misunderstood hasOptions, I thinkShea Levy2012-12-20
|
* Add a 'functionTo x' type.Shea Levy2012-12-19
| | | | | This is mainly to for the 'merge' concept, but I made a guess as to what iter and fold would mean for functions.
* pkgs/lib/platforms.nix: fix specification of mesaPlatformsPeter Simons2012-12-06
| | | | Mesa is supported on i686-linux, x86_64-linux, and x86_64-darwin.
* Use "or" in a few placesEelco Dolstra2012-12-04
|
* Get rid of some error contexts that don't provide useful infoEelco Dolstra2012-12-04
|
* Remove mkThenElse and mkAlwaysEelco Dolstra2012-12-04
|
* Remove unused function ‘selectDeclsAndDefs’Eelco Dolstra2012-12-03
|
* Remove support for the obsolete powerpc-darwin and i686-darwin platformsEelco Dolstra2012-11-29
|
* Update e-mail addressEelco Dolstra2012-11-26
|
* Merge pull request #190 from MarcWeber/fixes/lists-sortMichael Raskin2012-11-21
|\ | | | | fix sort in lists.nix
| * fix sort in lists.nixMarc Weber2012-11-20
| |
* | Merge pull request #155 from bbenoist/newpkgsPeter Simons2012-11-20
|\ \ | | | | | | New pkgs: qtcreator fox xfe gmrun geany
| * | Add bbenoist as maintainerBaptist BENOIST2012-10-16
| | | | | | | | | | | | Signed-off-by: Baptist BENOIST <return_0@live.com>
* | | TyposEelco Dolstra2012-11-14
| |/ |/|
* | Make Firefox 16 the defaultEelco Dolstra2012-10-23
|/
* Merge branch 'master' into zfsJack Cummings2012-10-11
|\
| * Merge remote-tracking branch 'upstream/master'Jack Cummings2012-10-06
| |\
| | * Add a function ‘getVersion’ to get the version of a derivationEelco Dolstra2012-10-05
| | |
* | | - zfs 0.6.0-rc11, spl 0.6.0-rc11Jack Cummings2012-10-05
|/ /
* | Revert " - zfs-0.6.0-rc11, and spl-0.6.0-rc11"Jack Cummings2012-10-05
| | | | | | | | This reverts commit 8eb9491a22cd57415ba10470b7c7950e712ec4c0.
* | - zfs-0.6.0-rc11, and spl-0.6.0-rc11Jack Cummings2012-10-05
| |
* | - add myself as a maintainer for the packages I've addedJack Cummings2012-10-04
|/
* Adding a function capable of extracting the name with version out of ↵Michael Raskin2012-09-13
| | | | url/file path
* licenses: Add Tcl/Tk license.aszlig2012-09-09
| | | | | | | | It is similar to the BSD license but has a few restrictions regarding government use. But as I am not a lawyer, I'm not sure if that could be merged with bsd3, so I'm listing it here separately just to be sure. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
* experimental/lib-fold-attrMarc Weber2012-08-28
| | | | | | | adding useful function foldAttr which behave like fold on attr values grouped by name (without assertions now) Signed-off-by: Marc Weber <marco-oweber@gmx.de>
* Fix evaluation problemEelco Dolstra2012-08-14
| | | | http://hydra.nixos.org/build/2940128
* Remove obsolete flattenAttrs functionEelco Dolstra2012-08-13
|
* Remove obsolete eqLists functionEelco Dolstra2012-08-13
|
* Remove obsolete eqStrict functionEelco Dolstra2012-08-13
| | | | Use the "==" operator instead.
* Replace some calls to attrByPath with "or"Eelco Dolstra2012-08-13
|
* Provide O(n) time implementations of fold/foldl/any/allEelco Dolstra2012-08-13
| | | | Previous implementations were O(n^2) because tail takes O(n) time.
* Eliminate some calls to ‘tail’Eelco Dolstra2012-08-13
|
* Use builtin filter, elem, concatLists functions if availableEelco Dolstra2012-08-13
|
* Remove obsolete backwards compatibility hack for getAttrEelco Dolstra2012-08-13
|
* Fix bug in uniqList.Andres Loeh2012-07-18
|
* Try to cut recursion depth in uniqList and closePropagation.Andres Loeh2012-07-18
|
* Adding myself (page) to maintainers.Carles Pagès2012-07-17
|
* Fix the "path" option typeEelco Dolstra2012-07-12
| | | | | | Comparing a string with a context with "/" doesn't work because the "==" operator also compares context. So the context needs to be discarded.
* Add myself to maintainers.nixAntono Vasiljev2012-06-23
|
* * Add a function ‘mapAttrsToList’ that maps a function over theEelco Dolstra2012-06-14
| | | | | | | attributes in a set, returning a list. (Note that the regular ‘mapAttrs’ returns an attribute set.) svn path=/nixpkgs/trunk/; revision=34509