summary refs log tree commit diff
path: root/lib
Commit message (Collapse)AuthorAge
* oh-my-zsh-git: init at 2016-02-27Sergiu Ivanov2016-03-07
|
* Merge commit 'refs/pull/13667/head' of git://github.com/NixOS/nixpkgsNikolay Amiantov2016-03-06
|\
| * ahoviewer: init at 1.4.6Jakub Skrzypnik2016-03-06
| |
* | keyfuzz: init at 0.2.Mathieu Boespflug2016-03-05
| |
* | spice-vdagentd service : initial at 0.16.0Adam Boseley2016-03-05
|/
* Merge pull request #13642 from artuuge/epson-escpr-metazimbatm2016-03-03
|\ | | | | epson-escpr: update the package meta
| * update epson-escpr metaartuuge2016-03-03
| |
* | maintainers: add a maintainer to the setRaymond Gauthier2016-03-03
|/
* multimc: fix building under chrootmichael bishop2016-03-02
|
* Merge commit 'refs/pull/13412/head' of git://github.com/NixOS/nixpkgsNikolay Amiantov2016-03-02
|\
| * libreswan: add package and service to nixosAlex Franchuk2016-03-02
| |
* | Revert "Add the tool "nixos-typecheck" that can check an option declaration to:"Eelco Dolstra2016-03-01
| | | | | | | | | | | | This reverts commit cad8957eabcbf73062226d28366fd446c15c8737. It breaks NixOps, but more importantly, such major changes to the module system really need to be reviewed.
* | lib.trivial: add a new importJSON functionzimbatm2016-02-29
| | | | | | | | | | | | This is meant to be used by packages who often re-generate their inputs. Producing valid JSON is easier than nix, and also garantees it's purity.
* | update maintainer's email addressThomas Strobel2016-02-29
| |
* | Add the tool "nixos-typecheck" that can check an option declaration to:Thomas Strobel2016-02-29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - Enforce that an option declaration has a "defaultText" if and only if the type of the option derives from "package", "packageSet" or "nixpkgsConfig" and if a "default" attribute is defined. - Enforce that the value of the "example" attribute is wrapped with "literalExample" if the type of the option derives from "package", "packageSet" or "nixpkgsConfig". - Warn if a "defaultText" is defined in an option declaration if the type of the option does not derive from "package", "packageSet" or "nixpkgsConfig". - Warn if no "type" is defined in an option declaration.
* | lib.maintainers: add Michiel Leenaars (close #13516)leenaars2016-02-27
| | | | | | | | As suggested in https://github.com/NixOS/nixpkgs/pull/13504 by @hrdinka.
* | 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
| | |