summary refs log tree commit diff
path: root/doc/builders/special
Commit message (Collapse)AuthorAge
* buildFHSUserEnv{Chroot,Bubblewrap}: link gsettings-schemas to the FHS locationArtturin2022-03-03
| | | | | We shouldn't need to use wrapGAppsHook in expressions that use this builder.
* mkShell: make it buildable (#153194)Jonas Chevalier2022-01-08
| | | | | | | | | | | | | | | | When I designed `mkShell`, I didn't have a good idea of what the output should look like and so decided to make the build fail. In practice, this causes quite a bit of confusion and complications because now the shell cannot be part of a normal package set without failing the CI as well. This commit changes that build phase to record all the build inputs in a file. That way it becomes possible to build it, makes sure that all the build inputs get built as well, and also can be used as a GC root. (by applying the same trick as #95536). The documentation has also been improved to better describe what mkShell does and how to use it.
* invalidateFetcherByDrvHash move docs to manualRobert Hensing2021-09-19
|
* buildFHSUserEnv: document `profile` parameterMauricio Scheffer2021-07-11
|
* nixos/*: replace alsa* aliasesVladimír Čunát2021-06-10
| | | | | | | The attributes got renamed in PR #126440 and in some places this caused evaluation errors, e.g. the tarball job was saying (locally) > attribute 'alsaUtils' missing, at /build/source/nixos/modules/services/audio/alsa.nix:6:4 and I suspect that trunk-combined jobset's failure to evaluate was also caused.
* mkShell: introduce packages argument (#122180)Jonas Chevalier2021-05-13
| | | | | | | | | | The distinction between the inputs doesn't really make sense in the mkShell context. Technically speaking, we should be using the nativeBuildInputs most of the time. So in order to make this function more beginner-friendly, add "packages" as an attribute, that maps to nativeBuildInputs. This commit also updates all the uses in nixpkgs.
* Convert fhs-environments from DocBook to CommonMarkAndersonTorres2020-12-16
|
* Convert mkShell from DocBook to CommonMarkAndersonTorres2020-12-16
|
* doc: move fhs and mkShell under builders/specialFrederik Rietdijk2019-10-21
In my opinion Functions should only contain pure functions. These are both meant to provide derivations so I put them under Builders. Don't know exactly *where* to put them so "special" it is...