This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Fail to create a new connection for the connection pool The error returned was: | |
| Failed to connect to {ip_address}:28015 in less than 20s. | |
| ReqlDriverError: Failed to connect to {ip_address}:28015 in less than 20s. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Error: Uncaught Error: Invariant Violation: You cannot nest path "/:username/favorites" inside "/:username"; the parent requires URL parameters | |
| <Route name='user' path='/:username' handler={User}> | |
| <DefaultRoute name='userDesigns' handler={UserDesigns}/> | |
| <Route name='userFavorites' path='/:username/favorites' handler={UserFavorites}/> | |
| </Route> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Only difference I was trying is | |
| instance Enter (m a) (m :~> n) (n a) where | |
| enter (Nat f) = f | |
| enter (Raw a) = a |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { mkDerivation, aeson, base, scotty, stdenv }: | |
| mkDerivation { | |
| pname = "firstMeeting"; | |
| version = "0.1.0.0"; | |
| src = ./.; | |
| isLibrary = false; | |
| isExecutable = true; | |
| executableHaskellDepends = [ aeson base scotty ]; | |
| license = stdenv.lib.licenses.unfree; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| In-place registering ansi-terminal-0.6.2.1... | |
| running tests | |
| Package has no test suites. | |
| haddockPhase | |
| Running Haddock for ansi-terminal-0.6.2.1... | |
| Running hscolour for ansi-terminal-0.6.2.1... | |
| Preprocessing library ansi-terminal-0.6.2.1... | |
| Preprocessing library ansi-terminal-0.6.2.1... | |
| Warning: The documentation for the following packages are not installed. No | |
| links will be generated to these packages: rts-1.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { compiler ? "ghc7102" }: | |
| let | |
| pkgs = import <nixpkgs> {}; | |
| stdenv = pkgs.stdenv; | |
| cabalInstall = if compiler == "ghc763" then haskellPackages.cabal-install_1_18_1_0 else haskellPackages.cabal-install; | |
| haskell = pkgs.haskell // { | |
| packages = pkgs.haskell.packages // { | |
| ghc763 = pkgs.haskell.packages.ghc763.override { | |
| overrides = self: pkgs: { | |
| mkDerivation = args: pkgs.mkDerivation (args // { doHaddock = false; }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let | |
| pkgs = import <nixpkgs> {}; | |
| stdenv = pkgs.stdenv; | |
| haskellPackages = pkgs.haskell-ng.packages.ghc7102.override { | |
| overrides = self: super: { | |
| servant = self.callPackage ~/Work/opensrc/servant/servant.nix {}; | |
| }; | |
| }; | |
| inputs = [ | |
| haskellPackages.ghc-mod |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /servant | |
| /servant | |
| default.nix | |
| shell.nix | |
| /servant-client | |
| default.nix | |
| shell.nix | |
| /servant-server | |
| default.nix | |
| shell.nix |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ nix-instantiate haskell-rethinkdb.nix --indirect --add-root $PWD/shell.drv --show-trace |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {-# LANGUAGE CPP #-} | |
| {-# LANGUAGE DeriveDataTypeable #-} | |
| {-# LANGUAGE FlexibleInstances #-} | |
| {-# LANGUAGE FunctionalDependencies #-} | |
| {-# LANGUAGE MultiParamTypeClasses #-} | |
| {-# LANGUAGE RankNTypes #-} | |
| {-# LANGUAGE ScopedTypeVariables #-} | |
| {-# LANGUAGE TypeFamilies #-} | |
| {-# LANGUAGE TypeOperators #-} | |
| {-# LANGUAGE UndecidableInstances #-} |