summary refs log tree commit diff
path: root/doc
Commit message (Collapse)AuthorAge
...
* | | Merge pull request #125494 from siraben/remove-stdenv-libSandro2021-06-05
|\ \ \
| * | | coding-conventions: remove reference to stdenv.libBen Siraphob2021-06-03
| | |/ | |/|
* | | doc: Fix make in nix-shellJan Tojnar2021-06-05
| | | | | | | | | | | | When running make manually, makeFlags will not be passed. Let’s just use an environment variable.
* | | buildGoModule/buildGoPackage: Introduce ldflags argumentSilvan Mosberger2021-06-05
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | Previously it was not possible to define multiple ldflags, since only the last definition applies, and there's some quoting issues with `buildFlagsArray`. With the new `ldflags` argument it's possible to do this, e.g. ldflags = drv.ldflags or [] ++ [ "-X main.Version=1.0" ] can now properly append a flag without clearing all previous ldflags.
* | treewide: setuptools_scm -> setuptools-scmSandro Jäckel2021-06-03
| |
* | doc: fix incorrect use of cargoDepsDaniël de Kok2021-06-01
|/ | | | Thanks to @bjornfor for reporting this error!
* Merge pull request #124739 from SFrijters/doc-fetchpatchMaximilian Bosch2021-05-28
|\ | | | | doc/coding-conventions: Add documentation for fetchpatch optional arguments
| * doc/coding-conventions: Add documentation for fetchpatch optional argumentsStefan Frijters2021-05-28
| |
* | Merge pull request #122158 from danieldk/import-cargo-lockDaniël de Kok2021-05-28
|\ \ | | | | | | rustPlatform.buildRustPackage: support direct use of Cargo.lock
| * | rustPlatform.buildRustPackage: support direct use of Cargo.lockDaniël de Kok2021-05-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This change introduces the cargoLock argument to buildRustPackage, which can be used in place of cargo{Sha256,Hash} or cargoVendorDir. It uses the importCargoLock function to build the vendor directory. Differences compared to cargo{Sha256,Hash}: - Requires a Cargo.lock file. - Does not require a Cargo hash. - Retrieves all dependencies as fixed-output derivations. This makes buildRustPackage much easier to use as part of a Rust project, since it does not require updating cargo{Sha256,Hash} for every change to the lock file.
| * | rustPlatform.importCargoLock: initDaniël de Kok2021-05-28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This function can be used to create an output path that is a cargo vendor directory. In contrast to e.g. fetchCargoTarball all the dependent crates are fetched using fixed-output derivations. The hashes for the fixed-output derivations are gathered from the Cargo.lock file. Usage is very simple, e.g.: importCargoLock { lockFile = ./Cargo.lock; } would use the lockfile from the current directory. The implementation of this function is based on Eelco Dolstra's import-cargo: https://github.com/edolstra/import-cargo/blob/master/flake.nix Compared to upstream: - We use fetchgit in place of builtins.fetchGit. - Sync to current cargo vendoring.
* | | Merge pull request #120319 from fricklerhandwerk/docs-to-markdownRyan Mulligan2021-05-27
|\ \ \ | |_|/ |/| | doc/using: convert to markdown
| * | docs/using: shellSession -> ShellSessionfricklerhandwerk2021-04-25
| | | | | | | | | | | | Co-authored-by: Jan Tojnar <jtojnar@gmail.com>
| * | doc/using: convert to markdownfricklerhandwerk2021-04-23
| | |
* | | Merge pull request #124273 from NixOS/backporting-actionDomen Kožar2021-05-25
|\ \ \ | | | | | | | | Add backporting action
| * | | backport action: document the workflowDomen Kožar2021-05-25
| | | |
* | | | beam-packages: drop erlang R18 R19 R20 and cuterThomas Depierre2021-05-25
| | | |
* | | | beam: fix documentationhappysalada2021-05-25
|/ / /
* | | elixir: add deprecation schedule docshappysalada2021-05-24
| | |
* | | doc/submitting-changes: should -> mustAlyssa Ross2021-05-23
| | | | | | | | | | | | | | | | | | | | | To me, as a native English speaker, this doesn't change the meaning of the sentence at all. But to a non-native speaker, this can read like the staging-next rules are only recommendations. Let's make this clearer.
* | | Merge pull request #123111 from hercules-ci/writeDirectReferencesToFileRobert Hensing2021-05-17
|\ \ \ | | | | | | | | writeDirectReferencesToFile and maintenance
| * | | writeReferencesToFile: docs and testsRobert Hensing2021-05-15
| | | |
| * | | writeDirectReferencesToFile: initRobert Hensing2021-05-15
| | | |
* | | | doc: Add anchors to dhall sectionsJan Tojnar2021-05-17
| | | | | | | | | | | | This will ensure the sections have stable links as well as prevent conflicts (pandoc uses heading text for ids and DocBook requires unique ids across the book).
* | | | Merge pull request #121252 from NixOS/SuperSandro2000-patch-1Sandro2021-05-17
|\ \ \ \ | | | | | | | | | | doc/contributing: add unnecessary string conversions
| * | | | doc/contributing: add unnecessary string conversionsSandro2021-04-30
| | | | |
* | | | | restore buildMix and its bootstrapper (#122374)ydlr2021-05-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * restore mixBuild remove bootstrapper by going through ERL_LIBS mix will use ERL_LIBS to find compiled dependencies Co-authored-by: Zach <zach@hipcreativeinc.com>
* | | | | dhall: Document language support in the Nixpkgs manual (#123051)Gabriel Gonzalez2021-05-15
| |/ / / |/| | |
* | | | 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.
* | | | rebar3: add rebar3WithPluginsDavid2021-05-11
| | | |
* | | | nixpkgs-manual: lib.attrsets.mapAttrsToList returns a list (#122179)Erlend Pedersen2021-05-08
| | | |
* | | | gnome: rename from gnome3Jan Tojnar2021-05-08
| | | | | | | | | | | | | | | | Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
* | | | wrapGAppsHook4: initJan Tojnar2021-05-05
| |_|/ |/| |
* | | Merge pull request #120534 from davidak/package-testsLuke Granger-Brown2021-05-01
|\ \ \ | | | | | | | | doc: add instructions for creating package tests
| * | | doc: add instructions for creating package testsdavidak2021-04-24
| | |/ | |/|
* | | doc/contributing: clarify stdenv.lib deprecationSandro2021-04-30
| |/ |/|
* | Merge pull request #110491 from neosimsim/agda-doc-fix-install-commandDomen Kožar2021-04-27
|\ \ | | | | | | agda: fix code snippet for installing Agda
| * | agda: extend agda language frameworks manual sectionAlexander Ben Nasrallah2021-04-23
| |/ | | | | | | | | - add code snippets - be more detailed on some aspects
* | doc/submitting-changes: remove incorrect remarkPatrick Hilhorst2021-04-26
| | | | | | | | Tests don't only apply to NixOS modules, see for example tests/vscodium
* | Merge pull request #119092 from numinit/update-androidenvJohn Ericson2021-04-25
|\ \ | | | | | | androidenv: Allow multiple ndkVersions to be specified
| * | androidenv: Allow multiple ndkVersions to be specifiedMorgan Jones2021-04-24
| | | | | | | | | | | | | | | | | | Android is deprecating ndk.dir in favor of specifying exact NDK version in Gradle configuration. Ensure that we can support multiple NDKs, and link them into the location the Android Gradle Plugin expects.
* | | Merge branch 'master' into staging-nextJan Tojnar2021-04-25
|\ \ \ | | | | | | | | | | | | Choose binwalk 2.3.1, 27 is legacy version for Python 2.
| * \ \ Merge pull request #120231 from bobby285271/masterJan Tojnar2021-04-24
| |\ \ \ | | |_|/ | |/| | doc: Convert builders/images/* to markdown
| | * | doc/builders/images/*.xml: Convert to markdownBobby Rong2021-04-24
| | | |
* | | | Merge remote-tracking branch 'nixpkgs/master' into staging-nextAlyssa Ross2021-04-23
|\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: pkgs/development/python-modules/pyvex/default.nix pkgs/top-level/python-packages.nix
| * | | doc/contributing/*.xml: Convert to markdownBobby Rong2021-04-23
| |/ /
* | | Merge master into staging-nextgithub-actions[bot]2021-04-22
|\| |
| * | Merge pull request #108919 from bryanasdev000/doc-dlibSandro2021-04-22
| |\ \ | | | | | | | | dlib: Update doc to use CommonMark
| | * | doc/builders/packages/dlib.xml: Convert to markdownBryan A. S2021-04-13
| | | | | | | | | | | | | | | | Signed-off-by: Bryan A. S <bryanasdev000@gmail.com>
| * | | Merge pull request #118269 from midchildan/feat/fuse/add-darwinSandro2021-04-22
| |\ \ \