diff options
author | Asad Saeeduddin <masaeedu@gmail.com> | 2019-12-17T20·35-0500 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2019-12-18T01·00+0000 |
commit | 56a1f03a109da9e33d5c2018c5fe3e3080cd93e4 (patch) | |
tree | 4ff2977de44f5ab42f0fd765f3d2b730ea051211 /nix/nix-1p | |
parent | 5f4664ad5aea4596e1693b822133f58b17b248a8 (diff) |
Fix typo in code snippet
Diffstat (limited to 'nix/nix-1p')
-rw-r--r-- | nix/nix-1p/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/nix-1p/README.md b/nix/nix-1p/README.md index 9491684d6d46..7f6770a871eb 100644 --- a/nix/nix-1p/README.md +++ b/nix/nix-1p/README.md @@ -474,7 +474,7 @@ package set (as well as certain subsets, such as `haskellPackages`). ```nix { pkgs ? import <nixpkgs> {} }: -let my-funky-program = callPackage ./my-funky-program.nix {}; +let my-funky-program = pkgs.callPackage ./my-funky-program.nix {}; in # ... something happens with my-funky-program ``` |