{ mkDerivation, ansi-terminal, base, cmdargs, containers, directory , extra, filepath, fsnotify, process, stdenv, tasty, tasty-hunit , terminal-size, time, unix }: mkDerivation { pname = "ghcid"; version = "0.6.8"; sha256 = "deadbeef"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base cmdargs directory extra filepath process time unix ]; executableHaskellDepends = [ ansi-terminal base cmdargs containers directory extra filepath fsnotify process terminal-size time unix ]; testHaskellDepends = [ ansi-terminal base cmdargs containers directory extra filepath fsnotify process tasty tasty-hunit terminal-size time unix ]; homepage = "https://github.com/ndmitchell/ghcid#readme"; description = "GHCi based bare bones IDE"; license = stdenv.lib.licenses.bsd3; }