| Commit message (Expand) | Author | Age | Files | Lines |
| * | php: update documentationorigin/php/add-new-builder | Pol Dellaiera | 2023-07-10 | 1 | -1/+139 |
| * | Merge pull request #242312 from NixOS/doc-lib-render-fixedPoints•••doc: Render lib.fixedPoints | Robert Hensing | 2023-07-08 | 2 | -7/+11 |
| |\ |
|
| | * | doc: Render lib.fixedPoints | Robert Hensing | 2023-07-08 | 2 | -7/+11 |
| * | | Merge pull request #240860 from Atemu/fhsenv-no-multiarch•••buildFHSEnv: disable multiArch by default | Atemu | 2023-07-08 | 1 | -0/+2 |
| |\ \ |
|
| | * | | buildFHSEnv: add multiArch flag•••The intention is to allow the user control over whether 32bit deps are supposed
to be included in the fhsenv
| Atemu | 2023-07-01 | 1 | -0/+2 |
| * | | | Merge pull request #233804 from lilyinstarlight/feature/npm-workspaces•••buildNpmPackage: add npmWorkspace and npmPruneFlags args | Mario Rodas | 2023-07-08 | 1 | -1/+3 |
| |\ \ \
| |_|/
|/| | |
|
| | * | | doc/languages-frameworks/javascript: add npmWorkspace and npmPruneFlags args | Lily Foster | 2023-06-29 | 1 | -1/+3 |
| | |/ |
|
| * | | darwin.linux-builder: rename from `darwin.builder` | Michael Hoang | 2023-07-06 | 1 | -3/+7 |
| * | | darwin.builder: use port 31022 by default | Michael Hoang | 2023-07-06 | 1 | -4/+10 |
| * | | Merge pull request #239636 from pennae/nixpkgs-manual-nrd•••doc: dedocbookify nixpkgs manual | pennae | 2023-07-03 | 42 | -821/+480 |
| |\ \ |
|
| | * | | doc: inline doc-support to main drv•••separating function docs out like this makes it less clear how library
documentation is generated and integrated into the build. if in the
future more parts of nixpkgs use nixdoc it will make sense to have all
information about library doc generation in the same place.
| pennae | 2023-07-01 | 2 | -31/+18 |
| | * | | doc: pull option docs out of doc-support•••this leaves doc-support as a simple wrapper around function docs. this
wrapper will go away very soon as well.
| pennae | 2023-07-01 | 3 | -28/+27 |
| | * | | doc: remove remnants of docbook times•••all xml-related tooling can go away. shell.nix is no longer useful since
the makefile is gone and the build runs entirely via a derivation, and
gitignore is thus also no longer that useful. it may filter out some
swap files, but its main reason to exist (keeping generated files out of
a concurrent build of the derivation) has gone away.
| pennae | 2023-07-01 | 12 | -323/+1 |
| | * | | doc: render nixpkgs manual with nrd•••also updates nixdoc to 2.3.0. the nixdoc update is not a separate commit
because that would leave the manual build broken for one commit,
potentially breaking bisects and rebases.
| pennae | 2023-07-01 | 32 | -400/+389 |
| | * | | doc-support: don't expose locationsXml•••nothing except function docs uses this, so we need not expose it. we'll
be reworking this entire section of the build anyway, with the target of
breaking up doc-support as it is now.
| pennae | 2023-07-01 | 2 | -5/+8 |
| | * | | doc: build placeholder epub in its own derivation•••mostly to clean up the main manual build makefile and derivation a bit.
not technically necessary, but will make life easier later.
| pennae | 2023-07-01 | 2 | -41/+44 |
| * | | | Merge pull request #239005 from Artturin/setorfunoverr•••stdenv: let overrideAttrs accept attrset OR function | Robert Hensing | 2023-07-01 | 1 | -4/+20 |
| |\ \ \ |
|
| | * | | | doc/using/overrides: Relate addition to preceding text | Robert Hensing | 2023-07-01 | 1 | -1/+3 |
| | * | | | doc/using/overrides: it is possible to use previous arguments in .override | Artturin | 2023-06-30 | 1 | -0/+6 |
| | * | | | stdenv: let overrideAttrs accept attrset OR function•••Makes overrideAttrs usable in the same way that `override` can be used.
It allows the first argument of `overrideAttrs` to be either a function
or an attrset, instead of only a function:
hello.overrideAttrs (old: { postBuild = "echo hello"; })
hello.overrideAttrs { postBuild = "echo hello"; }
Previously only the first example was possible.
Co-authored-by: adisbladis <adisbladis@gmail.com>
Co-authored-by: matthewcroughan <matt@croughan.sh>
| Artturin | 2023-06-30 | 1 | -4/+12 |
| * | | | | doc: add a note about automatic maven upgrades (#238774) | Tillerino | 2023-06-30 | 1 | -0/+33 |
| | |/ /
|/| | |
|
| * | | | doc/haskell: FAQ entry on changing profiling settings globally•••This is actually relatively complicated to achieve, since it involves
overriding GHC on e.g. aarch64-darwin, so the FAQ entry seems warranted.
It's also a good exercise to me, since it demonstrates some problems
with the overriding infrastructure, i.e. that it has a tendency to
inherit the pkgs fixpoint from prev. An example of this problem is
https://github.com/NixOS/nixpkgs/issues/235960, but it has different
manifestations as well. Awareness of this will also help writing the
other sections on overriding.
How complicated it is, seems to be further incentive to go ahead with
https://github.com/NixOS/nixpkgs/pull/239548 as well.
| sternenseemann | 2023-06-30 | 1 | -0/+118 |
| * | | | doc/haskell: document {enable,disable}*Profiling functions | sternenseemann | 2023-06-30 | 1 | -0/+12 |
| * | | | doc/languages-frameworks/python: don't use full `pkgs` in attrs | amesgen | 2023-06-29 | 1 | -9/+12 |
| | |/
|/| |
|
| * | | Merge pull request #230157 from teutat3s/buildnpmpackage-docs•••buildNpmPackage: document dontNpmBuild option | Lily Foster | 2023-06-28 | 1 | -0/+2 |
| |\ \ |
|
| | * | | buildNpmPackage: document dontNpmBuild option•••document dontNpmInstall option
| teutat3s | 2023-06-28 | 1 | -0/+2 |
| * | | | Merge pull request #239622 from corngood/dotnet-misc•••dotnet: misc fixes | Sandro | 2023-06-28 | 1 | -1/+1 |
| |\ \ \ |
|
| | * | | | buildDotnetModule: make fetch-deps find output path automatically | David McFarland | 2023-06-24 | 1 | -1/+1 |
| * | | | | Merge master into haskell-updates | github-actions[bot] | 2023-06-23 | 2 | -4/+4 |
| |\| | | |
|
| | * | | | Merge pull request #233422 from mdarocha/crossgen-fix•••buildDotnetModule: support ReadyToRun and native binaries inside nuget files | Sandro | 2023-06-22 | 1 | -3/+3 |
| | |\ \ \ |
|
| | | * | | | buildDotnetModule: pass runtimeId whenever possible and disable trimming when...•••This fixes up some build errors
| mdarocha | 2023-06-21 | 1 | -3/+3 |
| | | | |/
| | |/| |
|
| | * / | | php: drop PHP 8.0•••Closes #224505
| Thomas Gerbet | 2023-06-21 | 1 | -1/+1 |
| | |/ / |
|
| * | | | Merge master into haskell-updates | github-actions[bot] | 2023-06-21 | 1 | -0/+59 |
| |\| | |
|
| | * | | buildDotnetGlobalTool: document dotnet global tools and their packaging | mdarocha | 2023-06-20 | 1 | -0/+57 |
| | * | | buildDotnetModule: add useDotnetFromEnv option•••This causes an alternative wrapper to be used, that takes the dotnet
runtime from the environment.
| mdarocha | 2023-06-20 | 1 | -0/+2 |
| * | | | Merge master into haskell-updates | github-actions[bot] | 2023-06-16 | 1 | -1/+0 |
| |\| | |
|
| | * | | buildNimPackage: doCheck by default | Emery Hemingway | 2023-06-14 | 1 | -1/+0 |
| * | | | Merge remote-tracking branch 'origin/master' into haskell-updates | sternenseemann | 2023-06-14 | 1 | -24/+16 |
| |\| | |
|
| | * | | buildNimPackage: refactor to use overlay-style overrideAttrs•••Make buildNimPackage cleaner and more efficient. Also encourage
the use of a "buildNimPackage (finalAttrs: {…})" pattern.
| Emery Hemingway | 2023-06-14 | 1 | -24/+16 |
| * | | | Merge master into haskell-updates | github-actions[bot] | 2023-06-14 | 32 | -147/+75 |
| |\| | |
|
| | * | | Merge pull request #237068 from pennae/manual-normalization | Valentin Gagarin | 2023-06-13 | 32 | -147/+75 |
| | |\ \ |
|
| | | * | | doc: don't use docbook program listings/callouts•••nixos-render-docs does not support this, and since the examples are
small there isn't that much value in callouts here. change them to
simple MD code blocks and lists instead.
| pennae | 2023-06-10 | 2 | -73/+23 |
| | | * | | doc: normalize markdown for nixos-render-docs•••pandoc recognizes `::: note` admonitions, nixos-render-docs only
recognizes `::: {.note}`. surprisingly pandoc also emits the correct
docbook tags for `[](#xref)`s, so we can use that too.
| pennae | 2023-06-10 | 3 | -5/+6 |
| | | * | | doc: make sure section depths are consecutive•••skipping heading levels (eg from # to ###, or starting at ###) is legal
in pandoc, but not in nixos-render-docs. pandoc acts as though section
levels *were* consecutive, nixos-render-docs prefers to tell people not
to do that kind of thing because it can make documents more fragile.
| pennae | 2023-06-10 | 25 | -58/+35 |
| | | * | | doc: add missing section IDs | pennae | 2023-06-10 | 2 | -11/+11 |
| * | | | | Merge pull request #237028 from maralorn/separate-bin•••haskellPackages: Use separate bin output for multiple packages | maralorn | 2023-06-13 | 1 | -1/+1 |
| |\ \ \ \
| |/ / /
|/| | | |
|
| | * | | | haskellPackages: Use separate bin output for multiple packages | maralorn | 2023-06-11 | 1 | -1/+1 |
| | |/ / |
|
| * | | | Merge pull request #237237 from pennae/epubstub | Valentin Gagarin | 2023-06-12 | 2 | -7/+28 |
| |\ \ \ |
|
| | * | | | doc: stub out epub manual•••same reasoning as for the nixos manual.
| pennae | 2023-06-12 | 2 | -7/+28 |
| * | | | | doc/languages-frameworks/python: add missing back quote | Lele Gaifax | 2023-06-12 | 1 | -1/+1 |
| |/ / / |
|