Advertisement
Guest User

Untitled

a guest
May 16th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. { haskellPackages ? (import <nixpkgs> {}).haskellPackages }:
  2. with haskellPackages;
  3. cabal.mkDerivation (self: {
  4. pname = "Repl";
  5. version = "0.1.0.0";
  6. src = "./src";
  7. isLibrary = true;
  8. isExecutable = true;
  9. libraryHaskellDepends = [
  10. comonad containers free hjson hjson-query HTTP lens mtl parsec
  11. primes QuickCheck random random-shuffle regex-compat split strict
  12. word8
  13. ];
  14. executableHaskellDepends = [ containers hjson HTTP parsec ];
  15. testHaskellDepends = [ ];
  16. homepage = "https://github.com/githubuser/Repl#readme";
  17. license = "stdenv.lib.licenses.bsd3";
  18. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement