summary refs log tree commit diff
path: root/doc/languages-frameworks
Commit message (Collapse)AuthorAge
* Merge branch 'master' into stagingVladimír Čunát2017-02-03
|\
| * docs: fix link for pythonDomen Kožar2017-02-01
| |
| * ~/.nixpkgs -> ~/.config/nixpkgsEelco Dolstra2017-02-01
| | | | | | | | | | | | The former is still respected as a fallback for config.nix for backwards compatibility (but not for overlays because they're a new feature).
* | ghc: support building with integer-simple and provide package sets for itBas van Dijk2017-02-02
|/ | | | | | | | | | | | | | | If the flag enableIntegerSimple is true GHC will be build with the GPL-free but slower integer-simple library instead of the faster but GPLed integer-gmp library. The attribute `pkgs.haskell.compiler.integer-simple."${ghcVersion}"` provides a GHC compiler build with `integer-simple`. Similarly, the attribute `pkgs.haskell.packages.integer-simple."${ghcVersion}"` provides a package set supporting `integer-simple`. Closes https://github.com/NixOS/nixpkgs/pull/22121. Closes https://github.com/NixOS/nixpkgs/issues/5493.
* Merge #16501: add a guide about vim pluginsVladimír Čunát2017-01-30
|\
| * doc vim: nitpicksVladimír Čunát2017-01-30
| |
| * Add nixpkgs documentation about how to create a derivation with Vim + pluginsMarc Weber2016-06-25
| |
* | Merge pull request #21962 from Mic92/gemdirJörg Thalheim2017-01-19
|\ \ | | | | | | bundleEnv: Used gemdir for most applications now
| * | docs: gemdir is now preferred attribute for bundlerEnvJörg Thalheim2017-01-18
| | |
* | | Merge pull request #21837 from ↵Jörg Thalheim2017-01-18
|\ \ \ | |/ / |/| | | | | | | | Azulinho/python-docs_add_virtualenv_and_nixshell_example python docs: add an example for a virtualenv and pip through nix-shell
| * | python docs: update block according to code reviewAzul2017-01-12
| | |
| * | python docs: add an example for a virtualenv and pip through nix-shellAzul2017-01-12
| | |
* | | Add overlays mechanism to Nixpkgs.Nicolas B. Pierron2017-01-16
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch add a new argument to Nixpkgs default expression named "overlays". By default, the value of the argument is either taken from the environment variable `NIXPKGS_OVERLAYS`, or from the directory `~/.nixpkgs/overlays/`. If the environment variable does not name a valid directory then this mechanism would fallback on the home directory. If the home directory does not exists it will fallback on an empty list of overlays. The overlays directory should contain the list of extra Nixpkgs stages which would be used to extend the content of Nixpkgs, with additional set of packages. The overlays, i-e directory, files, symbolic links are used in alphabetical order. The simplest overlay which extends Nixpkgs with nothing looks like: ```nix self: super: { } ``` More refined overlays can use `super` as the basis for building new packages, and `self` as a way to query the final result of the fix-point. An example of overlay which extends Nixpkgs with a small set of packages can be found at: https://github.com/nbp/nixpkgs-mozilla/blob/nixpkgs-overlay/moz-overlay.nix To use this file, checkout the repository and add a symbolic link to the `moz-overlay.nix` file in `~/.nixpkgs/overlays` directory.
* | Docs Python: fix examples and linksFrederik Rietdijk2016-12-21
| |
* | Fix typo in beam.xmlMatthew Pickering2016-12-19
| |
* | buildPythonPackage: refactorFrederik Rietdijk2016-12-05
| |
* | DOCS: update Python docs to reflect fixed-point combinatorFrederik Rietdijk2016-12-05
| |
* | Docs: fix Python docsFrederik Rietdijk2016-12-04
| |
* | Merge pull request #20257 from expipiplus1/haskell-doc-typoPeter Simons2016-11-09
|\ \ | | | | | | fix documentation typo in doc/languages-frameworks/haskell.md
| * | fix documentation typo in doc/languages-frameworks/haskell.mdJoe Hermaszewski2016-11-08
| | |
* | | Docs: improve Python expressionsFrederik Rietdijk2016-11-08
|/ / | | | | | | as it contained several mistakes and was just messy.
* | Merge remote-tracking branch 'upstream/master' into HEADFrederik Rietdijk2016-10-22
|\ \
| * | texlive manual: adds import of nixpkgs in nix-replRichard Zetterberg2016-10-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | I wanted to list the different texlive collections using the nix-repl, as per the [manual](https://nixos.org/nixpkgs/manual/#idm140737316065984). It didn't work, since the nixpkgs were not loaded. Doing `:l <nixpkgs>` first resolved the problem. This change adds the nixpkgs loading step to the manual so that the next inexperienced person don't have to figure out why it didn't work. I tested this on NixOS unstable (16.09pre90254.6b20d5b) with nix-repl 1.11.3.
* | | Python: update docs with change in default interpreter versionFrederik Rietdijk2016-10-18
| | |
* | | Python: remove pythonSmallFrederik Rietdijk2016-10-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In #19309 a separate output for tkinter was added. Several dependencies of Python depend indirectly on Python. We have the following two paths: ``` ‘python-2.7.12’ - ‘tk-8.6.6’ - ‘libXft-2.3.2’ - ‘libXrender-0.9.10’ - ‘libX11-1.6.4’ - ‘libxcb-1.12’ - ‘libxslt-1.1.29’- ‘libxml2-2.9.4’ - ‘python-2.7.12’ ‘python-2.7.12’ - ‘tk-8.6.6’ - ‘libXft-2.3.2’ - ‘fontconfig-2.12.1’ - ‘dejavu-fonts-2.37’ - ‘fontforge-20160404’ - ‘python-2.7.12’ ``` Because only `tkinter` needs this, I added ``` pythonSmall = python.override {x11Support = false;}; ``` to break the infinite recursion. We also still have the output `tkinter`. However, we might as well build without x11Support by default. Then we build with x11Support as well so we get the tkinter module and put that in a separate package.
* | | pythonPackages.tkinter: use this instead of the output python.tkinterFrederik Rietdijk2016-10-13
| | |
* | | Python: update docs separate output tkinterFrederik Rietdijk2016-10-10
|/ /
* | Merge pull request #18798 from siddharthist/doc/node-readmeLuca Bruno2016-09-22
|\ \ | | | | | | manual: add node.js to languages & frameworks
| * | manual: add node to languages & frameworksLangston Barrett2016-09-20
| | | | | | | | | | | | fixes #18609
* | | buildGoPackage: deps.json -> deps.nix in NIXONKamil Chmielewski2016-09-16
|/ / | | | | | | | | | | | | | | 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
* | doc/language-frameworks/haskell.md: typo in code example. (#18313)Mathieu Boespflug2016-09-05
| |
* | perl docs: update generated expressionRobert Helgesson2016-09-03
| | | | | | | | | | This provides an up-to-date illustration of how `nix-generate-from-cpan` generates packages.
* | pythonPackages: use mkPythonDerivationFrederik Rietdijk2016-09-01
| |
* | Python: separate buildPythonPackage into two functionsFrederik Rietdijk2016-09-01
| | | | | | | | | | | | 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
* | Python: move python-modules/generic to interpreter folderFrederik Rietdijk2016-09-01
| |
* | Doc: improve python bdist_wheel fixFrederik Rietdijk2016-08-30
| |
* | Doc: fix python override examplesFrederik Rietdijk2016-08-30
| |
* | Merge branch 'master' into stagingobadz2016-08-23
|\ \
| * | haskell docs: Fix output reference in exampleTuomas Tynkkynen2016-08-23
| | |
| * | python manual: Fix 'fftw*' output references in exampleTuomas Tynkkynen2016-08-23
| | |
* | | Merge branch 'hardened-stdenv' into stagingobadz2016-08-22
|\ \ \ | |/ / |/| | | | | | | | | | | | | | Closes #12895 Amazing work by @globin & @fpletz getting hardened compiler flags by enabled default on the whole package set
| * | Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster2016-08-16
| |\ \
| * \ \ Merge branch 'master' into hardened-stdenvFranz Pletz2016-08-13
| |\ \ \
| * \ \ \ Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster2016-07-15
| |\ \ \ \
| * \ \ \ \ Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster2016-05-30
| |\ \ \ \ \
| * \ \ \ \ \ Merge remote-tracking branch 'origin/master' into hardened-stdenvFranz Pletz2016-05-18
| |\ \ \ \ \ \
| * \ \ \ \ \ \ Merge remote-tracking branch 'upstream/master' into hardened-stdenvRobin Gloster2016-05-02
| |\ \ \ \ \ \ \
| * | | | | | | | fix grammar errorsRobin Gloster2016-04-06
| | | | | | | | |
* | | | | | | | | wrapPythonProgram: use site.addsitedir instead of PYTHONPATHNikolay Amiantov2016-08-20
| |_|_|_|_|_|/ / |/| | | | | | |
* | | | | | | | Doc: fix python examplesFrederik Rietdijk2016-08-16
| |_|_|_|_|/ / |/| | | | | |