about summary refs log tree commit diff
path: root/doc
AgeCommit message (Collapse)AuthorFilesLines
2016-09-28nixpkgs doc: add installCheck phaseEric Sagnes1-0/+35
2016-09-22Merge pull request #18798 from siddharthist/doc/node-readmeLuca Bruno2-0/+5
manual: add node.js to languages & frameworks
2016-09-20manual: add node to languages & frameworksLangston Barrett2-0/+5
fixes #18609
2016-09-16buildGoPackage: deps.json -> deps.nix in NIXONKamil Chmielewski1-15/+26
https://github.com/NixOS/nixpkgs/pull/17254#issuecomment-245295541 * update docs to describe `deps.nix` * include goDeps in nix-shell GOPATH * NixOS 16.09 rel notes about replacing goPackages
2016-09-05doc/language-frameworks/haskell.md: typo in code example. (#18313)Mathieu Boespflug1-1/+1
2016-09-03perl docs: update generated expressionRobert Helgesson1-6/+6
This provides an up-to-date illustration of how `nix-generate-from-cpan` generates packages.
2016-09-03Merge commit 'adaee73' from staging into masterTuomas Tynkkynen1-1/+1
This one was already merged into release-16.09, so let's not have the stable branch is ahead of master and confuse things. In addition to that, currently we have an odd situation that master has less things actually finished building than in staging. Conflicts: pkgs/data/documentation/man-pages/default.nix
2016-09-01pythonPackages: use mkPythonDerivationFrederik Rietdijk1-0/+1
2016-09-01Python: separate buildPythonPackage into two functionsFrederik Rietdijk1-1/+1
1. mkDerivation which is used when the source is without setup.py and not a wheel 2. buildPythonPackage which is used as before and calls mkDerivation
2016-09-01Python: move python-modules/generic to interpreter folderFrederik Rietdijk1-1/+1
2016-09-01Merge staging into masterTuomas Tynkkynen1-3/+3
Brings in: - changed output order for multiple outputs: https://github.com/NixOS/nixpkgs/pull/14766 - audit disabled by default https://github.com/NixOS/nixpkgs/pull/17916 Conflicts: pkgs/development/libraries/openldap/default.nix
2016-09-01docdev -> devdocEelco Dolstra1-1/+1
It's "developer documentation", not "documentation developer" after all.
2016-08-31Fix #4210: Remove builderDefsDomen Kožar1-14/+0
This was one of the ways to build packages, we are trying hard to minimize different ways so it's easier for newcomers to learn only one way. This also: - removes texLive (old), fixes #14807 - removed upstream-updater, if that code is still used it should be in separate repo - changes a few packages like gitit/mit-scheme to use new texlive
2016-08-31Merge pull request #9607 from nckx/update-docDomen Kožar1-6/+6
doc: specify that *Flags are string lists
2016-08-30Doc: improve python bdist_wheel fixFrederik Rietdijk1-4/+8
2016-08-30Doc: fix python override examplesFrederik Rietdijk1-5/+19
2016-08-30doc: Document changes to multiple-output conventionsTuomas Tynkkynen1-3/+3
2016-08-23Merge branch 'master' into stagingobadz2-3/+3
2016-08-23haskell docs: Fix output reference in exampleTuomas Tynkkynen1-1/+1
2016-08-23python manual: Fix 'fftw*' output references in exampleTuomas Tynkkynen1-2/+2
2016-08-22Merge branch 'hardened-stdenv' into stagingobadz2-1/+204
Closes #12895 Amazing work by @globin & @fpletz getting hardened compiler flags by enabled default on the whole package set
2016-08-20wrapPythonProgram: use site.addsitedir instead of PYTHONPATHNikolay Amiantov1-2/+5
2016-08-19Merge pull request #17549 from ericsagnes/nixpkgs-doc/patchesPeter Simons1-0/+18
nixpkgs-doc: add patches to coding conventions
2016-08-16Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster1-2/+2
2016-08-16Doc: fix python examplesFrederik Rietdijk1-2/+2
2016-08-13Merge branch 'master' into hardened-stdenvFranz Pletz2-21/+17
2016-08-13Doc: how to create a Python wheelFrederik Rietdijk1-0/+17
2016-08-13hardening docs: fix typoRobin Gloster1-1/+1
2016-08-12doc: complete the hardening documentationFranz Pletz1-9/+169
2016-08-11buildGoPackage: remove Go deps file `libs.json`Kamil Chmielewski1-21/+0
After #16017 there were a lot of comments saying that `nix` would be better than `JSON` for Go packages dependency sets. As said in https://github.com/NixOS/nixpkgs/pull/16017#issuecomment-229624046 > Because of the content-addressable store, if two programs have the > same dependency it will already result in the same derivation in > the > store. Git also has compression in the pack files so it won't make > much difference to duplicate the dependencies on disk. And finally > most users will just use the binary builds so it won't make any > differences to them. This PR removes `libs.json` file and puts all package dependencies in theirs `deps.json`.
2016-08-06nixpkgs-doc: add patches to coding conventionsEric Sagnes1-0/+18
2016-07-31Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster1-7/+4
2016-07-29DOC: unstable packages names should append -unstable, not -git or -svnFrederik Rietdijk1-7/+4
2016-07-25Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster1-0/+19
2016-07-23nixpkgs manual: document the paxctl setup-hookJoachim Fasting1-0/+19
2016-07-21Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster1-10/+20
2016-07-20add epub for nixpkgs manual ( #15575 ) (#17053)Christine Koppelt1-10/+20
* add epub for nixpkgs manual ( #15575 ) * change epub filename (interpreted as title & author by some epub readers)
2016-07-15Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster6-121/+251
2016-07-12Improve overrideDerivation docs. (#16867)Alex Berg1-19/+33
* Improve overrideDerivation docs. Explain how antiquotation in a package's attribute behaves when overriding the package. * Edit antiquotation note. Fix closing-element.
2016-07-01Doc: how to install a Python environmentFrederik Rietdijk1-0/+50
See https://github.com/NixOS/nixpkgs/issues/10597.
2016-06-25Revert "stdenv: introduce baseHash() to replace stripHash()"zimbatm1-17/+13
Introduced by mistake This reverts commit e71a5cb87841f0af4a2279517b77a9a07ba394c0.
2016-06-25stdenv: introduce baseHash() to replace stripHash()zimbatm1-13/+17
stripHash uses a global variable to communicate it's computation results, but it's not necessary. You can just pipe to stdout in a subshell. A function mostly behaves like just another command. baseHash() also introduces a suffix-stripping capability since it's something the users of the function tend to use.
2016-06-23Merge pull request #16398 from tboettch/masterzimbatm1-4/+18
doc: Update stripHash documentation
2016-06-22Replace `./../*` with `../*` in Nix expressions (#16414)John Ericson1-2/+2
2016-06-21doc: Update stripHash documentationTom Boettcher1-4/+18
The documentation now matches the behavior of the function.
2016-06-18haskell docs: now that hydra pushes directly to S3, it cant function as a ↵michael bishop1-1/+1
binary cache
2016-06-16buildPythonPackage: be able to disable package conflict checkDomen Kožar1-0/+1
2016-06-13doc(haskell): Remove pesky tabs in code snippets.Mathieu Boespflug1-3/+3
2016-06-13doc: Document how to set custom GHC version in haskell.lib.buildStackProject.Mathieu Boespflug1-0/+17
2016-06-11Merge pull request #16146 from kamilchm/rework-goRushmore Mushambi1-0/+19
all-packages references to Go packages includes all outputs