about summary refs log tree commit diff
path: root/lib/default.nix
AgeCommit message (Collapse)AuthorFilesLines
2018-11-22lib: implement `setPrio`Jan Malakhovski1-1/+1
For when `hiPrio` and `lowPrio` are not enough.
2018-09-06lib: move assertMsg and assertOneOf to their own library fileProfpatsch1-4/+5
Since the `assertOneOf` uses `lib.generators`, they are not really trivial anymore and should go into their own library file.
2018-09-06lib/trivial: add assertOneOfProfpatsch1-1/+1
2018-09-06lib/trivial: add assertMsgProfpatsch1-1/+2
2018-08-21as requested:Aaron Andersen1-1/+1
- moved function into strings.nix - renamed function from makePerl5Lib - removed duplicates entries in the resulting value - rewrote the function from scratch after learning a few things (much cleaner now)
2018-06-10lib: bitAnd, bitOr, bitXor (bitsize-agnostic fallback function) (#41491)volth1-4/+4
* lib: bitAnd, bitOr, bitXor * lib: test for bitAnd, bitOr, bitXor * lib: bitsize-agnostic zipIntBits * lib: bitNot * lib: bitNot
2018-06-10lib: add groupBy (#38612)volth1-1/+1
2018-06-05Revert "lib: bitAnd, bitOr, bitXor"Profpatsch1-4/+4
2018-06-01lib: bitAnd, bitOr, bitXorvolth1-4/+4
2018-05-11lib: Add more configure flag helpersJohn Ericson1-19/+20
Add with/without to match enable/disable, and add `--{enable,with}-key=value` versions of both.
2018-04-28treewide: rename version attributesMaximilian Bosch1-1/+1
As suggested in https://github.com/NixOS/nixpkgs/pull/39416#discussion_r183845745 the versioning attributes in `lib` should be consistent to `nixos/version` which implicates the following changes: * `lib.trivial.version` -> `lib.trivial.release` * `lib.trivial.suffix` -> `lib.trivial.versionSuffix` * `lib.nixpkgsVersion` -> `lib.version` As `lib.nixpkgsVersion` is referenced several times in `NixOS/nixpkgs`, `NixOS/nix` and probably several user's setups. As the rename will cause a notable impact it's better to keep `lib.nixpkgsVersion` as alias with a warning yielded by `builtins.trace`.
2018-04-27lib/debug: remove the deprecated strict functionProfpatsch1-1/+1
The grace period was long enough.
2018-04-27lib/debug: add traceValFn, traceValSeqFn, traceValSeqNFnProfpatsch1-4/+5
Being able to modify the value on-the-fly before printing is very useful in practice.
2018-04-08Merge pull request #38611 from volth/nat-sortJörg Thalheim1-1/+1
lib: add naturalSort
2018-04-08lib: add naturalSortvolth1-1/+1
2018-04-07lib: make extensibleSilvan Mosberger1-3/+5
This allows the lib fixed point to be extended with myLib = lib.extend (self: super: { foo = "foo"; }) With this it's possible to have the new modified lib attrset available to all modules when using evalModules myLib.evalModules { modules = [ ({ lib, ... }: { options.bar = lib.mkOption { default = lib.foo; }; }) ]; } => { config = { bar = "foo"; ... }; options = ...; }
2018-03-18Merge pull request #34444 from obsidiansystems/meta-checkJohn Ericson1-1/+1
lib: Fix #30902
2018-03-15lib, stdenv: Check `meta.platforms` against host platform and be open worldJohn Ericson1-1/+1
First, we need check against the host platform, not the build platform. That's simple enough. Second, we move away from exahustive finite case analysis (i.e. exhaustively listing all platforms the package builds on). That only work in a closed-world setting, where we know all platforms we might build one. But with cross compilation, we may be building for arbitrary platforms, So we need fancier filters. This is the closed world to open world change. The solution is instead of having a list of systems (strings in the form "foo-bar"), we have a list of of systems or "patterns", i.e. attributes that partially match the output of the parsers in `lib.systems.parse`. The "check meta" logic treats the systems strings as an exact whitelist just as before, but treats the patterns as a fuzzy whitelist, intersecting the actual `hostPlatform` with the pattern and then checking for equality. (This is done using `matchAttrs`). The default convenience lists for `meta.platforms` are now changed to be lists of patterns (usually a single pattern) in `lib/systems/for-meta.nix` for maximum flexibility under this new system. Fixes #30902
2018-03-06rename lib/maintainers-list.nix into maintainers/maintainer-list.nixJan Malakhovski1-1/+1
Many commits unrelated to `lib` touch that file, this will make `git log ./lib` much saner. This is what I meant in https://github.com/NixOS/nixpkgs/pull/36119#issuecomment-370184101.
2018-03-04Merge pull request #36168 from ryantm/majorminorJörg Thalheim1-1/+1
a single version attribute for expressions previously using "majorVersion"
2018-03-04lib: add versions libraryRyan Mulligan1-1/+1
2018-03-04Revert "Revert "Convert maintainer file entries to attributes, add github ↵Graham Christensen1-1/+1
handles""
2018-03-03Revert "Convert maintainer file entries to attributes, add github handles"Graham Christensen1-1/+1
This reverts commit aa47bac04f06aeea993dc2e2cc6649fde4f31ed7.
2018-03-03Revert "lib/maintainers: rename file to maintainers-list.nix"Graham Christensen1-1/+1
This reverts commit 24684008df7b7c748eeca64de1270a0e6c460a61.
2018-03-04lib/maintainers: rename file to maintainers-list.nixProfpatsch1-1/+1
Based on a request by @oxij: “Can we also rename this file to `maintainers/maintainers-list.nix` while we at this? Motivation: much saner `git log ./lib`.”
2018-03-04Convert maintainer file entries to attributes, add github handlesProfpatsch1-1/+1
Based on https://github.com/NixOS/nixpkgs/pull/34842, the nix-instantiate output was pretty-printed and the validity of the github handles manually verified, by automatically checking whether the user handles exist on github (https://github.com/userhandle, status 200 or 404). Each handle under 5 characters was manually checked (because the collision probability with non-maintainer accounts is high), each missing entry was manually researched. The script used is kept in `maintainers/scripts` as an example of how to work with the mainainers list through nix’ JSON interface.
2018-03-03lib.addPassthru: removed as scheduledVladimír Čunát1-1/+1
2018-02-09lib: implement `compare`, `splitByAndCompare`, and `compareLists`Jan Malakhovski1-3/+4
2018-01-31Add setFunctionArgs lib function.Shea Levy1-2/+2
Among other things, this will allow *2nix tools to output plain data while still being composable with the traditional callPackage/.override interfaces.
2018-01-14Merge #33057: stdenv meta checks: make them lazyVladimír Čunát1-1/+2
Closes #22277 - it's superseded; I have some WIP on evaluation performance, but best do that in a separate PR/thread.
2018-01-11callCabal2nix: Fix calling with a path in the store.Shea Levy1-1/+1
2018-01-09Added `lib.cleanSourceWith` as composable version of `filterSource`Will Fancher1-1/+1
2018-01-03lib: generalize `addPassthru` to `extendDerivation`Jan Malakhovski1-1/+2
2017-12-23Revert "nixos: doc: implement related packages in the manual"Graham Christensen1-3/+3
2017-12-07lib: implement `compare`, `splitByAndCompare`, and `compareLists`Jan Malakhovski1-3/+3
2017-11-19lib: delete reference to lib/sandbox.nixOrivej Desh1-1/+0
after it was deleted in 0fe7bde3d88027977a07a24baee98d2ecc07222f
2017-09-29Revert "Fix evaluation"Shea Levy1-1/+1
Reverting #27319 This reverts commit 751d397ad486a84b93907345124f550e3b32427c.
2017-09-29Revert "Fix tarball"Shea Levy1-2/+1
Reverting #27319 This reverts commit 9ce7175cfe9edf5f7eb9a9f299807047a4feeaf1.
2017-09-29Revert "Avoid polluting lib namespace unncessarily"Shea Levy1-2/+3
Reverting #27319 This reverts commit 01a3f0b8aabdb321b15dc7cc0e2287ce8232f797.
2017-09-28Avoid polluting lib namespace unncessarilyShea Levy1-3/+2
2017-09-28Fix tarballShea Levy1-1/+2
2017-09-28Fix evaluationShea Levy1-1/+1
2017-09-16Convert libs to a fixed-pointGraham Christensen1-52/+121
This does break the API of being able to import any lib file and get its libs, however I'm not sure people did this. I made this while exploring being able to swap out docFn with a stub in #2305, to avoid functor performance problems. I don't know if that is going to move forward (or if it is a problem or not,) but after doing all this work figured I'd put it up anyway :) Two notable advantages to this approach: 1. when a lib inherits another lib's functions, it doesn't automatically get put in to the scope of lib 2. when a lib implements a new obscure functions, it doesn't automatically get put in to the scope of lib Using the test script (later in this commit) I got the following diff on the API: + diff master fixed-lib 11764a11765,11766 > .types.defaultFunctor > .types.defaultTypeMerge 11774a11777,11778 > .types.isOptionType > .types.isType 11781a11786 > .types.mkOptionType 11788a11794 > .types.setType 11795a11802 > .types.types This means that this commit _adds_ to the API, however I can't find a way to fix these last remaining discrepancies. At least none are _removed_. Test script (run with nix-repl in the PATH): #!/bin/sh set -eux repl() { suff=${1:-} echo "(import ./lib)$suff" \ | nix-repl 2>&1 } attrs_to_check() { repl "${1:-}" \ | tr ';' $'\n' \ | grep "\.\.\." \ | cut -d' ' -f2 \ | sed -e "s/^/${1:-}./" \ | sort } summ() { repl "${1:-}" \ | tr ' ' $'\n' \ | sort \ | uniq } deep_summ() { suff="${1:-}" depth="${2:-4}" depth=$((depth - 1)) summ "$suff" for attr in $(attrs_to_check "$suff" | grep -v "types.types"); do if [ $depth -eq 0 ]; then summ "$attr" | sed -e "s/^/$attr./" else deep_summ "$attr" "$depth" | sed -e "s/^/$attr./" fi done } ( cd nixpkgs #git add . #git commit -m "Auto-commit, sorry" || true git checkout fixed-lib deep_summ > ../fixed-lib git checkout master deep_summ > ../master ) if diff master fixed-lib; then echo "SHALLOW MATCH!" fi ( cd nixpkgs git checkout fixed-lib repl .types )
2017-05-29lib: Move fixed-point combinators out of trivialJohn Ericson1-3/+5
Trivia != prelude. This is a better organized and less likely to scare off new contributors.
2017-04-17Merge pull request #24610 from Ericson2314/platform-normalizationJohn Ericson1-4/+5
Platform normalization
2017-04-17lib: Collect system/platform related filesJohn Ericson1-4/+5
Previously, platforms was a random thing in top-level
2017-04-12/lib/default.nix: Add file docstring & unit test hintProfpatsch1-0/+5
2017-03-04Add locateDominatingFile lib functionShea Levy1-1/+4
2016-11-17lib: add ini configuration generatorProfpatsch1-1/+2
Many configurations are INI-style files. Attribute sets can be mapped rather painlessly to the INI format. This adds a function toINI inside a new generators library section. Also, unit tests for the default values are provided.
2016-09-17lib/fetchers.nix: factor out impure proxy vars (#18702)Profpatsch1-1/+2
Apparently everyone just copied those variables, instead of creating a library constant for them. Some even removed the comment. -.-