summary refs log tree commit diff
path: root/lib
Commit message (Collapse)AuthorAge
* lib: remove mention of flashplayer in docsBernardo Meurer2021-02-08
|
* lib.licenses: add bsd1 (BSD 1-Clause License)Fabian Affolter2021-02-02
|
* Revert "lib/generators: fix toPretty throwing on (partially applied) builtins"sternenseemann2021-02-01
| | | | | | | | | | | | | | | This reverts commit d9a7d03da8c58aa863911506ae3153729f8931da. Reason for this is that it actually doesn't migitate the issue on nix stable for another reason: builtins.tryEval doesn't prevent the error generated by builtins.functionArgs from halting evaluation: > builtins.tryEval (builtins.functionArgs builtins.functionArgs) error: 'functionArgs' requires a function, at (string):1:19 Thus it seems that there is no workaround to make lib.generators.toPretty work with nix stable and primops since there is no way to distinguish between primops and lambdas in nix.
* Merge pull request #111469 from sternenseemann/topretty-fix-curryingSilvan Mosberger2021-01-31
|\ | | | | lib/generators: fix toPretty throwing on (partially applied) builtins
| * lib/generators: fix toPretty throwing on (partially applied) builtinssternenseemann2021-01-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | An high level example case of this problem occuring can be found below: nix-repl> lib.generators.toPretty {} (lib.concatStringsSep "\n") error: 'functionArgs' requires a function, at /home/lukas/src/nix/nixpkgs/lib/trivial.nix:334:42 However this does not happen on other partially applied functions: nix-repl> lib.generators.toPretty {} (lib.concatMapStringsSep "\n") "<function>" The issue, as it turns out is that while builtins are functions, builtins.functionArgs throws if is passed a builtin or a partially applied builtin: nix-repl> lib.generators.toPretty {} builtins.toString error: 'functionArgs' requires a function, at /home/lukas/src/nix/nixpkgs/lib/trivial.nix:334:42 nix-repl> lib.generators.toPretty {} (builtins.foldl' (a: b: a + b)) error: 'functionArgs' requires a function, at /home/lukas/src/nix/nixpkgs/lib/trivial.nix:334:42 I'm pretty sure this qualifies as a nix bug and should be filed accordingly, but we can work around it in lib.generators.toPretty by using tryEval and falling back to {} which functionArgs _should_ return for builtins. The nix behavior is inconsistent to say the least: nix-repl> builtins.functionArgs builtins.functionArgs error: 'functionArgs' requires a function, at (string):1:1 nix-repl> builtins.typeOf builtins.functionArgs "lambda" builtins.functionArgs (a: 1 + a) { } nix-repl> builtins.typeOf (a: 1 + a) "lambda"
* | lib/types: add description for functionToFritz Otlinghaus2021-01-31
| |
* | Merge pull request #111345 from r-burns/ppc64-big-endianJohn Ericson2021-01-30
|\ \ | | | | | | Enable PPC64 (big-endian)
| * | lib.systems: add powerpc64-linuxRyan Burns2021-01-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PPC64 supports two ABIs: ELF v1 and v2. ELFv1 is historically what GCC and most packages expect, but this is changing because musl outright does not work with ELFv1. So any distro which uses musl must use ELFv2. Many other platforms are moving to ELFv2 too, such as FreeBSD (as of v13) and Gentoo (as of late 2020). Since we use musl extensively, let's default to ELFv2. Nix gives us the power to specify this declaratively for the entire system, so ELFv1 is not dropped entirely. It can be specified explicitly in the target config, e.g. "powerpc64-unknown-linux-elfv1". Otherwise the default is "powerpc64-unknown-linux-elfv2". For musl, "powerpc64-unknown-linux-musl" must use elfv2 internally to function.
* | | Merge pull request #110787 from tfc/cartesian-productSilvan Mosberger2021-01-29
|\ \ \ | |_|/ |/| | lib/attrsets: add cartesianProductOfSets function
| * | Deprecate lib.crossListsJacek Galowicz2021-01-28
| | |
| * | lib/attrsets: add cartesianProductOfSets functionJacek Galowicz2021-01-28
| | |
* | | gcc: fix armhf targetAlexander Foremny2021-01-29
|/ / | | | | | | Fixes #96921
* | Merge pull request #110707 from Infinisil/functionToRobert Hensing2021-01-27
|\ \ | |/ |/| Bring back `types.functionTo`
| * lib/tests: More functionTo testsSilvan Mosberger2021-01-27
| |
| * lib/types: Improved functionTo mergingSilvan Mosberger2021-01-27
| | | | | | | | | | | | | | Now type checks the resulting function values and allows mkMerge and co. Also indicates that the type check is done in the function body Co-Authored-By: Robert Hensing <robert@roberthensing.nl>
| * lib/tests/modules: add a test for the functionTo typeBas van Dijk2021-01-24
| | | | | | | | (cherry picked from commit 478af112e83df806bd8a51174834d2a130fbdeb9)
| * Revert "Remove types.functionTo."Bas van Dijk2021-01-24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 4ff1ab5a56f1280d2de319ad4eb4b2796e07ed35. We need this to type options like: services.xserver.windowManager.xmonad.extraPackages that specify functions that take an attribute set containing packages / plugins and return a list containing a selection of the values in this set. The reason we need a dedicated type for this is to have the correct merge behaviour. Without the functionTo type merging multiple function option definitions results in an evaluation error. The functionTo type merges definitions by returning a new function that applies the functions of all the definitions to the given input and merges the result. (cherry picked from commit 7ed41ff5e7e633dd64866398ee497ac02736a3a5)
* | lib/systems: fix linuxArch for power + riscvRyan Burns2021-01-25
| | | | | | | | | | | | | | | | | | | | | | Looks like these got left behind in the kernelArch -> linuxArch migration. Fixes: * pkgsCross.powernv.linuxHeaders * pkgsCross.riscv64.linuxHeaders * pkgsCross.riscv32.linuxHeaders and dependees
* | Merge pull request #110672 from Profpatsch/lib-add-traceFnSeqNSilvan Mosberger2021-01-25
|\ \ | |/ |/| lib/debug: add traceFnSeqN
| * lib/debug: add traceFnSeqNProfpatsch2021-01-25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Immensely helpful when you want to see the changes a function makes to its value as it passes through. Example: ``` $ nix-instantiate --strict --eval -E '(with import ./lib; traceFnSeqN 2 "id" (x: x) { a.b.c = 3; })' trace: { fn = "id"; from = { a = { b = {…}; }; }; to = { a = { b = {…}; }; }; } { a = { b = { c = 3; }; }; } ```
* | treewide: fix double quoted strings in meta.descriptionvolth2021-01-24
| | | | | | | | Signed-off-by: Ben Siraphob <bensiraphob@gmail.com>
* | Merge pull request #100687 from spease/add-newer-xcode-hashesMatthew Bauer2021-01-23
|\ \ | | | | | | darwin: update xcode versions
| * \ Merge branch 'master' into add-newer-xcode-hashesSteven Pease2021-01-19
| |\ \
| * | | Update to XCode 12.3Steven Pease2021-01-19
| | | |
| * | | Add newer xcode versionsSteven Pease2020-10-15
| | | |
* | | | lib: Clean up how linux and gcc config is specifiedJohn Ericson2021-01-23
| |_|/ |/| | | | | | | | | | | | | | | | | Second attempt of 8929989614589ee3acd070a6409b2b9700c92d65; see that commit for details. This reverts commit 0bc275e63423456d6deb650e146120c39c1e0723.
* | | Revert "lib: Clean up how linux and gcc config is specified"Jonathan Ringer2021-01-22
| | | | | | | | | | | | | | | | | | | | | This is a stdenv-rebuild, and should not be merged into master This reverts commit 8929989614589ee3acd070a6409b2b9700c92d65.
* | | Merge pull request #107214 from Ericson2314/linux-config-cleanupJohn Ericson2021-01-22
|\ \ \ | | | | | | | | lib: Clean up how linux and gcc config is specified
| * | | lib: Clean up how linux and gcc config is specifiedJohn Ericson2021-01-21
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The `platform` field is pointless nesting: it's just stuff that happens to be defined together, and that should be an implementation detail. This instead makes `linux-kernel` and `gcc` top level fields in platform configs. They join `rustc` there [all are optional], which was put there and not in `platform` in anticipation of a change like this. `linux-kernel.arch` in particular also becomes `linuxArch`, to match the other `*Arch`es. The next step after is this to combine the *specific* machines from `lib.systems.platforms` with `lib.systems.examples`, keeping just the "multiplatform" ones for defaulting.
* / | lib/modules: Set submodule type for renamed option setsSilvan Mosberger2021-01-21
|/ / | | | | | | | | | | | | | | | | | | | | | | | | For renames like mkAliasOptionModule [ "services" "compton" ] [ "services" "picom" ] where the target is an option set (like services.picom) instead of a single option (like services.picom.enable), previously the renamed option type was unset, leading to it being `types.unspecified`. This changes it to be `types.submodule {}` instead, which makes more sense.
* | Merge pull request #104648 from samueldr/cleanup/kernelMajorJohn Ericson2021-01-18
|\ \ | | | | | | platforms.nix: Remove now unused kernelMajor
| * | platforms.nix: Remove now unused kernelMajorSamuel Dionne-Riel2020-11-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | The last use of `kernelMajor` in Nixpkgs was removed in 2018. Even then, I'm not positive it was actually in an exercised code path. AFAIUI this is now totally redundant and useless as it really was meant for the 2.4 -> 2.6 transition.
* | | Merge pull request #107417 from jtojnar/deprecate-unclear-gpl-licensesJan Tojnar2021-01-01
|\ \ \ | | | | | | | | licenses: Mark unclear GPL licenses explicitly deprecated
| * | | licenses: Mark unclear GPL licenses explicitly deprecatedJan Tojnar2020-12-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We recently switched to more explicit GPL license names in line with the SPDX change and GNU Foundation recommendations: https://www.gnu.org/licenses/identify-licenses-clearly.html This followed up older change to use the recommended SPDX ID https://github.com/NixOS/nixpkgs/commit/18a5e8c36b2681f5fc4aecd79f4cc723365d2d94 but using the `-only` variant for these deprecated licenses too makes it harder to check for them automatically. Let’s switch to the appropriate SPDX ID again.
* | | | Merge pull request #107999 from andir/platforms-arm-trusted-platformJohn Ericson2020-12-31
|\ \ \ \ | | | | | | | | | | lib/systems/platforms: treat missing cpu version as generic pcBase
| * | | | lib/systems/platforms: treat missing cpu version as generic pcBaseAndreas Rammhold2020-12-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since 40e7be1 all ARM platforms that didn't have a parsed cpu version (e.g. arm-none-eabi) would be handled as armv7l-hf-multiplatform which did break building arm-trusted-platform packages for some targets (e.g. rk3399). Using pcBase as fallback, instead of armv7l-hf-multiplatform, corresponds with the behaviour we had before 40e7be1.
* | | | | lib/systems: add emulator for mmixBen Siraphob2020-12-31
|/ / / /
* / / / lib.systems: update processor architecture infoFabián Heredia Montiel2020-12-23
|/ / /
* | | Merge pull request #97145 from lheckemann/initrd-improvementsLinus Heckemann2020-12-18
|\ \ \ | | | | | | | | Initrd improvements
| * | | lib/systems: fix kernelArch for x86_64Linus Heckemann2020-12-17
| | | | | | | | | | | | | | | | | | | | IA64 (Itanium) is something completely different and certainly not what we want! x86_64 code lives in arch/x86 just like "classic" x86.
* | | | Revert "Module-builtin assertions, disabling assertions and submodule ↵Silvan Mosberger2020-12-18
| | | | | | | | | | | | | | | | assertions"
* | | | Merge pull request #97023 from Infinisil/module-assertionsSilvan Mosberger2020-12-18
|\ \ \ \ | | | | | | | | | | Module-builtin assertions, disabling assertions and submodule assertions
| * | | | lib/modules: Prefix mkRemovedOptionModule & co. check namesSilvan Mosberger2020-12-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To avoid name clashes Co-authored-by: Robert Hensing <robert@roberthensing.nl>
| * | | | lib/modules: Introduce _module.checks.*.checkSilvan Mosberger2020-12-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously the .enable option was used to encode the condition as well, which lead to some oddness: - In order to encode an assertion, one had to invert it - To disable a check, one had to mkForce it By introducing a separate .check option this is solved because: - It can be used to encode assertions - Disabling is done separately with .enable option, whose default can be overridden without a mkForce
| * | | | lib/modules: _module.check should always be internalSilvan Mosberger2020-11-30
| | | | | | | | | | | | | | | | | | | | Honestly this option should probably just be removed
| * | | | lib/modules: Remove _module.checks.*.triggerPath as it's not necessarySilvan Mosberger2020-11-30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously this option was thought to be necessary to avoid infinite recursion, but it actually isn't, since the check evaluation isn't fed back into the module fixed-point.
| * | | | lib/modules: Rename _module.assertions to _module.checksSilvan Mosberger2020-11-30
| | | | |
| * | | | lib/tests: Add tests for module-builtin assertionsSilvan Mosberger2020-11-30
| | | | |
| * | | | lib/tests: Implement generalized checkConfigCodeOutErr for module testsSilvan Mosberger2020-11-30
| | | | |
| * | | | nixos/modules: Expose the internal module in the top-level documentationSilvan Mosberger2020-11-30
| | | | |