Guest User

Untitled

a guest
Apr 28th, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. {
  2. allowUnfree = true;
  3.  
  4.  
  5. packageOverrides = super: let self = super.pkgs; in
  6. {
  7. myHaskellEnv = self.pkgs.haskell.packages.ghc802.ghcWithHoogle
  8. (haskellPackages: with haskellPackages; [
  9. happy
  10. hasktags
  11. stylish-haskell
  12. present
  13. hlint
  14. structured-haskell-mode
  15. hindent
  16. ghc
  17. ghc-mod
  18. ]);
  19.  
  20. rustNightlyNixRepo = pkgs.fetchFromGitHub {
  21. owner = "solson";
  22. repo = "rust-nightly-nix";
  23. rev = "9e09d579431940367c1f6de9463944eef66de1d4";
  24. sha256 = "03zkjnzd13142yla52aqmgbbnmws7q8kn1l5nqaly22j31f125xy";
  25. };
  26. rustPackages = self.pkgs.callPackage rustNightlyNixRepo { };
  27. };
  28. }
Advertisement
Add Comment
Please, Sign In to add comment