summary refs log tree commit diff
path: root/lib
Commit message (Collapse)AuthorAge
* Make explicit that maintainers should use a real nameEelco Dolstra2016-02-27
|
* lib: alphabetize thingszimbatm2016-02-26
|
* lib.platforms: alphabetizezimbatm2016-02-26
|
* lib.maintainers: alphabetizezimbatm2016-02-26
|
* Merge pull request #13430 from nico202/yarpFranz Pletz2016-02-26
|\ | | | | yarp (+ libace): init at 2.3.64
| * yarp (+ libace): init at 2.3.64=2016-02-24
| |
* | Merge pull request #13358 from aespinosa/dpic-preprocessorArseniy Seroka2016-02-22
|\ \ | | | | | | dpic: init at 2016.01.12
| * | dpic: init at 2016.01.12Allan Espinosa2016-02-22
| | |
* | | Merge pull request #13143 from onlinemediagroup/ios_cross_compilerRobin Gloster2016-02-22
|\ \ \ | | | | | | | | ios-cross-compile: init at Feb 16, 2016
| * | | ios-cross-compile: init at 9.2Edgar Aroutiounian2016-02-22
| | |/ | |/|
* | | Merge pull request #13367 from bzizou/ncoPascal Wittmann2016-02-22
|\ \ \ | |_|/ |/| | nco: init at 4.5.5
| * | nco: init at 4.5.5Bruno Bzeznik Bruno.Bzeznik@imag.fr2016-02-22
| | |
* | | pcmanx-gtk2: init at 1.3mingchuan2016-02-20
| |/ |/|
* | lib/types: Set name of types.package to "package"aszlig2016-02-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Nobody seems to have noticed this (except @Profpatsch) that options with a "package" type do not get included in the manual. So debugging this was a bit more involving because while generating the manual there is an optionList' attribute built from the collected attributes of all the option declarations. Up to that point everything is fine except if it comes to builtins.toXML, where attributes with { type = "derivation" } won't get included, for example see here: nix-repl> builtins.toXML { type = "derivation"; foo = "bar"; } "<?xml version='1.0' encoding='utf-8'?>\n<expr>\n <derivation> <repeated />\n </derivation>\n</expr>\n" nix-repl> builtins.toXML { type = "somethingelse"; foo = "bar"; } "<?xml version='1.0' encoding='utf-8'?>\n<expr>\n <attrs> <attr name=\"foo\">\n <string value=\"bar\" />\n </attr> <attr name=\"type\">\n <string value=\"somethingelse\" /> </attr>\n </attrs>\n</expr>\n" The following function in libexpr/eval.cc (Nix) is responsible for toXML dropping the attributes: bool EvalState::isDerivation(Value & v) { if (v.type != tAttrs) return false; Bindings::iterator i = v.attrs->find(sType); if (i == v.attrs->end()) return false; forceValue(*i->value); if (i->value->type != tString) return false; return strcmp(i->value->string.s, "derivation") == 0; } So I've renamed this now to "package" which is not only more consistent with the option type but also shouldn't cause similar issues anymore. Tested this on base of b60ceea, because building the dependencies on recent libc/staging changes on master took too long. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Reported-by: Profpatsch <mail@profpatsch.de>
* | Merge pull request #12922 from igsha/diraczimbatm2016-02-17
|\ \ | | | | | | dirac: init at 1.0.2
| * | dirac: init at 1.0.2Igor Sharonov2016-02-13
| | |
* | | Merge branch 'pdnsd-service' of https://github.com/nfjinjing/nixpkgsNikolay Amiantov2016-02-16
|\ \ \ | | | | | | | | | | | | Closes #12932
| * | | pdnsd service: initJinjing Wang2016-02-12
| | | |
* | | | Merge pull request #13015 from ehegnes/exaRicardo M. Correia2016-02-16
|\ \ \ \ | | | | | | | | | | exa: init at git 2016-02-15
| * | | | exa: init at git 2016-02-15Eric Hegnes2016-02-16
| | | | |
* | | | | Merge pull request #12988 from colemickens/cfdyndnsArseniy Seroka2016-02-16
|\ \ \ \ \ | |/ / / / |/| | | | cfdyndns: init at 0.0.1
| * | | | cfdyndns: init at 0.0.1Cole Mickens2016-02-15
| |/ / /
* | | | Merge pull request #12997 from ryantm/minecraftArseniy Seroka2016-02-15
|\ \ \ \ | | | | | | | | | | minecraft: add desktop entry; add ryantm as maintainer
| * | | | minecraft: add desktop entry; add ryantm as maintainerRyan Mulligan2016-02-14
| | | | |
* | | | | Merge pull request #12992 from lukasepple/masterArseniy Seroka2016-02-15
|\ \ \ \ \ | | | | | | | | | | | | intel2200BGFirmware: init at 3.1
| * | | | | intel2200BGFirmware: init at 3.1lukasepple2016-02-15
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds the firmware for the Intel 2200BG wireless cards for the ipw2200 kernel module. Also it changes the networking.enableIntel2200BGFirmware option to set it as hardware.firmware since firmware-linux-nonfree does not contain the appropiate firmware anymore. Also hardware.enableAllFirmware does enable the intel2200BGFirmware now.
* | | | | bluez-tools: init 2015-09-10 (close #12936)Christoph-Simon Senjak2016-02-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vcunat only fixed whitespace and changed the authorship e-mail from dummy address you@example.com to the one recorded in maintainers.nix. (Now github should recognize the commit as yours.)
* | | | | add armv7l-linux to mesaPlatformsTomas Hlavaty2016-02-14
| | | | |
* | | | | Merge pull request #12964 from sleexyz/spectrojackArseniy Seroka2016-02-14
|\ \ \ \ \ | |/ / / / |/| | | | spectrojack: init at 0.4
| * | | | spectrojack: init at 0.4Sean Lee2016-02-13
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | spectrojack - moved in all-packages spectrojack: init at 0.4 updated spectrojack: init at 0.4
* | | | Merge pull request #12933 from mayflower/pkgs_upstream/nntp-proxyFranz Pletz2016-02-12
|\ \ \ \ | |_|_|/ |/| | | nntp-proxy: init at 2014-01-06 (0358e7a)
| * | | nntp-proxy: init at 2014-01-06 (0358e7a)Tristan Helmich2016-02-11
| | |/ | |/|
* | | Merge pull request #12884 from elitak/sunxi-tools_packagesArseniy Seroka2016-02-11
|\ \ \ | |/ / |/| | sunxi-tools: (new)
| * | sunxi-tools: init at 1.3Eric Litak2016-02-10
| | |
* | | Merge pull request #12888 from vanzef/qtscrobNikolay Amiantov2016-02-09
|\ \ \ | |/ / |/| | Qtscrob
| * | maintainers: add vanzefIvan Solyankin2016-02-09
| |/
* | lib.maintainers.globin: use my normal mail addressRobin Gloster2016-02-07
| |
* | Merge pull request #12808 from kevincox/b2Pascal Wittmann2016-02-04
|\ \ | | | | | | backblaze-b2: init at version 0.3.10
| * | backblaze-b2: init at version 0.3.10Kevin Cox2016-02-03
| | |
* | | Merge pull request #12810 from aneeshusa/add-as31Pascal Wittmann2016-02-04
|\ \ \ | |/ / |/| | as31: init at 2.3.1
| * | as31: init at 2.3.1Aneesh Agrawal2016-02-04
| |/
* | Revert "Merge #12357: nixos docs: show references to packages"Vladimír Čunát2016-02-03
| | | | | | | | | | | | The PR wasn't good enough yet. This reverts commit b2a37ceeea8c38ec71447f8dae1e6890a8cf982d, reversing changes made to 7fa9a1abce623aaf18b22f5dca3fc8a44a494e8d.
* | Merge #12357: nixos docs: show references to packagesVladimír Čunát2016-02-03
|\ \
| * | nixos manuals: allow displaying package referencesVladimír Čunát2016-01-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The manuals are now evaluated with each derivation in `pkgs` (recursively) replaced by a fake with path "\${pkgs.path.to.the.attribute}". It isn't perfect, but it seems to cover a vast majority of use cases. Caveat: even if the package is reached by a different means, the path above will be shown and not e.g. `${config.services.foo.package}`. As before, defaults created by `mkDefault` aren't displayed, but documentation shouldn't (mostly) be a reason to use that anymore. Note: t wouldn't be enough to just use `lib.mapAttrsRecursive`, because derivations are also (special) attribute sets.
* | | quagga: init at 0.99.24.1Octavian Cerna2016-02-02
| | |
* | | Merge pull request #12562 from tvestelind/vassalLuca Bruno2016-02-01
|\ \ \ | | | | | | | | vassal: new package
| * | | tvestelind in maintainersTomas Vestelind2016-02-01
| |/ /
* | | Merge pull request #12221 from spinus/solaarArseniy Seroka2016-01-24
|\ \ \ | | | | | | | | solaar: init at 0.9.2
| * | | solaar: init at 0.9.2Tomasz Czyż2016-01-24
| | |/ | |/|
* | | homesick: init at 1.1.3 (close #12465)Aaron Schif2016-01-24
| | |