about summary refs log tree commit diff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2019-04-27Merge pull request #56420 from p-alik/masterLassulus1-3/+3
add missed internal links into haskell.section.md
2019-04-25doc: fix syntax error in python documentationLinus Heckemann1-1/+1
2019-04-23python-docs: typocdyson371-1/+1
2019-04-22treewide: Change URLs to HTTPSDaniel Schaefer3-3/+3
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them if there's actual content. Inspired by https://github.com/NixOS/nixpkgs/issues/60004
2019-04-13Merge pull request #58504 from symphorien/static-prootDmitry Kalinkin1-3/+3
Static proot, wafHook cross compilation
2019-04-09doc: note how to quickly get started with elmDomen Kožar1-0/+4
2019-04-08Merge pull request #58160 from worldofpeace/python-doc/cleanupworldofpeace1-80/+76
doc/python: cleanup examples, references
2019-04-06Merge pull request #58360 from xtruder/pkgs/dockerTools/nix-prefetch-dockerJaka Hudoklin1-12/+29
dockerTools: add nix-prefetch-docker script
2019-04-06dockerTools: add nix-prefetch-docker scriptJaka Hudoklin1-12/+29
2019-03-30Merge pull request #36886 from veprbl/symlinkJoin_docDmitry Kalinkin1-0/+7
doc: mention symlinkJoin in multiple-outputs section
2019-03-30manual: mention symlinkJoin in multiple-outputs sectionDmitry Kalinkin1-0/+7
2019-03-30Merge pull request #56786 from Ma27/dlib-avx-fixesMaximilian Bosch1-0/+27
dlib: improve AVX configuration
2019-03-28wafHook: let derivations use an existing waf in a non-standard locationSymphorien Gibol1-3/+3
this is necessary for talloc
2019-03-26dockerTools: add finalImageName parameter for pullImageJaka Hudoklin1-7/+16
2019-03-25manual: Fix typos John Ericson2-18/+18
Thanks @matthewbauer! Co-Authored-By: Ericson2314 <git@JohnEricson.me>
2019-03-24manual: Document `pkgsFooBar` and moreJohn Ericson2-87/+299
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.
2019-03-24manual: Auto reformatJohn Ericson3-26/+25
2019-03-24manual: Make sure building doesn't need recursive nixJohn Ericson1-6/+5
$(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.
2019-03-24fix Including a derivation using callPackageworldofpeace1-6/+5
The example didn't use pkgs.
2019-03-24fixup! doc/python: cleanup examples, referencesworldofpeace1-4/+4
2019-03-22doc/python: cleanup examples, referencesworldofpeace1-70/+67
2019-03-22doc/python: remove unnecessary let statementFelix Biggs1-15/+14
2019-03-22Merge pull request #57076 from Mic92/nix-reviewJörg Thalheim2-16/+16
doc/reviewing-contributions: nix-review instead of nox-review
2019-03-20doc/reviewing-contributions: nix-review instead of nox-reviewJörg Thalheim2-16/+16
It is faster, handles more edge cases and allows to test/review the built packages interactively.
2019-03-15Add word `debug(ging)` to breakpointHook description for discoverabilitydeliciouslytyped1-1/+2
2019-03-15haskell docs: add missed internal links into haskell.section.mdAlexei Pastuchov1-3/+3
2019-03-14buildGoModule: function for packaging Go modulesWael M. Nasreddine1-99/+180
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.
2019-03-08doc: format the documentation (#57102)Wael Nasreddine17-764/+764
2019-03-03dlib: add flag to disable AVX supportMaximilian Bosch1-0/+27
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
2019-03-01Merge staging-next into masterFrederik Rietdijk1-4/+18
2019-02-26Merge pull request #56408 from Mic92/runtime-shellJohn Ericson1-2/+2
treewide: use runtimeShell instead of stdenv.shell whenever possible
2019-02-26doc/cross-compilation: fix typoLorenzo1-1/+1
Add missing verb.
2019-02-26treewide: use runtimeShell instead of stdenv.shell whenever possibleJörg Thalheim1-2/+2
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.
2019-02-24Merge master into staging-nextFrederik Rietdijk2-0/+122
2019-02-23Merge pull request #54693 from tilpner/appimage-toolsGraham Christensen2-0/+122
appimageTools: init
2019-02-23appimageTools: inittilpner2-0/+122
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.
2019-02-23buildPythonPackage: always export `LANG=C.UTF-8`Frederik Rietdijk1-1/+0
2019-02-23buildPythonPackage: initial support for PEP 517Frederik Rietdijk1-1/+1
2019-02-21Merge staging into python-unstableFrederik Rietdijk2-0/+79
2019-02-18nix-gitignore: init at v3.0.0 (#46112)Raitis Veinbahs2-0/+79
closes siers/nix-gitignore#6
2019-02-17buildPython*: enable strictDepsFrederik Rietdijk1-2/+17
2019-02-13Merge pull request #55138 from oxij/tree/random-fixesMichael Raskin1-3/+3
random cleanups and a tiny fix
2019-02-10Merge pull request #55040 from tazjin/docs/fix-manual-makefileSamuel Dionne-Riel1-4/+10
Fix manual Makefile by including function doc generation
2019-02-03doc: fix some indentJan Malakhovski1-3/+3
2019-02-01doc: Include function doc generation in MakefileVincent Ambo1-4/+10
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
2019-02-01Merge branch 'master' into staging-nextVladimír Čunát6-12/+503
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
2019-01-30Fix typos in docker tools docsAlexandre Esteves1-7/+7
2019-01-27nixpkgs/manual: add one more fix for a missed reviewMatthew Bauer1-3/+4
2019-01-27nixpkgs/manual: address review commentsMatthew Bauer3-41/+90
Mostly taken from requested changes exactly as recommended.
2019-01-26nixpkgs/manual: add trivial builders sectionMatthew Bauer2-0/+85
Fixes #25507.