| Commit message (Expand) | Author | Age | Files | Lines |
| * | doc: note how to quickly get started with elm | Domen Kožar | 2019-04-09 | 1 | -0/+4 |
| * | Merge pull request #58160 from worldofpeace/python-doc/cleanup•••doc/python: cleanup examples, references | worldofpeace | 2019-04-08 | 1 | -80/+76 |
| |\ |
|
| | * | fix Including a derivation using callPackage•••The example didn't use pkgs.
| worldofpeace | 2019-03-24 | 1 | -6/+5 |
| | * | fixup! doc/python: cleanup examples, references | worldofpeace | 2019-03-24 | 1 | -4/+4 |
| | * | doc/python: cleanup examples, references | worldofpeace | 2019-03-22 | 1 | -70/+67 |
| * | | Merge pull request #58360 from xtruder/pkgs/dockerTools/nix-prefetch-docker•••dockerTools: add nix-prefetch-docker script | Jaka Hudoklin | 2019-04-06 | 1 | -12/+29 |
| |\ \ |
|
| | * | | dockerTools: add nix-prefetch-docker script | Jaka Hudoklin | 2019-04-06 | 1 | -12/+29 |
| * | | | Merge pull request #36886 from veprbl/symlinkJoin_doc•••doc: mention symlinkJoin in multiple-outputs section | Dmitry Kalinkin | 2019-03-30 | 1 | -0/+7 |
| |\ \ \ |
|
| | * | | | manual: mention symlinkJoin in multiple-outputs section | Dmitry Kalinkin | 2019-03-30 | 1 | -0/+7 |
| * | | | | Merge pull request #56786 from Ma27/dlib-avx-fixes•••dlib: improve AVX configuration | Maximilian Bosch | 2019-03-30 | 1 | -0/+27 |
| |\ \ \ \ |
|
| | * | | | | dlib: add flag to disable AVX support•••Especially older hardware doesn't support AVX instructions. DLib is
still functional there, but significantly slower[1].
By setting `avxInstructions` to false, DLib will be compiled without
this feature.
[1] http://dlib.net/compile.html
| Maximilian Bosch | 2019-03-03 | 1 | -0/+27 |
| * | | | | | dockerTools: add finalImageName parameter for pullImage | Jaka Hudoklin | 2019-03-26 | 1 | -7/+16 |
| * | | | | | manual: Fix typos
•••
Thanks @matthewbauer!
Co-Authored-By: Ericson2314 <git@JohnEricson.me> | John Ericson | 2019-03-25 | 2 | -18/+18 |
| * | | | | | manual: Document `pkgsFooBar` and more•••There was a bunch of stuff in the cross section that haddn't had any
attention in a while. I might need to slim it down later, but this is
good for now.
| John Ericson | 2019-03-24 | 2 | -87/+299 |
| * | | | | | manual: Auto reformat | John Ericson | 2019-03-24 | 3 | -26/+25 |
| * | | | | | manual: Make sure building doesn't need recursive nix•••$(shell ...) looks a little sketch like it will be run no matter what.
And there are problems building the manual on darwin so hopefully this
fixes them.
| John Ericson | 2019-03-24 | 1 | -6/+5 |
| | |_|_|/
|/| | | |
|
| * | | | | doc/python: remove unnecessary let statement | Felix Biggs | 2019-03-22 | 1 | -15/+14 |
| * | | | | Merge pull request #57076 from Mic92/nix-review•••doc/reviewing-contributions: nix-review instead of nox-review | Jörg Thalheim | 2019-03-22 | 2 | -16/+16 |
| |\ \ \ \
| |_|_|/
|/| | | |
|
| | * | | | doc/reviewing-contributions: nix-review instead of nox-review•••It is faster, handles more edge cases and allows to test/review the built
packages interactively.
| Jörg Thalheim | 2019-03-20 | 2 | -16/+16 |
| | |/ / |
|
| * | | | Add word `debug(ging)` to breakpointHook description for discoverability | deliciouslytyped | 2019-03-15 | 1 | -1/+2 |
| * | | | buildGoModule: function for packaging Go modules•••The function buildGoModule builds Go programs managed with Go modules. It builds
a Go module through a two phase build:
- An intermediate fetcher derivation. This derivation will be used to
fetch all of the dependencies of the Go module.
- A final derivation will use the output of the intermediate derivation
to build the binaries and produce the final output.
| Wael M. Nasreddine | 2019-03-14 | 1 | -93/+174 |
| * | | | doc: format the documentation (#57102) | Wael Nasreddine | 2019-03-08 | 17 | -762/+762 |
| |/ / |
|
| * | | Merge staging-next into master | Frederik Rietdijk | 2019-03-01 | 1 | -4/+18 |
| |\ \ |
|
| | * \ | Merge master into staging-next | Frederik Rietdijk | 2019-02-24 | 2 | -0/+122 |
| | |\ \ |
|
| | * | | | buildPythonPackage: always export `LANG=C.UTF-8` | Frederik Rietdijk | 2019-02-23 | 1 | -1/+0 |
| | * | | | buildPythonPackage: initial support for PEP 517 | Frederik Rietdijk | 2019-02-23 | 1 | -1/+1 |
| | * | | | Merge staging into python-unstable | Frederik Rietdijk | 2019-02-21 | 2 | -0/+79 |
| | |\ \ \ |
|
| | * | | | | buildPython*: enable strictDeps | Frederik Rietdijk | 2019-02-17 | 1 | -2/+17 |
| * | | | | | Merge pull request #56408 from Mic92/runtime-shell•••treewide: use runtimeShell instead of stdenv.shell whenever possible | John Ericson | 2019-02-26 | 1 | -2/+2 |
| |\ \ \ \ \ |
|
| | * | | | | | treewide: use runtimeShell instead of stdenv.shell whenever possible•••Whenever we create scripts that are installed to $out, we must use runtimeShell
in order to get the shell that can be executed on the machine we create the
package for. This is relevant for cross-compiling. The only use case for
stdenv.shell are scripts that are executed as part of the build system.
Usages in checkPhase are borderline however to decrease the likelyhood
of people copying the wrong examples, I decided to use runtimeShell as well.
| Jörg Thalheim | 2019-02-26 | 1 | -2/+2 |
| | | |_|/ /
| |/| | | |
|
| * / | | | | doc/cross-compilation: fix typo•••Add missing verb. | Lorenzo | 2019-02-26 | 1 | -1/+1 |
| |/ / / / |
|
| * | | | | Merge pull request #54693 from tilpner/appimage-tools•••appimageTools: init | Graham Christensen | 2019-02-23 | 2 | -0/+122 |
| |\ \ \ \
| |_|/ /
|/| | | |
|
| | * | | | appimageTools: init•••The appimageTools attrset contains utilities to prevent
the usage of appimage-run to package AppImages, like done/attempted
in #49370 and #53156.
This has the advantage of allowing for per-package environment changes,
and extracts into the store instead of the users home directory.
The package list was extracted into appimageTools to prevent
duplication.
| tilpner | 2019-02-23 | 2 | -0/+122 |
| * | | | | nix-gitignore: init at v3.0.0 (#46112)•••closes siers/nix-gitignore#6 | Raitis Veinbahs | 2019-02-18 | 2 | -0/+79 |
| | |/ /
|/| | |
|
| * | | | Merge pull request #55138 from oxij/tree/random-fixes•••random cleanups and a tiny fix | Michael Raskin | 2019-02-13 | 1 | -3/+3 |
| |\ \ \ |
|
| | * | | | doc: fix some indent | Jan Malakhovski | 2019-02-03 | 1 | -3/+3 |
| * | | | | Merge pull request #55040 from tazjin/docs/fix-manual-makefile•••Fix manual Makefile by including function doc generation | Samuel Dionne-Riel | 2019-02-10 | 1 | -4/+10 |
| |\ \ \ \ |
|
| | * | | | | doc: Include function doc generation in Makefile•••Since #53055 was merged the Makefile for the manual could not be run
correctly as the generated function documentation was included, but
not actually generated.
This adds the necessary generation step by first building the XML file
containing function locations and preserving its store path in a
variable, which is then used both for linking of the locations file
and as a build input for the function docs generator.
This fixes #55014
| Vincent Ambo | 2019-02-01 | 1 | -4/+10 |
| | |/ / / |
|
| * | | | | Merge branch 'master' into staging-next•••Comments on conflicts:
- llvm: d6f401e1 vs. 469ecc70 - docs for 6 and 7 say the default is
to build all targets, so we should be fine
- some pypi hashes: they were equivalent, just base16 vs. base32
| Vladimír Čunát | 2019-02-01 | 6 | -12/+503 |
| |\| | | |
|
| | * | | | Fix typos in docker tools docs | Alexandre Esteves | 2019-01-30 | 1 | -7/+7 |
| | * | | | nixpkgs/manual: add one more fix for a missed review | Matthew Bauer | 2019-01-27 | 1 | -3/+4 |
| | * | | | nixpkgs/manual: address review comments•••Mostly taken from requested changes exactly as recommended.
| Matthew Bauer | 2019-01-27 | 3 | -41/+90 |
| | * | | | nixpkgs/manual: add trivial builders section•••Fixes #25507.
| Matthew Bauer | 2019-01-26 | 2 | -0/+85 |
| | * | | | nixpkgs/manual: document default setup hooks•••Fixes #34857.
| Matthew Bauer | 2019-01-26 | 1 | -4/+131 |
| | * | | | nixpkgs/manual: document fetcher functions•••Fixes #32439.
| Matthew Bauer | 2019-01-26 | 2 | -0/+199 |
| | |/ / |
|
| | * | | Merge pull request #53501 from LnL7/manual-makeflagsarray•••doc: don't overwrite makeFlagsArray in the example | Danylo Hlynskyi | 2019-01-23 | 1 | -1/+3 |
| | |\ \ |
|
| | | * | | doc: don't overwrite makeFlagsArray in the example•••Arrays like these should be appended to instead of overwritten in almost
every case to avoid loosing the existing flags.
| Daiderd Jordan | 2019-01-06 | 1 | -1/+3 |
| | * | | | Merge pull request #53934 from Mic92/prefer-fetch-remote•••prefer-fetch-remote: an overlay to fetch on remote builders | Jörg Thalheim | 2019-01-21 | 2 | -0/+28 |
| | |\ \ \ |
|
| | | * | | | prefer-fetch-remote: an overlay to fetch on remote builders•••This is useful when running tools like NixOps or nix-review
on workstations where the upload to the builder is significantly
slower then downloading the source on the builder itself.
| Jörg Thalheim | 2019-01-18 | 2 | -0/+28 |
| * | | | | | Merge staging-next into staging | Frederik Rietdijk | 2019-01-19 | 3 | -8/+64 |
| |\| | | | |
|