Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. with import <nixpkgs> {};
  2. stdenv.mkDerivation {
  3. name = "lambdabot";
  4. buildNativeInputs = [ pcre ];
  5. buildInputs = [
  6. gmp
  7. zlib
  8.  
  9. ncurses
  10. ];
  11. src = null;
  12. shellHook = ''
  13. export LD_LIBRARY_PATH=${pcre}/lib:${gmp}/lib:${zlib}/lib:${ncurses}/lib:$LD_LIBRARY_PATH
  14. export PATH=$PATH:$HOME/.local/bin
  15. '';
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement