Skip to content

Commit

Permalink
Fix FAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
Sohalt authored and jlesquembre committed Nov 30, 2023
1 parent 51caf63 commit 0ae59a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ cljpkgs.mkCljBin {
# ...
nativeBuildInputs = [ pkgs.makeWrapper ];
postInstall = ''
wrapProgram $cljBinary \
wrapProgram $binaryPath \
--set PATH ${pkgs.lib.makeBinPath [ pkgs.cowsay ]}
'';
}
```

Notice that the `$cljBinary` is a proper Bash variable. It is created by
Notice that the `$binaryPath` is a proper Bash variable. It is created by
`mkCljBin` during the install phase.

or if you want to define the dependencies in a docker image:
Expand Down

0 comments on commit 0ae59a9

Please sign in to comment.