summary refs log tree commit diff
path: root/doc
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2017-12-20 23:42:07 +0000
committerGitHub <noreply@github.com>2017-12-20 23:42:07 +0000
commitadc5c9b83df203c9e425efe00f9a788ed3554c2d (patch)
tree04ce943811c6bfffa250069666d38cff2301d0cf /doc
parent02d361cea9d20fe4746092a9ced207b1d0dcd9e9 (diff)
downloadnixlib-adc5c9b83df203c9e425efe00f9a788ed3554c2d.tar
nixlib-adc5c9b83df203c9e425efe00f9a788ed3554c2d.tar.gz
nixlib-adc5c9b83df203c9e425efe00f9a788ed3554c2d.tar.bz2
nixlib-adc5c9b83df203c9e425efe00f9a788ed3554c2d.tar.lz
nixlib-adc5c9b83df203c9e425efe00f9a788ed3554c2d.tar.xz
nixlib-adc5c9b83df203c9e425efe00f9a788ed3554c2d.tar.zst
nixlib-adc5c9b83df203c9e425efe00f9a788ed3554c2d.zip
mkShell: add builder (#30975)
Diffstat (limited to 'doc')
-rw-r--r--doc/default.nix4
-rw-r--r--doc/shell.md20
2 files changed, 24 insertions, 0 deletions
diff --git a/doc/default.nix b/doc/default.nix
index e3d7ef2ef9d6..60c613878c72 100644
--- a/doc/default.nix
+++ b/doc/default.nix
@@ -50,6 +50,10 @@ pkgs.stdenv.mkDerivation {
       useChapters = true;
     }
   + toDocbook {
+      inputFile = ./shell.md;
+      outputFile = "shell.xml";
+    }
+  + toDocbook {
       inputFile = ./languages-frameworks/python.md;
       outputFile = "./languages-frameworks/python.xml";
     }
diff --git a/doc/shell.md b/doc/shell.md
new file mode 100644
index 000000000000..a4f999695cbc
--- /dev/null
+++ b/doc/shell.md
@@ -0,0 +1,20 @@
+---
+title: stdenv.mkShell
+author: zimbatm
+date: 2017-10-30
+---
+
+stdenv.mkShell is a special kind of derivation that is only useful when using
+it combined with nix-shell. It will in fact fail to instantiate when invoked
+with nix-build.
+
+## Usage
+
+```nix
+{ pkgs ? import <nixpkgs> {} }:
+pkgs.mkShell {
+  # this will make all the build inputs from hello and gnutar available to the shell environment
+  inputsFrom = with pkgs; [ hello gnutar ];
+  buildInputs = [ pkgs.gnumake ];
+}
+```